diff --git a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/components/EditLayout.tsx b/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/components/EditLayout.tsx
deleted file mode 100644
index e64e6982..00000000
--- a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/components/EditLayout.tsx
+++ /dev/null
@@ -1,284 +0,0 @@
-'use client';
-
-import React, { useState } from 'react';
-import Link from 'next/link';
-import { useParams, usePathname, useRouter } from 'next/navigation';
-import { graphql } from '@/gql';
-import { UpdateDatasetInput } from '@/gql/generated/graphql';
-import { useMutation, useQuery } from '@tanstack/react-query';
-import {
- Button,
- Divider,
- Form,
- FormLayout,
- Icon,
- Input,
- Spinner,
- Tab,
- TabList,
- Tabs,
- Text,
- toast,
-} from 'opub-ui';
-
-import { GraphQL } from '@/lib/api';
-import { Icons } from '@/components/icons';
-
-const datasetQueryDoc: any = graphql(`
- query datasetTitleQuery($filters: DatasetFilter) {
- datasets(filters: $filters) {
- id
- title
- created
- }
- }
-`);
-
-const updateDatasetTitleMutationDoc: any = graphql(`
- mutation SaveTitle($updateDatasetInput: UpdateDatasetInput!) {
- updateDataset(updateDatasetInput: $updateDatasetInput) {
- __typename
- ... on TypeDataset {
- id
- title
- created
- }
- ... on OperationInfo {
- messages {
- kind
- message
- }
- }
- }
- }
-`);
-
-interface LayoutProps {
- children?: React.ReactNode;
- params: { id: string };
-}
-
-const layoutList = ['metadata', 'access', 'resources', 'publish'];
-
-export function EditLayout({ children, params }: LayoutProps) {
- // const { data } = useQuery([`dataset_layout_${params.id}`], () =>
- // GraphQL(datasetQueryDoc, { dataset_id: Number(params.id) })
- // );
-
- const pathName = usePathname();
- const routerParams = useParams();
-
- const [editMode, setEditMode] = useState(false);
-
- const orgParams = useParams<{ organizationId: string }>();
-
- const getDatasetTitleRes: { data: any; isLoading: boolean; refetch: any } =
- useQuery([`dataset_title_${routerParams.id}`], () =>
- GraphQL(datasetQueryDoc, {
- filters: {
- id: routerParams.id,
- },
- })
- );
-
- const updateDatasetTitleMutation = useMutation(
- (data: { updateDatasetInput: UpdateDatasetInput }) =>
- GraphQL(updateDatasetTitleMutationDoc, data),
- {
- onSuccess: (data: any) => {
- // queryClient.invalidateQueries({
- // queryKey: [`create_dataset_${'52'}`],
- // });
-
- setEditMode(false);
-
- getDatasetTitleRes.refetch();
- },
- onError: (err: any) => {
- toast(err.message.split(':')[0]);
- },
- }
- );
-
- const pathItem = layoutList.find(function (v) {
- return pathName.indexOf(v) >= 0;
- });
-
- // if not from the layoutList, return children
- if (!pathItem) {
- return <>{children}>;
- }
-
- return (
-
- {getDatasetTitleRes.isLoading ? (
-
-
-
- ) : (
-
- )}
-
-
- );
-}
-
-const Header = ({ dataset, orgId, saveTitle, editMode, setEditMode }: any) => {
- return (
- <>
-
- {!editMode ? (
-
-
- DATASET NAME : {dataset?.title}
-
-
- }
- onClick={() => setEditMode(true)}
- >
- edit
-
-
- ) : (
-
- )}
-
-
-
- Go back to Drafts{' '}
-
-
-
-
-
- >
- );
-};
-
-const Navigation = ({
- id,
- pathItem,
- organization,
-}: {
- id: string;
- pathItem: string;
- organization: string;
-}) => {
- let links = [
- {
- label: 'Resources',
- url: `/dashboard/organization/${organization}/dataset/${id}/edit/resources`,
- selected: pathItem === 'resources',
- },
- {
- label: 'Access Models',
- url: `/dashboard/organization/${organization}/dataset/${id}/edit/access?list=true`,
- selected: pathItem === 'access',
- },
- {
- label: 'Metadata',
- url: `/dashboard/organization/${organization}/dataset/${id}/edit/metadata`,
- selected: pathItem === 'metadata',
- },
- {
- label: 'Publish',
- url: `/dashboard/organization/${organization}/dataset/${id}/edit/publish`,
- selected: pathItem === 'publish',
- },
- ];
-
- const router = useRouter();
-
- const handleTabClick = (url: string) => {
- router.replace(url);
- };
-
- const initialTabLabel =
- links.find((option) => option.selected)?.label || 'Distributions';
-
- return (
-
-
-
- {links.map((item, index) => (
- handleTabClick(item.url)}
- >
- {item.label}
-
- ))}
-
-
-
- );
-};
diff --git a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/components/EditMetadata.tsx b/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/components/EditMetadata.tsx
deleted file mode 100644
index 02bf6cfd..00000000
--- a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/components/EditMetadata.tsx
+++ /dev/null
@@ -1,362 +0,0 @@
-'use client';
-
-import { useParams, useRouter } from 'next/navigation';
-import { graphql } from '@/gql';
-import {
- TypeCategory,
- TypeDataset,
- TypeDatasetMetadata,
- TypeMetadata,
- TypeTag,
- UpdateMetadataInput,
-} from '@/gql/generated/graphql';
-import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
-import {
- Button,
- Combobox,
- Divider,
- Form,
- FormLayout,
- Input,
- Text,
- toast,
-} from 'opub-ui';
-
-import { GraphQL } from '@/lib/api';
-import { Loading } from '@/components/loading';
-
-const categoriesListQueryDoc: any = graphql(`
- query CategoryList {
- categories {
- id
- name
- }
- }
-`);
-
-const tagsListQueryDoc: any = graphql(`
- query TagsList {
- tags {
- id
- value
- }
- }
-`);
-
-const datasetMetadataQueryDoc: any = graphql(`
- query MetadataValues($filters: DatasetFilter) {
- datasets(filters: $filters) {
- title
- id
- description
- tags {
- id
- value
- }
- categories {
- id
- name
- }
- metadata {
- metadataItem {
- id
- label
- }
- id
- value
- }
- }
- }
-`);
-
-const metadataQueryDoc: any = graphql(`
- query MetaDataList($filters: MetadataFilter) {
- metadata(filters: $filters) {
- id
- label
- dataStandard
- urn
- dataType
- options
- validator
- type
- model
- enabled
- filterable
- }
- }
-`);
-
-const updateMetadataMutationDoc: any = graphql(`
- mutation SaveMetadata($UpdateMetadataInput: UpdateMetadataInput!) {
- addUpdateDatasetMetadata(updateMetadataInput: $UpdateMetadataInput) {
- __typename
- ... on TypeDataset {
- id
- created
- }
- ... on OperationInfo {
- messages {
- kind
- message
- }
- }
- }
- }
-`);
-
-export function EditMetadata({ id }: { id: string }) {
- const router = useRouter();
- const params = useParams();
-
- const queryClient = useQueryClient();
-
- const getCategoriesList: { data: any; isLoading: boolean; error: any } =
- useQuery([`categories_list_query`], () =>
- GraphQL(categoriesListQueryDoc, [])
- );
-
- const getTagsList: { data: any; isLoading: boolean; error: any } = useQuery(
- [`tags_list_query`],
- () => GraphQL(tagsListQueryDoc, [])
- );
-
- const getMetaDataListQuery: {
- data: any;
- isLoading: boolean;
- refetch: any;
- } = useQuery([`metadata_fields_list_${id}`], () =>
- GraphQL(metadataQueryDoc, {
- filters: {
- model: 'DATASET',
- enabled: true,
- },
- })
- );
-
- const getDatasetMetadata: {
- data: any;
- isLoading: boolean;
- refetch: any;
- error: any;
- } = useQuery([`metadata_values_query_${id}`], () =>
- GraphQL(datasetMetadataQueryDoc, { filters: { id: id } })
- );
-
- const updateMetadataMutation = useMutation(
- (data: { UpdateMetadataInput: UpdateMetadataInput }) =>
- GraphQL(updateMetadataMutationDoc, data),
- {
- onSuccess: (data: any) => {
- toast('Details updated successfully!');
-
- queryClient.invalidateQueries({
- queryKey: [
- `metadata_values_query_${id}`,
- `metadata_fields_list_${id}`,
- ],
- });
-
- getMetaDataListQuery.refetch();
- getDatasetMetadata.refetch();
-
- router.push(
- `/dashboard/organization/${params.organizationId}/dataset/${id}/edit/publish`
- );
- },
- onError: (err: any) => {
- toast('Error: ' + err.message.split(':')[0]);
- },
- }
- );
-
- const defaultValuesPrepFn = (dataset: TypeDataset) => {
- // Function to set default values for the form
-
- let defaultVal: {
- [key: string]: any;
- } = {};
-
- dataset.metadata?.map((field) => {
- defaultVal[field.metadataItem.id] = field.value;
- });
-
- defaultVal['description'] = dataset.description || '';
-
- defaultVal['categories'] =
- dataset.categories?.map((category: TypeCategory) => {
- return {
- label: category.name,
- value: category.id,
- };
- }) || [];
-
- defaultVal['tags'] =
- dataset.tags?.map((tag: TypeTag) => {
- return {
- label: tag.value,
- value: tag.id,
- };
- }) || [];
-
- return defaultVal;
- };
-
- return (
- <>
-
- >
- );
-}
diff --git a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/components/EditResource.tsx b/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/components/EditResource.tsx
deleted file mode 100644
index 61023018..00000000
--- a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/components/EditResource.tsx
+++ /dev/null
@@ -1,496 +0,0 @@
-import React from 'react';
-import { useParams } from 'next/navigation';
-import { graphql } from '@/gql';
-import {
- CreateFileResourceInput,
- SchemaUpdateInput,
- UpdateFileResourceInput,
-} from '@/gql/generated/graphql';
-import { IconTrash } from '@tabler/icons-react';
-import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
-import {
- parseAsBoolean,
- parseAsString,
- useQueryState,
-} from 'next-usequerystate';
-import {
- Button,
- ButtonGroup,
- Checkbox,
- Combobox,
- DataTable,
- Dialog,
- Divider,
- DropZone,
- Icon,
- IconButton,
- Select,
- Spinner,
- Text,
- TextField,
- toast,
-} from 'opub-ui';
-
-import { GraphQL } from '@/lib/api';
-import { Icons } from '@/components/icons';
-import { createResourceFilesDoc } from './ResourceDropzone';
-import { ResourceSchema, updateSchema } from './ResourceSchema';
-
-interface TListItem {
- label: string;
- value: string;
- description: string;
- dataset: any;
- fileDetails: any;
-}
-
-export const EditResource = ({ reload, data }: any) => {
- const params = useParams();
-
- const updateResourceDoc: any = graphql(`
- mutation updateFileResource($fileResourceInput: UpdateFileResourceInput!) {
- updateFileResource(fileResourceInput: $fileResourceInput) {
- __typename
- ... on TypeResource {
- id
- description
- name
- }
- }
- }
- `);
-
- const [resourceId, setResourceId] = useQueryState
('id', parseAsString);
- const [schema, setSchema] = React.useState([]);
-
- const { mutate, isLoading } = useMutation(
- (data: {
- fileResourceInput: UpdateFileResourceInput;
- isResetSchema: boolean;
- }) => GraphQL(updateResourceDoc, data),
- {
- onSuccess: (data, variables) => {
- toast('File changes saved', {
- action: {
- label: 'Dismiss',
- onClick: () => {},
- },
- });
- if (variables.isResetSchema) {
- schemaMutation.mutate({
- resourceId: resourceId,
- });
- }
- reload();
- },
- onError: (err: any) => {
- console.log('Error ::: ', err);
- },
- }
- );
-
- const resetSchema: any = graphql(`
- mutation resetFileResourceSchema($resourceId: UUID!) {
- resetFileResourceSchema(resourceId: $resourceId) {
- ... on TypeResource {
- id
- schema {
- format
- description
- id
- fieldName
- }
- }
- }
- }
- `);
-
- const schemaMutation = useMutation(
- (data: { resourceId: string }) => GraphQL(resetSchema, data),
- {
- onSuccess: () => {
- schemaQuery.refetch();
- },
- onError: (err: any) => {
- console.log('Error ::: ', err);
- },
- }
- );
-
- const schemaQuery = useQuery([`fetch_schema_${params.id}`], () =>
- GraphQL(fetchSchema, { datasetId: params.id })
- );
-
- const fetchSchema: any = graphql(`
- query datasetSchema($datasetId: UUID!) {
- datasetResources(datasetId: $datasetId) {
- schema {
- id
- fieldName
- format
- description
- }
- id
- }
- }
- `);
-
- const { mutate: modify } = useMutation(
- (data: { input: SchemaUpdateInput }) => GraphQL(updateSchema, data),
- {
- onSuccess: () => {
- schemaQuery.refetch();
- toast('Schema Updated Successfully', {
- action: {
- label: 'Dismiss',
- onClick: () => {},
- },
- });
- },
- onError: (err: any) => {
- console.log('Error ::: ', err);
- },
- }
- );
-
- const { mutate: transform } = useMutation(
- (data: { fileResourceInput: CreateFileResourceInput }) =>
- GraphQL(createResourceFilesDoc, data),
- {
- onSuccess: (data: any) => {
- setResourceId(data.createFileResources[0].id);
- toast('Resource Added Successfully', {
- action: {
- label: 'Dismiss',
- onClick: () => {},
- },
- });
- schemaQuery.refetch();
- reload();
- },
- onError: (err: any) => {
- console.log('Error ::: ', err);
- },
- }
- );
-
- const ResourceList: TListItem[] =
- data.map((item: any) => ({
- label: item.name,
- value: item.id,
- description: item.description,
- dataset: item.dataset?.pk,
- fileDetails: item.fileDetails,
- })) || [];
-
- const getResourceObject = (resourceId: string) => {
- return ResourceList.find((item) => item.value === resourceId);
- };
-
- const [resourceName, setResourceName] = React.useState(
- getResourceObject(resourceId)?.label
- );
- const [resourceDesc, setResourceDesc] = React.useState(
- getResourceObject(resourceId)?.description
- );
-
- const handleNameChange = (text: string) => {
- setResourceName(text);
- };
- const handleDescChange = (text: string) => {
- setResourceDesc(text);
- };
-
- React.useEffect(() => {
- setResourceName(getResourceObject(resourceId)?.label);
- setResourceDesc(getResourceObject(resourceId)?.description);
-
- //fix this later
- }, [JSON.stringify(ResourceList), resourceId]);
-
- const handleResourceChange = (e: any) => {
- setResourceId(e, { shallow: false });
- setResourceName(getResourceObject(e)?.label);
- setResourceDesc(getResourceObject(e)?.description);
- };
-
- const [file, setFile] = React.useState([]);
-
- const dropZone = React.useCallback(
- (_dropFiles: File[], acceptedFiles: File[]) => {
- transform({
- fileResourceInput: {
- dataset: params.id,
- files: acceptedFiles,
- },
- });
- setFile((files) => [...files, ...acceptedFiles]);
- },
- []
- );
-
- const uploadedFile = file.length > 0 && (
-
- {file.map((file, index) => {
- return
{file.name}
;
- })}
-
- );
-
-
- const onDrop = React.useCallback(
- (_dropFiles: File[], acceptedFiles: File[]) => {
- mutate({
- fileResourceInput: {
- id: resourceId,
- file: acceptedFiles[0],
- },
- isResetSchema: true,
- });
- },
- []
- );
- const fileInput = (
-
-
- {getResourceObject(resourceId)?.fileDetails.file.name.replace(
- 'resources/',
- ''
- )}{' '}
-
-
- );
-
- const listViewFunction = () => {
- setResourceId('');
- };
-
- const saveResource = () => {
- mutate({
- fileResourceInput: {
- id: resourceId,
- description: resourceDesc || '',
- name: resourceName || '',
- },
- isResetSchema: false,
- });
- if (schema.length > 0) {
- const updatedScheme = schema.map((item) => {
- const { fieldName, ...rest } = item as any;
- return rest;
- });
- modify({
- input: {
- resource: resourceId,
- updates: updatedScheme,
- },
- });
- }
- };
-
- return (
-
-
-
Resource Name :
-
- {
- handleResourceChange(e);
- }}
- name="Resource List"
- />
-
-
-
- ADD NEW RESOURCE
-
-
-
- {uploadedFile}
- {file.length === 0 && }
-
-
-
-
-
-
- Go back to
- Resource List
-
-
-
-
-
-
-
-
- SAVE RESOURCE
-
-
-
-
-
-
- handleNameChange(text)}
- label="Resource Name"
- name="a"
- required
- helpText="To know about best practices for naming Resources go to our User Guide"
- />
-
-
-
-
-
-
handleDescChange(text)}
- label="Resource Description"
- name="resourceDesc"
- multiline={4}
- />
-
-
- {fileInput}
-
-
-
-
-
-
- {/*
-
- console.log('hi')}>
- Enabel Preview
-
-
-
-
-
-
-
-
- Select Rows to be shown in the Preview
-
-
-
-
-
-
- See Preview
-
-
*/}
-
-
-
Fields in the Resource
-
- schemaMutation.mutate({
- resourceId: resourceId,
- })
- }
- >
-
- Reset Fields {' '}
-
-
-
-
-
- The Field settings apply to the Resource on a master level and can not
- be changed in Access Models.
-
- {schemaQuery.isLoading || schemaMutation.isLoading ? (
-
-
-
- ) : resourceId && schemaQuery.data?.datasetResources?.filter(
- (item: any) => item.id === resourceId ).length > 0 ? (
-
item.id === resourceId)[0]?.schema}
- />
- ) : (
- Click on Reset Fields
- )}
-
-
- );
-};
diff --git a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/loading.tsx b/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/loading.tsx
deleted file mode 100644
index 78917585..00000000
--- a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/loading.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import DatasetLoading from '../../../dataset/components/loading-dataset';
-
-export default function LoadingPage() {
- return ;
-}
diff --git a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/metadata/loading.tsx b/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/metadata/loading.tsx
deleted file mode 100644
index eec5deb0..00000000
--- a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/metadata/loading.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import DatasetLoading from '../../../../dataset/components/loading-dataset';
-
-export default function LoadingPage() {
- return ;
-}
diff --git a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/resources/page-layout.tsx b/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/resources/page-layout.tsx
deleted file mode 100644
index ff8055cd..00000000
--- a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/resources/page-layout.tsx
+++ /dev/null
@@ -1,105 +0,0 @@
-'use client';
-
-import React from 'react';
-import { useSearchParams } from 'next/navigation';
-import { graphql } from '@/gql';
-
-import { useQuery } from '@tanstack/react-query';
-import { Spinner,Text } from 'opub-ui';
-
-import { GraphQL } from '@/lib/api';
-import { EditResource } from '../components/EditResource';
-import { ResourceDropzone } from '../components/ResourceDropzone';
-import { ResourceListView } from '../components/ResourceListView';
-
-export const getReourceDoc = graphql(`
- query getResources($filters: DatasetFilter) {
- datasets(filters: $filters) {
- resources {
- id
- dataset {
- pk
- }
- schema {
- id
- fieldName
- format
- description
- }
- type
- name
- description
- created
- fileDetails {
- id
- resource {
- pk
- }
- file {
- name
- path
- url
- }
- size
- created
- modified
- }
- }
- }
- }
-`);
-
-export function DistibutionPage({ params }: { params: { id: string } }) {
-
- const { data, isLoading, refetch } = useQuery(
- [`fetch_resources_${params.id}`],
- () => GraphQL(getReourceDoc, { filters: { id: params.id } }),
- {
- refetchOnMount: true,
- refetchOnReconnect: true,
- }
- );
-
- const searchParams = useSearchParams();
- const resourceId = searchParams.get('id');
-
- return (
- <>
-
- {isLoading ? (
-
-
-
- ) : (
- <>
- {data && data.datasets[0].resources.length > 0 ? (
- <>
- {resourceId ? (
-
- ) : (
-
- )}
- >
- ) : data && data.datasets[0].resources.length === 0 ? (
-
-
-
- ) : (
-
-
- Please refresh this page
-
-
- )}
- >
- )}
-
- >
- );
-}
diff --git a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/review/page.tsx b/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/review/page.tsx
deleted file mode 100644
index 68beaa80..00000000
--- a/app/[locale]/dashboard/organization/[organizationId]/dataset/[id]/edit/review/page.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { InProgress } from '@/components/in-progress';
-
-export default async function Page({ params }: { params: { id: string } }) {
- return (
- <>
-
- >
- );
-}
diff --git a/app/[locale]/dashboard/organization/[organizationId]/dataset/components/content.tsx b/app/[locale]/dashboard/organization/[organizationId]/dataset/components/content.tsx
deleted file mode 100644
index 86689799..00000000
--- a/app/[locale]/dashboard/organization/[organizationId]/dataset/components/content.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-'use client';
-
-import { Icon, Text } from 'opub-ui';
-import { twMerge } from 'tailwind-merge';
-
-import { Icons } from '@/components/icons';
-import { LinkButton } from '@/components/Link';
-
-export function Content() {
- return (
-
-
-
-
- You have not added any datasets yet.
-
- Add New Dataset
-
-
- );
-}
diff --git a/app/[locale]/dashboard/organization/[organizationId]/page.tsx b/app/[locale]/dashboard/organization/[organizationId]/page.tsx
deleted file mode 100644
index 7cb4efd6..00000000
--- a/app/[locale]/dashboard/organization/[organizationId]/page.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { InProgress } from '@/components/in-progress';
-
-export default async function Page({ params }: { params: { id: string } }) {
- return (
- <>
-
- >
- );
-}
\ No newline at end of file
diff --git a/app/[locale]/dashboard/organization/page.tsx b/app/[locale]/dashboard/organization/page.tsx
deleted file mode 100644
index e3db4b4b..00000000
--- a/app/[locale]/dashboard/organization/page.tsx
+++ /dev/null
@@ -1,98 +0,0 @@
-'use client';
-
-import Image from 'next/image';
-import Link from 'next/link';
-import { usePathname } from 'next/navigation';
-import { Icon, Text } from 'opub-ui';
-
-import { cn } from '@/lib/utils';
-import BreadCrumbs from '@/components/BreadCrumbs';
-import { Icons } from '@/components/icons';
-import { DashboardHeader } from '../components/dashboard-header';
-import styles from './../components/styles.module.scss';
-
-const Page = () => {
- const pathname = usePathname();
-
- const organizationsList = [
- {
- title: 'Open Budgets India',
- slug: 'open-budgets-india',
- },
- {
- title: 'Open Contracting India',
- slug: 'open-contracting-india',
- },
- ];
-
- return (
-
-
-
-
-
-
-
-
- {organizationsList.map((orgItem) => (
-
-
-
-
-
-
- {/*
- Manage Datasets
-
-
- Manage Consumers
- */}
-
-
- {orgItem.title}
-
-
- ))}
-
-
-
- Add New Organization
-
-
-
-
-
-
- );
-};
-
-export default Page;
diff --git a/app/[locale]/dashboard/page.tsx b/app/[locale]/dashboard/page.tsx
new file mode 100644
index 00000000..530e9e1f
--- /dev/null
+++ b/app/[locale]/dashboard/page.tsx
@@ -0,0 +1,65 @@
+'use client';
+
+import Link from 'next/link';
+import { Icon, Text } from 'opub-ui';
+
+import BreadCrumbs from '@/components/BreadCrumbs';
+import { Icons } from '@/components/icons';
+import { Loading } from '@/components/loading';
+import { useDashboardStore } from '@/config/store';
+
+const UserDashboard = () => {
+ const { userDetails, allEntityDetails } = useDashboardStore();
+ const list = [
+ {
+ label: 'My Dashboard',
+ icon: Icons.user,
+ path: `/dashboard/self/${userDetails?.me?.firstName}_${userDetails?.me?.id}/dataset`,
+ },
+ {
+ label: 'Organizations',
+ icon: Icons.userGroup,
+ path: '/dashboard/organization',
+ },
+ ];
+
+ return (
+ <>
+
+
+ {!userDetails?.me ? (
+
+ ) : (
+
+
+ User Dashboard
+
+
+
+ {list.map((item, index) => (
+
+
+ {item.label}
+
+ ))}
+
+
+
+ )}
+ >
+ );
+};
+
+export default UserDashboard;
diff --git a/app/[locale]/dashboard/user/account/account.module.scss b/app/[locale]/dashboard/user/account/account.module.scss
deleted file mode 100644
index f3c21747..00000000
--- a/app/[locale]/dashboard/user/account/account.module.scss
+++ /dev/null
@@ -1,77 +0,0 @@
-.Container {
- height: 100%;
-}
-
-.Header {
- padding: var(--space-3) var(--space-4);
- box-shadow: var(--shadow-deep);
- background-color: var(--surface);
- z-index: var(--z-2);
- position: relative;
-}
-
-.Wrapper {
- display: grid;
- gap: var(--space-6);
- grid-template-columns: 240px 1fr;
- height: calc(100% - 60px);
-}
-
-.Aside {
- padding-top: var(--space-6);
- padding-right: var(--space-2);
- box-shadow: inset -1px 0px 0px #e4e5e7;
- background-color: var(--surface);
- z-index: var(--z-1);
-
- > nav {
- display: flex;
- flex-direction: column;
- gap: var(--space-2);
- }
-}
-
-.NavItem {
- display: flex;
- justify-content: space-between;
- position: relative;
-
- > div {
- display: flex;
- gap: var(--space-2);
- padding: var(--space-2) var(--space-3);
- width: 100%;
- margin-left: var(--space-2);
- border-radius: var(--space-1);
-
- > span:last-child {
- flex-grow: 1;
- }
- }
-
- .Indicator {
- background-color: transparent;
- border-radius: 0px var(--space-1) var(--space-1) 0px;
-
- width: 3px;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- }
-
- &--active {
- > div {
- background-color: var(--background-selected);
- --text: var(--interactive);
-
- svg {
- fill: var(--icon-interactive);
- }
- }
-
- .Indicator {
- background-color: var(--icon-interactive);
- }
- }
-}
diff --git a/app/[locale]/dashboard/user/account/loading.tsx b/app/[locale]/dashboard/user/account/loading.tsx
deleted file mode 100644
index 6e265d51..00000000
--- a/app/[locale]/dashboard/user/account/loading.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { Loading } from '@/components/loading';
-
-export default function LoadingPage() {
- return ;
-}
diff --git a/app/[locale]/dashboard/user/account/page.tsx b/app/[locale]/dashboard/user/account/page.tsx
deleted file mode 100644
index 43f95240..00000000
--- a/app/[locale]/dashboard/user/account/page.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { InProgress } from '../../components/in-progress';
-
-export default async function DashboardPage() {
- return (
-
-
-
- );
-}
diff --git a/app/[locale]/dashboard/user/datasets/page.tsx b/app/[locale]/dashboard/user/datasets/page.tsx
deleted file mode 100644
index 4cd0d528..00000000
--- a/app/[locale]/dashboard/user/datasets/page.tsx
+++ /dev/null
@@ -1,137 +0,0 @@
-'use client';
-
-import { useEffect, useState } from 'react';
-import { useRouter } from 'next/navigation';
-import { DataTable } from 'opub-ui';
-
-import GraphqlPagination from '../../components/GraphqlPagination/graphqlPagination';
-import ListingHeader from '../../components/ListingHeader';
-
-const Page = () => {
- const [rowData, setRowData] = useState([]);
- const [totalRows, setTotalRows] = useState(0);
- const [queryParams, setQueryParams] = useState({
- pageSize: 10,
- currentPage: 1,
- paramNames: {
- pageSize: 'size',
- currentPage: 'from',
- },
- });
- const router = useRouter();
-
- useEffect(() => {
- if (typeof window !== 'undefined') {
- // Parse query parameters from the URL
- const urlParams = new URLSearchParams(window.location.search);
- const sizeParam = urlParams.get(queryParams.paramNames.pageSize);
- const fromParam = urlParams.get(queryParams.paramNames.currentPage);
-
- // Update queryParams state with parsed values
- if (sizeParam && fromParam) {
- setQueryParams({
- ...queryParams,
- pageSize: Number(sizeParam),
- currentPage: Number(fromParam),
- });
- }
- }
- }, [queryParams.paramNames]);
-
- useEffect(() => {
- if (typeof window !== 'undefined') {
- // Update URL when pageSize or currentPage change
- const queryParamsString = new URLSearchParams({
- [queryParams.paramNames.pageSize]: String(queryParams.pageSize),
- [queryParams.paramNames.currentPage]: String(queryParams.currentPage),
- }).toString();
- const newUrl = `${window.location.pathname}?${queryParamsString}`;
- router.replace(newUrl);
- }
- }, [queryParams, router]);
-
- const handlePageChange = (newPage: number) => {
- setQueryParams({ ...queryParams, currentPage: newPage });
- };
-
- const handlePageSizeChange = (newSize: number) => {
- setQueryParams({ ...queryParams, pageSize: newSize, currentPage: 1 });
- };
-
- // const fetchData = async (pageSize: number, currentPage: number) => {
- // try {
- // const response = await fetch(
- // api or query
- // );
- // const data = await response.json();
- // setRowData(data.hits.hits);
- // setTotalRows(data.hits.total.value);
- // } catch (error) {
- // console.error('Error fetching data:', error);
- // }
- // };
-
- useEffect(() => {
- // Fetch data when queryParams change
- // fetchData(queryParams.pageSize, queryParams.currentPage);
- }, [queryParams]); // Fetch data when queryParams change
-
- const [selectedFilter, setSelectedFilter] = useState('all');
- const [searchQuery, setSearchQuery] = useState('');
-
- const handleFilterChange = (value: string) => {
- setSelectedFilter(value);
- };
-
- const handleSearchChange = (query: string) => {
- setSearchQuery(query);
- };
-
- return (
-
-
-
- ({
- dataset_title: item._source.dataset_title,
- org_title: item._source.org_title,
- org_types: item._source.org_types,
- }))}
- hideFooter={true}
- hideSelection={true}
- defaultRowCount={100}
- />
-
-
- );
-};
-
-export default Page;
diff --git a/app/[locale]/dashboard/user/layout.tsx b/app/[locale]/dashboard/user/layout.tsx
deleted file mode 100644
index 1464c45c..00000000
--- a/app/[locale]/dashboard/user/layout.tsx
+++ /dev/null
@@ -1,57 +0,0 @@
-'use client';
-
-import React from 'react';
-import { usePathname } from 'next/navigation';
-
-import { dashboardConfig } from '@/config/dashboard';
-import { cn } from '@/lib/utils';
-import BreadCrumbs from '@/components/BreadCrumbs';
-import { DashboardHeader } from '../components/dashboard-header';
-import { DashboardNav } from '../components/dashboard-nav';
-import { MobileDashboardNav } from '../components/mobile-dashboard-nav';
-import styles from './../components/styles.module.scss';
-
-interface DashboardLayoutProps {
- children?: React.ReactNode;
-}
-
-export default function DashboardLayout({ children }: DashboardLayoutProps) {
- const [isOpened, setIsOpened] = React.useState(false);
- const pathname = usePathname();
-
- return (
-
- );
-}
diff --git a/app/[locale]/dashboard/organization/[organizationId]/layout.tsx b/app/[locale]/manage/layout.tsx
similarity index 55%
rename from app/[locale]/dashboard/organization/[organizationId]/layout.tsx
rename to app/[locale]/manage/layout.tsx
index 58f01f2e..9246c567 100644
--- a/app/[locale]/dashboard/organization/[organizationId]/layout.tsx
+++ b/app/[locale]/manage/layout.tsx
@@ -1,14 +1,14 @@
'use client';
import React from 'react';
-import { useParams } from 'next/navigation';
import { SidebarNavItem } from '@/types';
import { cn } from '@/lib/utils';
import BreadCrumbs from '@/components/BreadCrumbs';
-import { DashboardNav } from '../../components/dashboard-nav';
-import { MobileDashboardNav } from '../../components/mobile-dashboard-nav';
-import styles from '../../components/styles.module.scss';
+import { DashboardNav } from '../dashboard/components/dashboard-nav';
+import { MobileDashboardNav } from '../dashboard/components/mobile-dashboard-nav';
+import styles from '../dashboard/components/styles.module.scss';
+import LoadingPage from '../dashboard/loading';
interface DashboardLayoutProps {
children?: React.ReactNode;
@@ -17,35 +17,22 @@ interface DashboardLayoutProps {
export default function OrgDashboardLayout({ children }: DashboardLayoutProps) {
const [isOpened, setIsOpened] = React.useState(false);
- const params = useParams<{ organizationId: string }>();
-
const orgSidebarNav: Array = [
{
- title: 'Datasets',
- href: `/dashboard/organization/${params.organizationId}/dataset`,
+ title: 'Use Cases',
+ href: `/manage/usecases`,
icon: 'datasetEdit',
},
- {
- title: 'Manage Consumers',
- href: `/dashboard/organization/${params.organizationId}/consumers`,
- icon: 'userList',
- },
];
- const organizationId = params.organizationId;
-
return (
- <>
+ }>
@@ -55,7 +42,7 @@ export default function OrgDashboardLayout({ children }: DashboardLayoutProps) {
' bg-surfaceDefault p-4 md:flex'
)}
>
-
+
- >
+
);
}
diff --git a/app/[locale]/manage/page.tsx b/app/[locale]/manage/page.tsx
new file mode 100644
index 00000000..2171f99e
--- /dev/null
+++ b/app/[locale]/manage/page.tsx
@@ -0,0 +1,20 @@
+'use client';
+
+import { useRouter } from 'next/navigation';
+import { useEffect } from 'react';
+
+import { Loading } from '@/components/loading';
+
+const Manage = () => {
+ const router = useRouter();
+ useEffect(() => {
+ // Redirect to the Use Cases page
+ router.push(`/manage/usecases`);
+ }, [router]);
+ return (
+
+
+
// Optional: You can show a loading message or spinner here
+ );
+};
+export default Manage;
diff --git a/app/api/auth/[...nextauth]/options.ts b/app/api/auth/[...nextauth]/options.ts
index 65cf0404..58755cde 100644
--- a/app/api/auth/[...nextauth]/options.ts
+++ b/app/api/auth/[...nextauth]/options.ts
@@ -73,8 +73,10 @@ export const authOptions: AuthOptions = {
},
async session({ session, token }: { session: Session; token: JWT }) {
// Send properties to the client
- session.access_token = encrypt(token.access_token as string);
- session.id_token = encrypt(token.id_token as string);
+ // session.access_token = encrypt(token.access_token as string);
+ // session.id_token = encrypt(token.id_token as string);
+ session.access_token = (token.access_token as string);
+ session.id_token = (token.id_token as string);
session.roles = (
token.decoded as {
realm_access: { roles: string[] };
diff --git a/app/api/sentry-monitoring/index.ts b/app/api/sentry-monitoring/index.ts
new file mode 100644
index 00000000..a2a23504
--- /dev/null
+++ b/app/api/sentry-monitoring/index.ts
@@ -0,0 +1,34 @@
+'use server';
+
+export const postAction = async ({ req }: any) => {
+ try {
+ const envelopeBytes = await req.arrayBuffer();
+ const envelope = new TextDecoder().decode(envelopeBytes);
+ const piece = envelope.split('\n')[0];
+ const header = JSON.parse(piece);
+ const dsn = new URL(header['dsn']);
+ const project_id = dsn.pathname?.replace('/', '');
+
+ if (dsn.hostname !== process.env.SENTRY_DSN_URL) {
+ throw new Error(`Invalid sentry hostname: ${dsn.hostname}`);
+ }
+
+ if (!project_id || ![process.env.SENTRY_PROJECT_ID]?.includes(project_id)) {
+ throw new Error(`Invalid sentry project id: ${project_id}`);
+ }
+
+ const upstream_sentry_url = `https://${process.env.SENTRY_DSN_URL}/api/${project_id}/envelope/`;
+ await fetch(upstream_sentry_url, {
+ method: 'POST',
+ body: envelopeBytes,
+ });
+
+ return new Response(JSON.stringify({}), { status: 200 });
+ } catch (e) {
+ console.error('error tunneling to sentry', e);
+ return new Response(
+ JSON.stringify({ error: 'error tunneling to sentry' }),
+ { status: 500 }
+ );
+ }
+};
diff --git a/app/global-error.tsx b/app/global-error.tsx
new file mode 100644
index 00000000..af1796bc
--- /dev/null
+++ b/app/global-error.tsx
@@ -0,0 +1,29 @@
+'use client';
+
+// import * as Sentry from "@sentry/nextjs";
+import { useEffect } from 'react';
+import NextError from 'next/error';
+import * as Sentry from '@sentry/nextjs'
+
+export default function GlobalError({
+ error,
+}: {
+ error: Error & { digest?: string };
+}) {
+ useEffect(() => {
+ Sentry.captureException(error);
+ // console.log('Global Error ::: ', error);
+ }, [error]);
+
+ return (
+
+
+ {/* `NextError` is the default Next.js error page component. Its type
+ definition requires a `statusCode` prop. However, since the App Router
+ does not expose status codes for errors, we simply pass 0 to render a
+ generic error message. */}
+
+
+
+ );
+}
diff --git a/components/BreadCrumbs/index.tsx b/components/BreadCrumbs/index.tsx
index c1d4fd2c..4d0613ca 100644
--- a/components/BreadCrumbs/index.tsx
+++ b/components/BreadCrumbs/index.tsx
@@ -14,18 +14,18 @@ interface BreadCrumbsProps {
const BreadCrumbs: React.FC = ({ data }) => {
return (
-
+
-
+
{data.map((item, index) => (
{index === data.length - 1 ? (
- {item.label}
+ {item.label}
) : (
- {item.label}
+ {item.label}
)}
{index < data.length - 1 && }
diff --git a/components/icons.tsx b/components/icons.tsx
index 1aeab126..3cb7a6da 100644
--- a/components/icons.tsx
+++ b/components/icons.tsx
@@ -2,13 +2,22 @@ import {
IconAlertCircleFilled,
IconArrowLeft,
IconArrowRight,
+ IconArrowsDiagonal,
+ IconArrowsSort,
IconBarrierBlock,
IconBellFilled,
- IconBrandFacebookFilled,
- IconBrandGithubFilled,
+ IconBrandFacebook,
+ IconBrandGithub,
IconBrandLinkedin,
- IconBrandTwitterFilled,
+ IconBrandTwitter,
+ IconBulb,
+ IconCalendar,
+ IconChartBar,
+ IconChartLine,
+ IconChartTreemap,
IconCheck,
+ IconCircle5,
+ IconCircleCheck,
IconCircleCheckFilled,
IconCloudUpload,
IconDatabase,
@@ -16,27 +25,38 @@ import {
IconDatabaseEdit,
IconDatabaseOff,
IconDatabasePlus,
+ IconDotsVertical,
IconDownload,
IconFilePlus,
IconFileUpload,
IconFolder,
IconInfoCircle,
+ IconLayoutGrid,
+ IconLayoutList,
IconLayoutSidebarLeftCollapse,
IconLayoutSidebarLeftExpand,
IconLink,
IconLoader,
+ IconMapPin,
IconMenu2,
IconPencil,
+ IconPhoto,
IconPlus,
IconSearch,
+ IconSettings,
IconShare3,
IconShieldCheck,
IconShieldLock,
IconShieldStar,
+ IconStar,
IconTerminal,
+ IconTopologyStarRing3,
IconTrash,
+ IconUser,
IconUserCog,
IconUsers,
+ IconUsersGroup,
+ IconWorld,
IconX,
// TablerIconsProps,
} from '@tabler/icons-react';
@@ -50,6 +70,7 @@ export const Icons: {
arrowRight: IconArrowRight,
back: IconArrowLeft,
check: IconCircleCheckFilled,
+ checkUnfilled: IconCircleCheck,
collapse: IconLayoutSidebarLeftCollapse,
construction: IconBarrierBlock,
cross: IconX,
@@ -62,9 +83,9 @@ export const Icons: {
dropzone: IconCloudUpload,
errorPage: IconDatabaseOff,
expand: IconLayoutSidebarLeftExpand,
- facebook: IconBrandFacebookFilled,
+ facebook: IconBrandFacebook,
fileUpload: IconFileUpload,
- github: IconBrandGithubFilled,
+ github: IconBrandGithub,
info: IconInfoCircle,
link: IconLink,
linkedin: IconBrandLinkedin,
@@ -79,9 +100,31 @@ export const Icons: {
search: IconSearch,
share: IconShare3,
terminal: IconTerminal,
- twitter: IconBrandTwitterFilled,
+ twitter: IconBrandTwitter,
checkmark: IconCheck,
loader: IconLoader,
userList: IconUsers,
userSettings: IconUserCog,
+ arrowDiagonal: IconArrowsDiagonal,
+ verticalDots: IconDotsVertical,
+ chart: IconChartBar,
+ list: IconLayoutList,
+ grid: IconLayoutGrid,
+ calendar: IconCalendar,
+ globe: IconWorld,
+ diagonal: IconArrowsDiagonal,
+ sort: IconArrowsSort,
+ user: IconUser,
+ userGroup: IconUsersGroup,
+ setting: IconSettings,
+ photo: IconPhoto,
+ star: IconStar,
+ light: IconBulb,
+ location: IconMapPin,
+ chartBar: IconChartBar,
+ chartBigNumber: IconCircle5,
+ chartTreeMap: IconChartTreemap,
+ chartLine: IconChartLine,
+ chartMapPolygon: IconTopologyStarRing3,
+ chartMap: IconWorld,
};
diff --git a/components/provider.tsx b/components/provider.tsx
index c99f96a6..c21b9c81 100644
--- a/components/provider.tsx
+++ b/components/provider.tsx
@@ -1,6 +1,7 @@
'use client';
import React from 'react';
+import { ErrorBoundary } from '@sentry/nextjs';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import HolyLoader from 'holy-loader';
import { SessionProvider } from 'next-auth/react';
@@ -23,17 +24,19 @@ export default function Provider({ children }: { children: React.ReactNode }) {
);
return (
-
-
-
-
-
-
- {children}
-
-
-
-
-
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+
+
);
}
diff --git a/config/codegen.ts b/config/codegen.ts
index 670d6971..5eb04f56 100644
--- a/config/codegen.ts
+++ b/config/codegen.ts
@@ -5,7 +5,7 @@ loadEnvConfig(process.cwd());
const config: CodegenConfig = {
schema: process.env.BACKEND_GRAPHQL_URL,
- documents: 'app/**/*.tsx',
+ documents: 'app/**/*.ts*',
ignoreNoDocuments: true,
generates: {
'./gql/generated/': {
diff --git a/config/dashboard.ts b/config/dashboard.ts
index 9bc13760..a95017a9 100644
--- a/config/dashboard.ts
+++ b/config/dashboard.ts
@@ -15,12 +15,12 @@ export const dashboardConfig: DashboardConfig = {
sidebarNav: [
{
title: 'Dataset Accessed',
- href: '/dashboard/user/datasets',
+ href: '/dashboard',
icon: 'datasetSettings',
},
{
title: 'Profile',
- href: '/dashboard/user/account',
+ href: '/dashboard/account',
icon: 'userSettings',
},
],
diff --git a/config/site.ts b/config/site.ts
index e17df18c..2e9eaeb6 100644
--- a/config/site.ts
+++ b/config/site.ts
@@ -9,9 +9,3 @@ export const siteConfig: SiteConfig = {
export const locales = ['en', 'hi'];
-export const gqlConfig = {
- url: `${process.env.BACKEND_GRAPHQL_URL}`,
- headers: {
- organization: '1',
- },
-};
diff --git a/config/store.ts b/config/store.ts
index afebfff3..e12d3adf 100644
--- a/config/store.ts
+++ b/config/store.ts
@@ -11,4 +11,22 @@ export const useIsNavigating = create((set) => ({
setIsNavigation: (isNavigating) => set({ isNavigating }),
}));
+interface DashboardStore {
+ entityDetails: any;
+ userDetails: any;
+ setEntityDetails: (data: any) => void;
+ setUserDetails: (data: any) => void;
+ allEntityDetails: any;
+ setAllEntityDetails: (data: any) => void;
+}
+
+export const useDashboardStore = create((set) => ({
+ entityDetails: null,
+ userDetails: null,
+ setEntityDetails: (data) => set({ entityDetails: data }),
+ setUserDetails: (data) => set({ userDetails: data }),
+ allEntityDetails: null,
+ setAllEntityDetails: (data) => set({ allEntityDetails: data }),
+}));
+
export { shallow };
diff --git a/geo_json/assam_geojson.tsx b/geo_json/assam_geojson.tsx
new file mode 100644
index 00000000..d04a538d
--- /dev/null
+++ b/geo_json/assam_geojson.tsx
@@ -0,0 +1,181 @@
+
+const assam_geojson:any = {
+ 'type': "FeatureCollection",
+ 'features':[{
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[89.84311755497468, 25.882881951016227], [89.8764324738049, 25.87908820617017], [89.89786477000925, 25.90037088748505], [89.93032225947721, 25.906346696438625], [89.9373183901139, 25.9246901179942], [89.94895752797528, 25.925041218956522], [89.94517460912613, 25.950001098282414], [89.96798657297815, 25.972992068811656], [90.01942848812877, 26.002321286638715], [90.05627408157132, 26.000510030751272], [90.0825170645313, 26.04054466888837], [90.1253587696632, 26.054762659042144], [90.18032598121255, 26.048011604231707], [90.18304348466002, 26.062025482398735], [90.16878964745062, 26.07751790078513], [90.17370492864802, 26.103079525827038], [90.19547762975121, 26.12729193715614], [90.24798334782759, 26.140442254563702], [90.2647808545955, 26.183244125783613], [90.30478073573283, 26.192817283233246], [90.35757680188549, 26.190027979484984], [90.39016840623206, 26.204024512697917], [90.4410745077568, 26.2350482679932], [90.43032454841479, 26.258678147713315], [90.45032461205264, 26.250799052346597], [90.44487270425398, 26.26748753949984], [90.47319509845046, 26.27076198405535], [90.45864632996023, 26.27223387382261], [90.45523717674462, 26.285225040429], [90.4659958398634, 26.276213078872622], [90.46390913251015, 26.289772779164355], [90.48359218068424, 26.29605665416124], [90.46584855298772, 26.325268179899723], [90.47415185094043, 26.33260554262929], [90.46241825702359, 26.328268480634826], [90.45395322908209, 26.34091839405764], [90.45709275116853, 26.35747532017717], [90.44521205003907, 26.345948124224854], [90.44416114422583, 26.360416665199978], [90.43633375574437, 26.359157781692865], [90.435998073289, 26.342319867233563], [90.42500503701764, 26.363027777589576], [90.39519840588453, 26.3593704870109], [90.40496211026598, 26.320798402629894], [90.37929002104212, 26.309311515387744], [90.38122682293066, 26.26866595713836], [90.35543194209228, 26.258238587604858], [90.36283862706834, 26.273120032128986], [90.3519116367333, 26.287159425707035], [90.34404654685767, 26.270734747456032], [90.3207480806006, 26.2788376237012], [90.30345817937771, 26.2575012335087], [90.30658227289915, 26.24585231774085], [90.287306216346, 26.23742896349691], [90.28800679985967, 26.25213083482461], [90.25150768841884, 26.264428780726238], [90.25866855211234, 26.27298353687872], [90.27223358990797, 26.26733462284862], [90.28105947199742, 26.29220877072932], [90.2646286925628, 26.312974567217573], [90.26729253694337, 26.330575196592513], [90.21598138326044, 26.3287283359232], [90.22783070084714, 26.349392639451143], [90.21479262467865, 26.351665692428938], [90.23427900019603, 26.365515441808014], [90.2267162302444, 26.385087821811844], [90.20665248323942, 26.374812829592162], [90.18790091255647, 26.3456525748148], [90.12787403898402, 26.34624047861621], [90.10772758588743, 26.31251227069738], [90.12434143389216, 26.303817869697955], [90.12607276412575, 26.283192920139935], [90.14089660843405, 26.293255519637295], [90.14053632112307, 26.276197147838243], [90.11752692913117, 26.25856922538586], [90.09743214623144, 26.262275449888133], [90.1040085848657, 26.25116206848388], [90.12034757803787, 26.250463205536484], [90.13632763496523, 26.215521730677985], [90.14739501311455, 26.220042277261047], [90.1521083251883, 26.20899935898451], [90.06381946283396, 26.172656971991803], [90.025032981965, 26.12679198342518], [89.98207691321258, 26.136585465794152], [89.9669260102756, 26.127012286069643], [89.93824528979037, 26.13288843214826], [89.93563814257895, 26.116898796237095], [89.91333644336788, 26.11225671986655], [89.90092039124484, 26.117324522913997], [89.9161602444629, 26.116355369941694], [89.908575209767, 26.13249643546632], [89.87011860194842, 26.14713840983341], [89.87533682111076, 26.18908659968641], [89.86004851186793, 26.188079123105428], [89.87303947589135, 26.202130569995308], [89.85997493984618, 26.219960182020337], [89.86972215834552, 26.234130831161014], [89.85871652320232, 26.23831324486291], [89.87421331525289, 26.247362373077088], [89.86607949076677, 26.257986148744106], [89.88309423442489, 26.309784372772576], [89.88593291162098, 26.31080305294407], [89.88712826743024, 26.314282973026536], [89.88954686006016, 26.314471080627303], [89.89009805913199, 26.31344008202432], [89.89009135500501, 26.312564818266317], [89.89144784432169, 26.31279966390493], [89.89222967506292, 26.317579172935776], [89.89320745980866, 26.318539538934804], [89.89538568033655, 26.321567360241588], [89.89917077760025, 26.324258030368657], [89.90196734716575, 26.32555405676386], [89.90471986604469, 26.331992492148043], [89.90493234455884, 26.33471106503802], [89.88952252380079, 26.34240399720366], [89.8877905243223, 26.342923812878514], [89.88770391684744, 26.342949800018566], [89.8867322325608, 26.34324134729898], [89.87712183107249, 26.34767421838891], [89.8748697663333, 26.34799056528616], [89.8692450253689, 26.349597832922512], [89.87639536440054, 26.355466433167617], [89.8761227212202, 26.358620024057974], [89.87567824559743, 26.362820329301204], [89.87267526294256, 26.364400951354853], [89.86978195739738, 26.363923255142893], [89.8664952939623, 26.362357802026743], [89.86440562127031, 26.364396675029568], [89.86208168142693, 26.368129968318634], [89.85965257491488, 26.369152509385177], [89.85628559670351, 26.368043872290656], [89.8527448061628, 26.367676336639637], [89.84914104821225, 26.36898146328194], [89.84424948972486, 26.374574530801137], [89.84218848586681, 26.377824548220094], [89.84121245463253, 26.37938393791035], [89.82488663705061, 26.381602582931983], [89.82033015375751, 26.352732181867783], [89.81113190201646, 26.360418786130754], [89.82040700013849, 26.373001324246708], [89.78100575989971, 26.35283112116804], [89.78260933712355, 26.332710252385773], [89.76081004498961, 26.314801440600732], [89.75103644027541, 26.322428093489783], [89.75715258934461, 26.28878088157381], [89.72676393075581, 26.29436124255308], [89.7204004251832, 26.307881917942083], [89.71769146651074, 26.29556259126111], [89.73834405379456, 26.269814847136004], [89.71970901167195, 26.25737278821389], [89.707051037853, 26.270543188080616], [89.70227302372258, 26.259352420760173], [89.71697471422024, 26.25685161479262], [89.73210560448932, 26.236698300569394], [89.70049167529397, 26.217949893504453], [89.73401976434111, 26.209950566783014], [89.7117047368262, 26.202319730620975], [89.72049323822004, 26.19523022741852], [89.71316569571883, 26.187157920610538], [89.6986022784013, 26.19076146661001], [89.7098181777115, 26.17185747569792], [89.73306186110926, 26.17681178871275], [89.72042157242329, 26.158426023121777], [89.74720582627458, 26.157963322084353], [89.76661241612332, 26.129294220377997], [89.75667397055452, 26.108286975574295], [89.78437921226936, 26.105364452361368], [89.78176618199112, 26.08318458195375], [89.79455687201181, 26.088722191333392], [89.79862313207799, 26.059555944300087], [89.77365912819873, 26.038517498571995], [89.80181985978008, 26.04049010019396], [89.78798061663386, 26.019003150887155], [89.80870621898399, 26.04377790728417], [89.82053984479931, 25.987348065677814], [89.83600648220245, 25.9823593222479], [89.83625883693207, 26.012683202319415], [89.87285156630024, 25.97730729052498], [89.83906899171961, 25.967986474228667], [89.84934803532505, 25.94922061732081], [89.8254590740924, 25.95129176154605], [89.84457808716759, 25.93995834074341], [89.887246515366, 25.94514343143216], [89.84311755497468, 25.882881951016227]]]
+ }, "properties": {"name": "DHUBRI"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[89.84311755497468, 25.882881951016227], [89.83285118390296, 25.870236194975238], [89.8351854355075, 25.840327419735846], [89.81675400822213, 25.81489332778077], [89.84124164538768, 25.760664608433473], [89.82678856274657, 25.73297978199172], [89.83497102112389, 25.71587210503445], [89.84935987512048, 25.715144203712658], [89.84658407280772, 25.69574532249682], [89.87091383824864, 25.662701059984396], [89.88230965483886, 25.617300616932976], [89.86605040241955, 25.546123669422172], [89.85136496244536, 25.538918524978513], [89.86019266272497, 25.517417526131126], [89.85129089994346, 25.466350859046816], [89.8716262885072, 25.47743956025628], [89.87280682480917, 25.50750668699219], [89.88587249542657, 25.508011750110466], [89.86787219929045, 25.524332724020788], [89.87829943796832, 25.55042515194609], [89.97209395522307, 25.57358308414238], [89.98344120709244, 25.59133999340333], [90.00293597736614, 25.585515661001917], [90.02018693482486, 25.60757855839893], [89.95039013064766, 25.65569481958719], [89.94435381755272, 25.679348012365153], [89.89906454283474, 25.726513584679413], [89.8946781528457, 25.74505956367731], [89.92422214174258, 25.738436036591214], [89.93722185805181, 25.745210068531378], [89.9592900896121, 25.780021365253823], [89.9481984030512, 25.825561825274388], [89.95762170612707, 25.829200811002337], [89.96194340753419, 25.82027963994926], [89.96391114201121, 25.83314893466229], [89.9710282460723, 25.826458740378307], [90.00352460025267, 25.8393267634105], [90.02375963082952, 25.867309052051663], [90.00803248828221, 25.88169958268971], [90.02517354584906, 25.895786325586343], [90.04242428322053, 25.88775841484188], [90.11787053562564, 25.95754143724235], [90.11982582484274, 25.969536968253436], [90.187552211716, 26.001425514370634], [90.1973218485716, 26.025957180029778], [90.17081340715698, 26.043923311783793], [90.18032598121255, 26.048011604231707], [90.1253587696632, 26.054762659042144], [90.0825170645313, 26.04054466888837], [90.05627408157132, 26.000510030751272], [90.01942848812877, 26.002321286638715], [89.96798657297815, 25.972992068811656], [89.94517460912613, 25.950001098282414], [89.94895752797528, 25.925041218956522], [89.9373183901139, 25.9246901179942], [89.93032225947721, 25.906346696438625], [89.89786477000925, 25.90037088748505], [89.8764324738049, 25.87908820617017], [89.84311755497468, 25.882881951016227]]]
+ }, "properties": {"name": "SOUTH SALMARA MANCACHAR"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[92.39541667326321, 26.11357133112123], [92.43088081320734, 26.19077981551792], [92.42538181122988, 26.231936424763592], [92.4078213958339, 26.244117664367725], [92.41922692860226, 26.27010466852865], [92.50414099919888, 26.273021781115904], [92.55264064343484, 26.30831432361254], [92.56820441656792, 26.337813588120213], [92.56685060782404, 26.3721386106569], [92.55148873464431, 26.38211419977881], [92.50661033586256, 26.37179028720381], [92.5027670367516, 26.382090082842122], [92.4858874581027, 26.363369655355672], [92.46986573192257, 26.374284487832554], [92.44065932811287, 26.370234861880903], [92.43399919703687, 26.412961443796487], [92.42433100962121, 26.413558794771795], [92.44110808690296, 26.451828246081575], [92.41982686397316, 26.478931953158604], [92.41902918335708, 26.517032224484666], [92.34418479770073, 26.50466860351584], [92.28119441614193, 26.45421100057955], [92.24462781068056, 26.446111464539197], [92.21866421275708, 26.4156822686283], [92.18190126611732, 26.424456784544123], [92.15135755292054, 26.408557725285387], [92.0998517091627, 26.340999337078603], [92.08419016339407, 26.338942381411997], [92.04009623280724, 26.273056166925894], [92.02430467835912, 26.271078355714643], [92.01541851212757, 26.28312152796202], [91.99208257714004, 26.269697719574918], [91.97864382001548, 26.274221626237356], [91.97875164839226, 26.2736878037987], [91.97846599042012, 26.27259738118273], [91.97607374178422, 26.25770851434535], [91.98005007779551, 26.239231048340763], [91.99724100264041, 26.236888538710883], [91.99831931245971, 26.236904704780823], [92.0069726416578, 26.239575076130755], [92.01246747635064, 26.239501351083717], [92.01452421770266, 26.227861778781037], [92.03000195019786, 26.232097923029823], [92.03463278525042, 26.227450112787], [92.05615318013304, 26.22003910450309], [92.05125330055117, 26.209879705042376], [92.05188244374524, 26.207207189849075], [92.06683392338407, 26.196140684333795], [92.07878772312317, 26.188585596775898], [92.08679662878423, 26.18719338218056], [92.09160292008315, 26.189943024024856], [92.07986210371138, 26.177835744981643], [92.09087633393526, 26.176168975012803], [92.09705867626448, 26.174708067701683], [92.11062296756009, 26.173703574719205], [92.11171826182645, 26.17428584601822], [92.12981924832614, 26.180514399932992], [92.13047945526274, 26.17985546490707], [92.13250446093238, 26.17193943877366], [92.14009098683168, 26.16752952915957], [92.14470664933911, 26.164568362915738], [92.14623178207903, 26.163593336507784], [92.15197314413024, 26.16404365509911], [92.15223861875457, 26.165866880970306], [92.1523944063878, 26.168561215743726], [92.16067041801374, 26.165165527150048], [92.16372017864039, 26.162524526767314], [92.16551207329043, 26.15293824241132], [92.16985029291901, 26.097309002597115], [92.16872087614657, 26.096093139729618], [92.16868122181499, 26.095902516866555], [92.17504048374617, 26.081688995957443], [92.18708277023566, 26.06667149911055], [92.27481511100014, 26.06574799513613], [92.30379014382697, 26.086322461210916], [92.32342659369232, 26.086290156685553], [92.32987722147442, 26.076769555963214], [92.35964001931322, 26.091569760360475], [92.3629048779414, 26.07753874296235], [92.39541667326321, 26.11357133112123]]]
+ }, "properties": {"name": "MORIGAON"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[95.26980925824378, 27.681268837812944], [95.28919937748185, 27.663644178977233], [95.31844677231628, 27.587408198249232], [95.3002681552064, 27.584764641822524], [95.28479102637905, 27.567573127121985], [95.2732712647375, 27.574292918310995], [95.28253453923372, 27.54683815427145], [95.26535578656093, 27.544104940274643], [95.26641711462807, 27.509068391343167], [95.22907299483042, 27.498711932698065], [95.22009800947177, 27.44301474580742], [95.25179785893076, 27.434150225587555], [95.24889819960158, 27.40408688844935], [95.29537325408785, 27.4151078013641], [95.30935325784917, 27.389106583658517], [95.34842289937382, 27.393821044010043], [95.36270005505136, 27.382555767768498], [95.39009820678801, 27.391002283793], [95.43934459626513, 27.36421190391803], [95.45405945247158, 27.374866829652618], [95.47389611166098, 27.367214760887727], [95.46571821852191, 27.34262364540432], [95.44834116814005, 27.335314963834108], [95.46750521645536, 27.316802900150897], [95.48072957985758, 27.320795869880783], [95.44593488332782, 27.294373793633145], [95.46053747886987, 27.270406758971017], [95.43986490496927, 27.254976634776263], [95.45106134497378, 27.23124216823596], [95.4672882634328, 27.26360228468032], [95.48417127903595, 27.241345524582417], [95.5036986949854, 27.248626977920882], [95.50871835323227, 27.2619704738971], [95.53442731650193, 27.264683183268573], [95.59886690609115, 27.223003122425354], [95.68143980805556, 27.251836900015874], [95.72011208161092, 27.249572974577625], [95.74201793010718, 27.26675377013701], [95.77948806916619, 27.269846831271206], [95.80079337862365, 27.284362386036392], [95.80506268489349, 27.27304745051587], [95.85921013613539, 27.287316037129266], [95.85633368028998, 27.271154611710372], [95.89233539006644, 27.255379219975207], [95.90425642016226, 27.27401326923254], [95.89711776731416, 27.282258797016983], [95.95994488186673, 27.311045714177705], [95.95495389065715, 27.317772056021514], [95.97546052326689, 27.324554306667018], [95.9651991153871, 27.327975035208524], [95.98910966223774, 27.35659027778418], [96.01765838337678, 27.365013800274607], [95.98320148303826, 27.411929361155757], [95.97012410288116, 27.415002804622635], [95.96926069343404, 27.42798079507118], [95.9546554415737, 27.419714482688523], [95.94121615803638, 27.437387169199056], [95.90788273660625, 27.43444371939195], [95.88563216051801, 27.39824978453013], [95.88312314436989, 27.435413113084905], [95.85704536698057, 27.419975936513207], [95.86005026664024, 27.408108953582225], [95.84441385752989, 27.421679394475518], [95.85322641940031, 27.45700310310753], [95.87060110811132, 27.466746587557243], [95.87420828774479, 27.493341785619968], [95.88676222407743, 27.497176535588828], [95.87574872508222, 27.512517101947893], [95.87655793288005, 27.544377774811156], [95.86065001605989, 27.543199538202785], [95.81424719420733, 27.574343967609323], [95.81571000542608, 27.59876467098003], [95.79055431813319, 27.599742778763265], [95.77843788290348, 27.624073577347897], [95.79569635476955, 27.641827640005268], [95.77034501620442, 27.65779746822602], [95.77504796890629, 27.67441457548925], [95.79037478982367, 27.68023626714822], [95.76777836594428, 27.687083746404532], [95.7652727606993, 27.714749986965156], [95.75217596166073, 27.72101270826514], [95.77929258857384, 27.73380399094473], [95.77591586992986, 27.75371797865387], [95.81656161011207, 27.802782260023534], [95.83798716086697, 27.81032914573135], [95.83767318709874, 27.82421253441565], [95.87032099364279, 27.832763078583575], [95.91546735987377, 27.883855292962263], [95.92500250410086, 27.88177206352783], [95.91541881940738, 27.889481681587263], [95.93766120914844, 27.89829412264022], [95.92974608939969, 27.902836663113145], [95.95260821787213, 27.92018751425934], [95.94821614693721, 27.93720906235514], [95.97165975309642, 27.96254244803744], [95.82379809578279, 27.97156927407285], [95.6051971901679, 27.954710090108588], [95.58603125718709, 27.936818951113384], [95.5685106129037, 27.935997218046886], [95.56346237655266, 27.919356984519677], [95.51451342735098, 27.876484639255192], [95.51526270853617, 27.859320525956488], [95.49326632782558, 27.858115933110863], [95.46697596412427, 27.81798743252978], [95.40501449851884, 27.769456701804774], [95.3916450724696, 27.726736743474326], [95.34664320564195, 27.701185342596016], [95.28554872028693, 27.696556353415374], [95.26980925824378, 27.681268837812944]]]
+ }, "properties": {"name": "TINSUKIA"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[94.9238390797463, 26.946593718510627], [94.93075954079502, 26.932656062305764], [94.96114667943442, 26.93722086613495], [94.98252600378311, 26.913095293566144], [95.01667161721443, 26.92115992762176], [95.1017198970128, 26.961884688208634], [95.11186536922035, 26.980757510874767], [95.19296733200927, 27.036024743908317], [95.21059784654015, 27.028632621103966], [95.23213667305573, 27.04284995900221], [95.24634302711584, 27.023901567453834], [95.27703379811791, 27.0424730514726], [95.29173676242665, 27.066583773280048], [95.36876473245142, 27.10768956454085], [95.35820866188708, 27.166689192664176], [95.34237293907306, 27.183193075149145], [95.28725758096033, 27.197203435952343], [95.2576991291874, 27.18405079432092], [95.25452598944804, 27.193091020119383], [95.23706334129767, 27.189679340979893], [95.23841550612458, 27.17010819529617], [95.21977516484012, 27.165050225815996], [95.21111043781768, 27.174197910303494], [95.1949032391758, 27.15512427448684], [95.1835276670188, 27.16301263883305], [95.17994025660978, 27.141972905826236], [95.1703686686299, 27.144927530671357], [95.16207053599011, 27.127773908517803], [95.15427637169941, 27.136150784723903], [95.1531837202766, 27.124125514813173], [95.13595897296292, 27.138545054951653], [95.12388462290598, 27.130202218346568], [95.1162237820782, 27.136022974434958], [95.11515513902965, 27.12711543589808], [95.11270849291171, 27.136306953132014], [95.06513924279871, 27.135586576775545], [95.04887642406769, 27.15533396923835], [94.9783304384183, 27.147992561034645], [94.98443906858857, 27.168470251270012], [94.96785022878308, 27.226941715417777], [94.88947481457818, 27.16020071852681], [94.83683442197271, 27.09187467348861], [94.82494318360494, 27.05713099129173], [94.82986333097625, 27.01636294554144], [94.80950669096781, 26.99159010705503], [94.7871332720611, 26.996830487641482], [94.73373862789194, 26.932608434550417], [94.75674621966, 26.922622658406283], [94.84804868006088, 26.92922184608042], [94.90975081372187, 26.969523861269042], [94.90055027756507, 26.983726744913323], [94.9266378591674, 26.993258479899996], [94.93896283829031, 26.98728601444868], [94.94182672400994, 26.95943752303409], [94.9238390797463, 26.946593718510627]]]
+ }, "properties": {"name": "CHARAIDEO"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[93.77663052004172, 25.968750732558565], [93.79601558445965, 25.903490411551804], [93.77772095981227, 25.842514354311323], [93.79537854327761, 25.809027454947245], [93.83960692830628, 25.856709549576806], [93.88170556320485, 25.84344900498853], [93.91589979615429, 25.88380080392323], [93.93388186906654, 25.88534707021669], [93.97859914961217, 25.91682877734492], [93.96861078915458, 25.95735527054461], [93.95405637475278, 25.96936005071925], [93.9529059472842, 26.00306519138244], [93.96237553425847, 26.036637740764128], [93.98729353541204, 26.06688547321092], [93.98144043551589, 26.081341026313698], [93.99783719215745, 26.1096561744188], [93.98666455481303, 26.11400292836577], [93.99772811602072, 26.12886905912778], [93.98714622428184, 26.131179432145306], [94.00207970347901, 26.134529527894138], [94.00098547820782, 26.172366297419195], [94.0319399119323, 26.197635515039405], [94.04759460175869, 26.249463403460343], [94.07453087031895, 26.2644785104351], [94.07463389720057, 26.283694200130597], [94.08400357714221, 26.283440490864844], [94.10395074977276, 26.318952170290455], [94.1215900013181, 26.317858650503435], [94.11583819006351, 26.329787946076408], [94.17776153116826, 26.346181160125333], [94.16121715886763, 26.347724559608086], [94.13327169776436, 26.3515838883088], [94.11469682030793, 26.41504053889828], [94.1270078674591, 26.45057213930442], [94.09968736429896, 26.470376108618936], [94.09729572292419, 26.49500261204592], [94.1164040918616, 26.54485845321543], [94.10574119184703, 26.549740366186146], [94.11474264247224, 26.55494905814628], [94.09957904184876, 26.576717087363154], [94.07805885088374, 26.574392157628534], [94.08249683561108, 26.584867798842716], [94.06887520754584, 26.59428582570983], [94.09784844643706, 26.641863529149386], [94.08238963246174, 26.66155808550589], [94.05665801457891, 26.663037413577378], [94.05386079912473, 26.679033755630112], [94.04339576472962, 26.68102734420933], [94.03592931034612, 26.709728393473263], [94.04617553310433, 26.738557164756305], [94.00472525995706, 26.74434972377262], [93.99750263259618, 26.76619292438881], [93.97197181423053, 26.76822391813844], [93.98750955149177, 26.786565511647503], [93.97329854056525, 26.796138527150152], [93.9801609982944, 26.81064627763084], [94.00838322494683, 26.83395920996385], [93.99960027603971, 26.866740052392124], [93.9733515887777, 26.873313867255625], [93.9567249864926, 26.892124049323108], [93.96739678881163, 26.907022573508712], [93.96231430958031, 26.926806579749265], [93.92045334195645, 26.926747755789183], [93.91770748857692, 26.908689204478254], [93.89171680734597, 26.892187694346248], [93.89184813115905, 26.865369147034286], [93.83517210654699, 26.850964920163175], [93.82388372217653, 26.82519408832212], [93.80017030342847, 26.821799177815933], [93.76995155488743, 26.84477657908691], [93.75098469755675, 26.803578812066394], [93.7124091123704, 26.81601483130378], [93.68937870968232, 26.797502803898166], [93.67035699223722, 26.800908289148364], [93.6487205161553, 26.788061512697112], [93.64920114717165, 26.757555645614794], [93.67054101751305, 26.711986471215774], [93.65094777930781, 26.70612042278179], [93.57489063567857, 26.7192327849986], [93.53770654715547, 26.750461036564058], [93.47496700486842, 26.756957796675685], [93.37211346306357, 26.745780548926074], [93.34521107087097, 26.73162115994783], [93.33093646191726, 26.708747052118653], [93.30395902716079, 26.700333453358997], [93.31795796201841, 26.655672561825934], [93.30936870336134, 26.639373218534537], [93.28693855674273, 26.637402686932603], [93.29768419967978, 26.576553817134887], [93.3259673509731, 26.58478406763101], [93.40278075120577, 26.580105179082082], [93.39743360044396, 26.57145047703241], [93.4087098764227, 26.569142153750015], [93.45687806387836, 26.575963862758947], [93.4647154110831, 26.58590086917127], [93.45534440792304, 26.57193027240251], [93.46372861803171, 26.569316893314078], [93.49163517310002, 26.587036517835926], [93.46983991350344, 26.591561087237757], [93.47798216059368, 26.60313068959341], [93.49550060400465, 26.61110906127035], [93.50949554135927, 26.593439430382695], [93.52368743254331, 26.593602273287857], [93.55330956588675, 26.612577899181442], [93.58604435540141, 26.603575082575723], [93.58303262046073, 26.580015628773086], [93.58975599832266, 26.57072870452798], [93.61178850478244, 26.577323942825476], [93.61078919550417, 26.566731747058263], [93.62189165645862, 26.590252853436994], [93.66588281348874, 26.604660735005044], [93.71165709222184, 26.605754731934717], [93.74010383301659, 26.583540461256117], [93.7522205045032, 26.585105731428147], [93.73154560306773, 26.53783448141811], [93.75598025759783, 26.528994002681], [93.7512765035987, 26.51825237313087], [93.79441040553972, 26.44015635572339], [93.78307722218601, 26.43866480504371], [93.79389196712798, 26.428499205803444], [93.78061465702294, 26.41490276201205], [93.79909234125721, 26.40877609313288], [93.77481203885249, 26.383940190870348], [93.79397274363835, 26.375860512226797], [93.82672785124814, 26.41775514974503], [93.8655876642887, 26.388880087633616], [93.88386722239214, 26.391993946251993], [93.88111984008, 26.372516204478814], [93.89416078546753, 26.371829106472166], [93.8813883033993, 26.345582897147125], [93.89380489540984, 26.315475728093784], [93.88363981208131, 26.319231556779343], [93.88503113267485, 26.310566525109262], [93.87380954882552, 26.309750026034845], [93.88506533962257, 26.30252884228183], [93.86853240197719, 26.294428307829026], [93.88108263365758, 26.273618869829683], [93.87081067326815, 26.275541534498696], [93.8647719688579, 26.2458357943774], [93.84770860927493, 26.24131013249029], [93.864593388271, 26.23530903523599], [93.8515037191608, 26.2156454214001], [93.8404565899363, 26.217774348941784], [93.83794918087422, 26.194495768920607], [93.8290631116607, 26.19631992581125], [93.83512402601804, 26.17592812191909], [93.82156172089752, 26.17250894446965], [93.83114962767283, 26.136811684689267], [93.81832628299321, 26.136968430951327], [93.82800674139561, 26.127736354179387], [93.8064542020972, 26.102481159889937], [93.81415234906045, 26.09077930215732], [93.8048820730949, 26.093563552081417], [93.80585380319562, 26.071325582190244], [93.79661801445211, 26.071177650556447], [93.80530301734882, 26.06455181126005], [93.78706692692536, 26.0543330981142], [93.79500555019521, 26.041612811927465], [93.78007248601972, 26.03960199957753], [93.79962753145236, 26.031279548218574], [93.7811479158402, 26.00788685399276], [93.8007960518891, 26.00214255176477], [93.79472462364969, 25.992300594655124], [93.80449414821587, 25.98073839308272], [93.78067542356034, 25.981424437812887], [93.77663052004172, 25.968750732558565]]]
+ }, "properties": {"name": "GOLAGHAT"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[94.26817903602993, 27.520937848706446], [94.27768416574678, 27.46659951388999], [94.30592826907129, 27.438225072574546], [94.3080975612436, 27.41260543653349], [94.29257067563098, 27.38379522931141], [94.26378245914557, 27.400213736622117], [94.24711351926113, 27.39187432528246], [94.2989719921922, 27.350385141642807], [94.30694433282792, 27.31905106890498], [94.32734420156446, 27.31833738565305], [94.3394581008501, 27.33678283522034], [94.39007518200854, 27.350569741866952], [94.40608646796844, 27.33080039376044], [94.42678365840275, 27.3378562537404], [94.44394735171814, 27.308591524476793], [94.46045977992726, 27.332191634578766], [94.49822622468943, 27.32992443154455], [94.51304751059583, 27.349206182065654], [94.53681921473446, 27.347621215206328], [94.59238638051934, 27.377717307584746], [94.59322010962948, 27.35835730683388], [94.62047959023236, 27.36261129697701], [94.62204758339112, 27.33295766586348], [94.63822059754318, 27.321360748335156], [94.638554979238, 27.338086601748635], [94.66645017241463, 27.352499161592252], [94.66289612723186, 27.374507204401105], [94.69087610250668, 27.39334925847513], [94.69326037589948, 27.421582247034213], [94.71884598431093, 27.427329967523814], [94.73173223980652, 27.443131386513027], [94.74628651586775, 27.43752977088928], [94.77112576980518, 27.48236904013215], [94.79322477944373, 27.482686450911007], [94.89446742814513, 27.578870857412646], [94.95586377258846, 27.61411646799926], [94.99652408703783, 27.659170022956566], [95.01679285025192, 27.656395293781785], [95.03609325833578, 27.668474794175946], [95.09304997682972, 27.660299959337816], [95.11786093473401, 27.6857225770053], [95.19573352863672, 27.704740754013333], [95.18886937758325, 27.67636103110676], [95.2048146337765, 27.658122848229826], [95.24651666607039, 27.656626361451707], [95.26980925824378, 27.681268837812944], [95.28554872028693, 27.696556353415374], [95.34664320564195, 27.701185342596016], [95.3916450724696, 27.726736743474326], [95.40501449851884, 27.769456701804774], [95.46697596412427, 27.81798743252978], [95.49326632782558, 27.858115933110863], [95.51526270853617, 27.859320525956488], [95.51451342735098, 27.876484639255192], [95.37949599875067, 27.83927412788133], [95.30868061643241, 27.86810607324964], [95.24895679670756, 27.850157103860614], [94.85226768157314, 27.727699480541116], [94.84089199802501, 27.700705841712026], [94.79364942745158, 27.69527644537137], [94.75422881324711, 27.66064460729414], [94.7250611304194, 27.66909994810298], [94.70896177183243, 27.65667553437244], [94.68783277561407, 27.66523806449317], [94.68259975670745, 27.64599012733084], [94.6625737164865, 27.64542297630706], [94.63311208693152, 27.624256917871843], [94.58747211262158, 27.618553116224074], [94.49888166247021, 27.572264965521974], [94.47772734543895, 27.576238195907003], [94.46165456889953, 27.55533907356858], [94.43160584808558, 27.600429527043932], [94.36672579564792, 27.57436974228037], [94.29818502398584, 27.602029068502297], [94.27756536983864, 27.589426856878767], [94.25418353992322, 27.614327527902955], [94.26733374290716, 27.629583701065258], [94.25138323067117, 27.637731567510656], [94.20910029201903, 27.60732237052617], [94.22656695294376, 27.597837892962733], [94.22487691826376, 27.574191421628893], [94.25862431122461, 27.555554878559345], [94.26817903602993, 27.520937848706446]]]
+ }, "properties": {"name": "DHEMAJI"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[93.330200771344, 25.54240903178491], [93.34235533915917, 25.559865723904615], [93.35862160742089, 25.55473211667993], [93.42728431639962, 25.63263422874869], [93.44427681327971, 25.639711565985937], [93.46080121154003, 25.6324106410856], [93.4572176926328, 25.64123637578275], [93.49645800148501, 25.6546333713639], [93.52239857648607, 25.69767319647131], [93.5273801515548, 25.69128568636549], [93.54107315615926, 25.698944251321734], [93.54235670586814, 25.731039473128018], [93.56141760692758, 25.737868585262866], [93.56784128345454, 25.758533830704042], [93.57765627624885, 25.75459265200562], [93.61732654844042, 25.776087903725298], [93.62460467371953, 25.802662486061923], [93.64604218644074, 25.822479089600325], [93.66819818789587, 25.82192759477428], [93.68820289223049, 25.846048172308677], [93.7142274058117, 25.84461278135233], [93.70198255910707, 25.851642450273506], [93.68143590026322, 25.904485757041634], [93.75121958274902, 25.932908083778138], [93.74528813898034, 25.942878308178685], [93.76745550322548, 25.95061271300328], [93.76445345751347, 25.968979173532396], [93.77663052004172, 25.968750732558565], [93.78067542356034, 25.981424437812887], [93.80449414821587, 25.98073839308272], [93.79472462364969, 25.992300594655124], [93.8007960518891, 26.00214255176477], [93.7811479158402, 26.00788685399276], [93.79962753145236, 26.031279548218574], [93.78007248601972, 26.03960199957753], [93.79500555019521, 26.041612811927465], [93.78706692692536, 26.0543330981142], [93.80530301734882, 26.06455181126005], [93.79661801445211, 26.071177650556447], [93.80585380319562, 26.071325582190244], [93.8048820730949, 26.093563552081417], [93.81415234906045, 26.09077930215732], [93.8064542020972, 26.102481159889937], [93.82800674139561, 26.127736354179387], [93.81832628299321, 26.136968430951327], [93.83114962767283, 26.136811684689267], [93.82156172089752, 26.17250894446965], [93.83512402601804, 26.17592812191909], [93.8290631116607, 26.19631992581125], [93.83794918087422, 26.194495768920607], [93.8404565899363, 26.217774348941784], [93.8515037191608, 26.2156454214001], [93.864593388271, 26.23530903523599], [93.84770860927493, 26.24131013249029], [93.8647719688579, 26.2458357943774], [93.87081067326815, 26.275541534498696], [93.88108263365758, 26.273618869829683], [93.86853240197719, 26.294428307829026], [93.88506533962257, 26.30252884228183], [93.87380954882552, 26.309750026034845], [93.88503113267485, 26.310566525109262], [93.88363981208131, 26.319231556779343], [93.89380489540984, 26.315475728093784], [93.8813883033993, 26.345582897147125], [93.89416078546753, 26.371829106472166], [93.88111984008, 26.372516204478814], [93.88386722239214, 26.391993946251993], [93.8655876642887, 26.388880087633616], [93.82672785124814, 26.41775514974503], [93.79397274363835, 26.375860512226797], [93.77481203885249, 26.383940190870348], [93.79909234125721, 26.40877609313288], [93.78061465702294, 26.41490276201205], [93.79389196712798, 26.428499205803444], [93.78307722218601, 26.43866480504371], [93.79441040553972, 26.44015635572339], [93.7512765035987, 26.51825237313087], [93.75598025759783, 26.528994002681], [93.73154560306773, 26.53783448141811], [93.7522205045032, 26.585105731428147], [93.74010383301659, 26.583540461256117], [93.71165709222184, 26.605754731934717], [93.66588281348874, 26.604660735005044], [93.62189165645862, 26.590252853436994], [93.61078919550417, 26.566731747058263], [93.61178850478244, 26.577323942825476], [93.58975599832266, 26.57072870452798], [93.58303262046073, 26.580015628773086], [93.58604435540141, 26.603575082575723], [93.55330956588675, 26.612577899181442], [93.52368743254331, 26.593602273287857], [93.50949554135927, 26.593439430382695], [93.49550060400465, 26.61110906127035], [93.47798216059368, 26.60313068959341], [93.46983991350344, 26.591561087237757], [93.49163517310002, 26.587036517835926], [93.46372861803171, 26.569316893314078], [93.45534440792304, 26.57193027240251], [93.4647154110831, 26.58590086917127], [93.45687806387836, 26.575963862758947], [93.4087098764227, 26.569142153750015], [93.39743360044396, 26.57145047703241], [93.40278075120577, 26.580105179082082], [93.3259673509731, 26.58478406763101], [93.29768419967978, 26.576553817134887], [93.25120127505333, 26.56988730601932], [93.23489877144802, 26.553631036675505], [93.25649477483312, 26.5510687711873], [93.24708311122835, 26.544900715538777], [93.26268938455588, 26.53781052888381], [93.25655927387052, 26.531911854512874], [93.27353023633664, 26.54515197875278], [93.26394852703847, 26.5273463172613], [93.28783821860146, 26.520616085124402], [93.29148153296725, 26.504471204761742], [93.28423708013824, 26.51972029422467], [93.26339414793055, 26.508852206694016], [93.26342268830544, 26.521068459862956], [93.23334527709795, 26.535654921767613], [93.21298611641681, 26.529581206519904], [93.21734254130294, 26.507384350066967], [93.20427186347614, 26.501322362151395], [93.2097891398814, 26.514722432807503], [93.1994731521616, 26.53340237537155], [93.16096942501142, 26.523967450264145], [93.20971494353054, 26.556087211358495], [93.19132542894137, 26.567009034833454], [93.15088656448088, 26.546317367894932], [93.1415352604767, 26.555520502603233], [93.11585983401154, 26.53052906419971], [93.08909561528607, 26.54458257766172], [93.04312161411582, 26.535172446165014], [93.0483152904063, 26.52588792409739], [93.01216347573916, 26.506558046897005], [93.00868327297108, 26.48114001273121], [93.0903531425978, 26.499938358516463], [93.06451340618233, 26.47931053858386], [93.1024878522553, 26.460046928713023], [93.10816257099054, 26.466907274711687], [93.09818324668638, 26.47291694775358], [93.12454396733908, 26.483014646313674], [93.12528644558262, 26.49570936462623], [93.12741742550637, 26.4802933555869], [93.13628889889311, 26.484286819204076], [93.11043358119909, 26.470987153948215], [93.12840448356076, 26.4640875938506], [93.10392862869847, 26.448800964846345], [93.11837230687685, 26.441802819156653], [93.06889660266054, 26.435271032616917], [93.09168008901975, 26.433499971213582], [93.06119232559381, 26.415835198544656], [93.04962471788355, 26.416046210570517], [93.05602293166378, 26.428198249406307], [93.04365613865933, 26.437190537906545], [93.01931370787125, 26.420440802674594], [92.97854056322554, 26.420500130506277], [92.94974579442847, 26.397583503350535], [92.93816356663699, 26.403798960117786], [92.92063372180844, 26.391643343433174], [92.90188538865377, 26.401364456139465], [92.88204405283504, 26.379975591854983], [92.89887040091345, 26.386991370112074], [92.8898994157528, 26.37412165438238], [92.90316412878262, 26.38542905973693], [92.92579913350681, 26.3789240884277], [92.90919673722536, 26.352947989243624], [92.93957360812104, 26.353070210174938], [92.94312438163952, 26.32714412745945], [92.89860974754725, 26.30893202985572], [92.89227496291092, 26.28838396584624], [92.87973444201873, 26.283664360159666], [92.8440138618071, 26.305048290524795], [92.84159190678308, 26.28377346755019], [92.81389821470785, 26.262494654571203], [92.81505900244663, 26.23298038920477], [92.82706184211538, 26.22505085737657], [92.81515345221392, 26.21398955826664], [92.79362086898956, 26.21944881206463], [92.8019765441132, 26.201766714872598], [92.93942737766415, 26.202505870038042], [92.95604146821394, 26.17427276786018], [92.93125238159188, 26.151227396637946], [92.93404503180783, 26.13656776562234], [92.95461763759032, 26.140696302374387], [93.03589934518277, 26.108521470675257], [93.03995822199563, 26.08740702722501], [93.05949896085905, 26.079645523323162], [93.10842481167985, 26.078156386544723], [93.09340379075995, 26.033063076014717], [93.12720343961915, 26.031035535841486], [93.15825115889427, 25.995305296825794], [93.15860019750129, 25.96159685122479], [93.1735289596449, 25.95244877473167], [93.18302660459878, 25.903289293488807], [93.23922683113068, 25.85104153189256], [93.24740091002305, 25.807877520869848], [93.24524788544225, 25.779154542848612], [93.22711653588597, 25.765432678029786], [93.22649619797832, 25.72676440983884], [93.14263543528998, 25.718501852531986], [93.13595693995461, 25.67007279736087], [93.14285307193052, 25.66074738769586], [93.1706813019909, 25.661761274962053], [93.19193865758187, 25.63207740790885], [93.17658152840514, 25.592758328704907], [93.20762432850576, 25.544152225675845], [93.25906190838687, 25.548711647090077], [93.27168406368047, 25.53115918958166], [93.29396154790474, 25.54425768972752], [93.30188016209998, 25.530247502628246], [93.330200771344, 25.54240903178491]]]
+ }, "properties": {"name": "KARBI ANGLONG"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[89.88309423442489, 26.309784372772576], [89.86607949076677, 26.257986148744106], [89.87421331525289, 26.247362373077088], [89.85871652320232, 26.23831324486291], [89.86972215834552, 26.234130831161014], [89.85997493984618, 26.219960182020337], [89.87303947589135, 26.202130569995308], [89.86004851186793, 26.188079123105428], [89.87533682111076, 26.18908659968641], [89.87011860194842, 26.14713840983341], [89.908575209767, 26.13249643546632], [89.9161602444629, 26.116355369941694], [89.90092039124484, 26.117324522913997], [89.91333644336788, 26.11225671986655], [89.93563814257895, 26.116898796237095], [89.93824528979037, 26.13288843214826], [89.9669260102756, 26.127012286069643], [89.98207691321258, 26.136585465794152], [90.025032981965, 26.12679198342518], [90.06381946283396, 26.172656971991803], [90.1521083251883, 26.20899935898451], [90.14739501311455, 26.220042277261047], [90.13632763496523, 26.215521730677985], [90.12034757803787, 26.250463205536484], [90.1040085848657, 26.25116206848388], [90.09743214623144, 26.262275449888133], [90.11752692913117, 26.25856922538586], [90.14053632112307, 26.276197147838243], [90.14089660843405, 26.293255519637295], [90.12607276412575, 26.283192920139935], [90.12434143389216, 26.303817869697955], [90.10772758588743, 26.31251227069738], [90.12787403898402, 26.34624047861621], [90.18790091255647, 26.3456525748148], [90.20665248323942, 26.374812829592162], [90.2267162302444, 26.385087821811844], [90.23427900019603, 26.365515441808014], [90.21479262467865, 26.351665692428938], [90.22783070084714, 26.349392639451143], [90.21598138326044, 26.3287283359232], [90.26729253694337, 26.330575196592513], [90.2646286925628, 26.312974567217573], [90.28105947199742, 26.29220877072932], [90.27223358990797, 26.26733462284862], [90.25866855211234, 26.27298353687872], [90.25150768841884, 26.264428780726238], [90.28800679985967, 26.25213083482461], [90.287306216346, 26.23742896349691], [90.30658227289915, 26.24585231774085], [90.30345817937771, 26.2575012335087], [90.3207480806006, 26.2788376237012], [90.34404654685767, 26.270734747456032], [90.3519116367333, 26.287159425707035], [90.36283862706834, 26.273120032128986], [90.35543194209228, 26.258238587604858], [90.38122682293066, 26.26866595713836], [90.37929002104212, 26.309311515387744], [90.40496211026598, 26.320798402629894], [90.39519840588453, 26.3593704870109], [90.42500503701764, 26.363027777589576], [90.43730823468984, 26.364875631331227], [90.42643693990242, 26.36743630717463], [90.43364839132282, 26.376608963935947], [90.4208927311066, 26.37960779236239], [90.42811905144161, 26.385887335828365], [90.42577317743394, 26.396077434706875], [90.41645349592437, 26.390726238835658], [90.41695433633966, 26.407764877299254], [90.40359884765206, 26.406701879189658], [90.41563516932808, 26.429081511509782], [90.39778639742084, 26.43454730537864], [90.40393125215496, 26.442142769710344], [90.40508978512236, 26.475280377279084], [90.38628568904645, 26.48525503097692], [90.39360681398327, 26.493849916094614], [90.40915257319998, 26.489934421633475], [90.40791065860789, 26.50313398168062], [90.3932748828925, 26.503173071860417], [90.40363991952515, 26.51177970378985], [90.38223846068789, 26.52892865858709], [90.38875244125705, 26.542004656815827], [90.37137578972717, 26.544397169269857], [90.35501713423007, 26.56996083555662], [90.36639207576975, 26.582127001206654], [90.34693539675904, 26.641460283182052], [90.37705506920908, 26.717601094606092], [90.33952667979382, 26.825862089369792], [90.33640989316888, 26.869001098144373], [90.29993683107465, 26.848385485048134], [90.23076915302357, 26.858801564527898], [90.20118819036794, 26.83539323417634], [90.18768792110431, 26.807114888973747], [90.19466618604662, 26.773712364326467], [90.12789904358992, 26.75024232458383], [90.04920523770227, 26.730401919836208], [89.96668047286069, 26.723496730839187], [89.85880539173675, 26.734879529444058], [89.86523554691354, 26.70469898240578], [89.85183119077276, 26.697153768820364], [89.86642207497844, 26.645637077741647], [89.8497834379635, 26.62311577406967], [89.86953041204983, 26.613985956320573], [89.874198263082, 26.584009788207325], [89.85755182060554, 26.575965956422166], [89.84977976475228, 26.490853739816007], [89.86954860383264, 26.46394135204016], [89.84781004230352, 26.42288171316429], [89.85632872751526, 26.41300991256554], [89.83453898986274, 26.413903781339272], [89.82892130067331, 26.404051567215134], [89.83092517078099, 26.39135480786081], [89.84624690543721, 26.404753595957505], [89.85516203515013, 26.396636009062043], [89.85635842671687, 26.384252381028283], [89.84121245463253, 26.37938393791035], [89.84218848586681, 26.377824548220094], [89.84424948972486, 26.374574530801137], [89.84914104821225, 26.36898146328194], [89.8527448061628, 26.367676336639637], [89.85628559670351, 26.368043872290656], [89.85965257491488, 26.369152509385177], [89.86208168142693, 26.368129968318634], [89.86440562127031, 26.364396675029568], [89.8664952939623, 26.362357802026743], [89.86978195739738, 26.363923255142893], [89.87267526294256, 26.364400951354853], [89.87567824559743, 26.362820329301204], [89.8761227212202, 26.358620024057974], [89.87639536440054, 26.355466433167617], [89.8692450253689, 26.349597832922512], [89.8748697663333, 26.34799056528616], [89.87712183107249, 26.34767421838891], [89.8867322325608, 26.34324134729898], [89.88770391684744, 26.342949800018566], [89.8877905243223, 26.342923812878514], [89.88952252380079, 26.34240399720366], [89.90493234455884, 26.33471106503802], [89.90471986604469, 26.331992492148043], [89.90196734716575, 26.32555405676386], [89.89917077760025, 26.324258030368657], [89.89538568033655, 26.321567360241588], [89.89320745980866, 26.318539538934804], [89.89222967506292, 26.317579172935776], [89.89144784432169, 26.31279966390493], [89.89009135500501, 26.312564818266317], [89.89009805913199, 26.31344008202432], [89.88954686006016, 26.314471080627303], [89.88712826743024, 26.314282973026536], [89.88593291162098, 26.31080305294407], [89.88309423442489, 26.309784372772576]]]
+ }, "properties": {"name": "KOKRAJHAR"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[90.7515285859575, 26.309637804985915], [90.80291266757015, 26.305669616229558], [90.78947424192394, 26.329405053517593], [90.79933143307869, 26.334681723668222], [90.80499870298357, 26.344892958377887], [90.8179218828306, 26.366867802063442], [90.82946186644753, 26.36307198370244], [90.850805002165, 26.361032777449694], [90.86174668534483, 26.370691896826624], [90.86197389533132, 26.37288970857902], [90.85767777704521, 26.381230120193077], [90.844790491182, 26.401742907087367], [90.86164073983684, 26.43107488957362], [90.8556810395609, 26.439057553347237], [90.79923194915257, 26.430387379117246], [90.80236229943999, 26.44060113626923], [90.82416636252636, 26.444352594374656], [90.82602853507603, 26.44639759339133], [90.82749756712813, 26.4512494976169], [90.8269189424907, 26.453731404848266], [90.82411098767729, 26.45491378793094], [90.8186569921939, 26.474456081974655], [90.8107370565769, 26.475996157309712], [90.80794558944221, 26.47711410726391], [90.80383266728691, 26.48780759289638], [90.8060427429731, 26.49439748692459], [90.81405859530624, 26.498481591770215], [90.82375903763044, 26.490683506148965], [90.82733853927172, 26.502044548896738], [90.84813034925492, 26.50627685399926], [90.85098190380064, 26.518606448901377], [90.85160956746944, 26.527335785831806], [90.78758576310948, 26.517570959477027], [90.77468778010785, 26.53054145112441], [90.75752585377866, 26.514697334010762], [90.77747231943508, 26.504853101760048], [90.76634571625739, 26.485550353949662], [90.73107751863965, 26.482910427457707], [90.74478548738017, 26.46563285415184], [90.73573475158517, 26.44185577045094], [90.71015729448662, 26.45161423608899], [90.71704283173204, 26.479221355052957], [90.68568284369113, 26.481808937478053], [90.68233874467171, 26.499085327084046], [90.62083919907361, 26.493604289032724], [90.62360756872573, 26.507783600360348], [90.60116958340795, 26.516361403548338], [90.5889509585265, 26.51161881213758], [90.6018753133699, 26.491418772376576], [90.58994546002131, 26.489854266464747], [90.51963781628143, 26.50925623570714], [90.49824623531902, 26.459484108050635], [90.5097954724817, 26.448917424525746], [90.50416352433379, 26.42627447718995], [90.4809320822784, 26.420607989851636], [90.47664690008251, 26.385622712965787], [90.4562595691324, 26.432692200869578], [90.47712769998216, 26.462641551238285], [90.46323320595441, 26.46470366411613], [90.4598252663627, 26.453020032026473], [90.4372289332132, 26.46107583763538], [90.40393125215496, 26.442142769710344], [90.39778639742084, 26.43454730537864], [90.41563516932808, 26.429081511509782], [90.40359884765206, 26.406701879189658], [90.41695433633966, 26.407764877299254], [90.41645349592437, 26.390726238835658], [90.42577317743394, 26.396077434706875], [90.42811905144161, 26.385887335828365], [90.4208927311066, 26.37960779236239], [90.43364839132282, 26.376608963935947], [90.42643693990242, 26.36743630717463], [90.43730823468984, 26.364875631331227], [90.42500503701764, 26.363027777589576], [90.435998073289, 26.342319867233563], [90.43633375574437, 26.359157781692865], [90.44416114422583, 26.360416665199978], [90.44521205003907, 26.345948124224854], [90.45709275116853, 26.35747532017717], [90.45395322908209, 26.34091839405764], [90.46241825702359, 26.328268480634826], [90.47415185094043, 26.33260554262929], [90.46584855298772, 26.325268179899723], [90.48359218068424, 26.29605665416124], [90.46390913251015, 26.289772779164355], [90.4659958398634, 26.276213078872622], [90.45523717674462, 26.285225040429], [90.45864632996023, 26.27223387382261], [90.47319509845046, 26.27076198405535], [90.44487270425398, 26.26748753949984], [90.45032461205264, 26.250799052346597], [90.43032454841479, 26.258678147713315], [90.4410745077568, 26.2350482679932], [90.39016840623206, 26.204024512697917], [90.39114440782197, 26.191478362411857], [90.44842997708352, 26.184041460125627], [90.43820079267128, 26.17407248772279], [90.44477461630977, 26.165723097838757], [90.47002429792411, 26.17822980068723], [90.46927861538991, 26.168240320321118], [90.51685902168047, 26.19839079047283], [90.57732363800267, 26.203515276311226], [90.60019119858761, 26.2151788188422], [90.62240898077812, 26.202049451089223], [90.65417593618545, 26.21131734376659], [90.66893873997022, 26.201362718442343], [90.6700693056879, 26.201395574689442], [90.66661312656547, 26.214652546569997], [90.66530165542093, 26.21816125742957], [90.65333356977386, 26.237371158947845], [90.68221954991161, 26.25731169294479], [90.7028497287207, 26.25592413545304], [90.72368807502886, 26.257802742965264], [90.73330289263515, 26.257781267540906], [90.7311411678708, 26.2683508814741], [90.72019273924151, 26.26843536320567], [90.72048447701151, 26.281832057832354], [90.72036408210218, 26.282487066983975], [90.74707366978366, 26.30344887780448], [90.74906039105252, 26.30449289272252], [90.7515285859575, 26.309637804985915]]]
+ }, "properties": {"name": "BONGAIGAON"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[92.39541667326321, 26.11357133112123], [92.41444685732985, 26.115570263311778], [92.44145000186977, 26.095549160916843], [92.47887148457971, 26.128910329986663], [92.4866457466953, 26.149357882042228], [92.50877420939706, 26.1412219450042], [92.52150287523897, 26.155349110201392], [92.52891254621504, 26.15082757451478], [92.51967414517068, 26.102382070301108], [92.5363984491244, 26.09641338153563], [92.54769035668744, 26.110694876446065], [92.57247240321263, 26.11579221564628], [92.57462554098116, 26.09479793028828], [92.59570107216875, 26.08070921439451], [92.57951143289571, 26.03322679077456], [92.59444543760729, 26.023558954832037], [92.56696795025803, 26.011613285394], [92.5459915499587, 25.97151281479489], [92.5656136330677, 25.96162465586901], [92.58874326905196, 25.963961090752257], [92.59593944372266, 25.978034808507164], [92.65553454654537, 26.000194097525032], [92.65442025021581, 26.01954748114005], [92.66689166730643, 26.0283263242579], [92.71332045047073, 26.018006266160814], [92.71736865170476, 26.058242908258293], [92.75359088530705, 26.056450727357706], [92.75092707236749, 26.075492192249232], [92.73238996637377, 26.071333270424457], [92.73922409662877, 26.08573121840641], [92.72988990373409, 26.089508545607103], [92.74118335729771, 26.100979178137088], [92.72302946092614, 26.100853276404393], [92.73207771018437, 26.11532821719194], [92.7038154950271, 26.12517961350845], [92.7058733466968, 26.1422290877836], [92.72254578551929, 26.15087842846593], [92.75142793434235, 26.141981693065357], [92.76171272626729, 26.157100730696293], [92.75554892875881, 26.18058548833707], [92.77845175810009, 26.186898781016765], [92.7763093848436, 26.199574876963712], [92.8019765441132, 26.201766714872598], [92.79362086898956, 26.21944881206463], [92.81515345221392, 26.21398955826664], [92.82706184211538, 26.22505085737657], [92.81505900244663, 26.23298038920477], [92.81389821470785, 26.262494654571203], [92.84159190678308, 26.28377346755019], [92.8440138618071, 26.305048290524795], [92.87973444201873, 26.283664360159666], [92.89227496291092, 26.28838396584624], [92.89860974754725, 26.30893202985572], [92.94312438163952, 26.32714412745945], [92.93957360812104, 26.353070210174938], [92.90919673722536, 26.352947989243624], [92.92579913350681, 26.3789240884277], [92.90316412878262, 26.38542905973693], [92.8898994157528, 26.37412165438238], [92.89887040091345, 26.386991370112074], [92.88204405283504, 26.379975591854983], [92.90188538865377, 26.401364456139465], [92.92063372180844, 26.391643343433174], [92.93816356663699, 26.403798960117786], [92.94974579442847, 26.397583503350535], [92.97854056322554, 26.420500130506277], [93.01931370787125, 26.420440802674594], [93.04365613865933, 26.437190537906545], [93.05602293166378, 26.428198249406307], [93.04962471788355, 26.416046210570517], [93.06119232559381, 26.415835198544656], [93.09168008901975, 26.433499971213582], [93.06889660266054, 26.435271032616917], [93.11837230687685, 26.441802819156653], [93.10392862869847, 26.448800964846345], [93.12840448356076, 26.4640875938506], [93.11043358119909, 26.470987153948215], [93.13628889889311, 26.484286819204076], [93.12741742550637, 26.4802933555869], [93.12528644558262, 26.49570936462623], [93.12454396733908, 26.483014646313674], [93.09818324668638, 26.47291694775358], [93.10816257099054, 26.466907274711687], [93.1024878522553, 26.460046928713023], [93.06451340618233, 26.47931053858386], [93.0903531425978, 26.499938358516463], [93.00868327297108, 26.48114001273121], [93.01216347573916, 26.506558046897005], [93.0483152904063, 26.52588792409739], [93.04312161411582, 26.535172446165014], [93.08909561528607, 26.54458257766172], [93.11585983401154, 26.53052906419971], [93.1415352604767, 26.555520502603233], [93.15088656448088, 26.546317367894932], [93.19132542894137, 26.567009034833454], [93.20971494353054, 26.556087211358495], [93.16096942501142, 26.523967450264145], [93.1994731521616, 26.53340237537155], [93.2097891398814, 26.514722432807503], [93.20427186347614, 26.501322362151395], [93.21734254130294, 26.507384350066967], [93.21298611641681, 26.529581206519904], [93.23334527709795, 26.535654921767613], [93.26342268830544, 26.521068459862956], [93.26339414793055, 26.508852206694016], [93.28423708013824, 26.51972029422467], [93.29148153296725, 26.504471204761742], [93.28783821860146, 26.520616085124402], [93.26394852703847, 26.5273463172613], [93.27353023633664, 26.54515197875278], [93.25655927387052, 26.531911854512874], [93.26268938455588, 26.53781052888381], [93.24708311122835, 26.544900715538777], [93.25649477483312, 26.5510687711873], [93.23489877144802, 26.553631036675505], [93.25120127505333, 26.56988730601932], [93.29768419967978, 26.576553817134887], [93.28693855674273, 26.637402686932603], [93.30936870336134, 26.639373218534537], [93.31795796201841, 26.655672561825934], [93.30395902716079, 26.700333453358997], [93.27390154507786, 26.685242829546645], [93.2417164679232, 26.68378537174748], [93.21982406900334, 26.630970755743547], [93.16758548653625, 26.611970276490112], [93.14518030589602, 26.591683278275532], [93.09660113111305, 26.57698456964916], [93.07115467802731, 26.597851283248485], [93.01380080715974, 26.597644832389488], [92.9931171983542, 26.61362445540411], [92.95124070424896, 26.620336709870788], [92.91698904649499, 26.594894345605482], [92.84207295641436, 26.58435962418033], [92.79470495048452, 26.55700231734672], [92.77148754011388, 26.555791530587538], [92.75089552173806, 26.511346199102032], [92.72878967681851, 26.517774413318225], [92.72161258595774, 26.536298607056374], [92.6886975620577, 26.509951359553746], [92.66305387666479, 26.52230042615434], [92.5758682173446, 26.499656007025724], [92.52262981086459, 26.508050806132527], [92.46749000869464, 26.496233734778965], [92.44747386790816, 26.517650146817076], [92.41902918335708, 26.517032224484666], [92.41982686397316, 26.478931953158604], [92.44110808690296, 26.451828246081575], [92.42433100962121, 26.413558794771795], [92.43399919703687, 26.412961443796487], [92.44065932811287, 26.370234861880903], [92.46986573192257, 26.374284487832554], [92.4858874581027, 26.363369655355672], [92.5027670367516, 26.382090082842122], [92.50661033586256, 26.37179028720381], [92.55148873464431, 26.38211419977881], [92.56685060782404, 26.3721386106569], [92.56820441656792, 26.337813588120213], [92.55264064343484, 26.30831432361254], [92.50414099919888, 26.273021781115904], [92.41922692860226, 26.27010466852865], [92.4078213958339, 26.244117664367725], [92.42538181122988, 26.231936424763592], [92.43088081320734, 26.19077981551792], [92.39541667326321, 26.11357133112123]]]
+ }, "properties": {"name": "NAGAON"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[92.42243290805344, 24.25495851034798], [92.41906711382163, 24.19204140484268], [92.43562593462528, 24.17939572079656], [92.43632155943861, 24.15313582304682], [92.46537553980585, 24.136368814368126], [92.47885894140339, 24.142427429556328], [92.48382085684213, 24.163270965665586], [92.50140623102997, 24.160490704396988], [92.51541425324501, 24.178958068132772], [92.52393781091888, 24.17154246999525], [92.53411109137434, 24.180249504055464], [92.55079536460238, 24.24732506033071], [92.61220191660226, 24.253570503401285], [92.62466952483611, 24.334177892687823], [92.64566361745497, 24.327884376493802], [92.6612669218505, 24.348258446238404], [92.68473480677686, 24.346639422753277], [92.76335590392374, 24.521235434764968], [92.78012600758392, 24.56901348425417], [92.76430820975308, 24.56699848778849], [92.73527744454772, 24.590335673582004], [92.71729634361259, 24.561837164033886], [92.66788661077241, 24.591119422095694], [92.66638241686346, 24.609704120011127], [92.69670665726328, 24.615290049539997], [92.6654601776467, 24.62761599509427], [92.66508552088442, 24.67356859167686], [92.65024326829929, 24.68454981304924], [92.65578634072627, 24.753565226523595], [92.6837381358506, 24.814545136680827], [92.64712623553598, 24.81452777001385], [92.62946750761697, 24.850252327724668], [92.64396792877858, 24.8551622790352], [92.61257279415216, 24.860787306409843], [92.59726167578594, 24.879098064749247], [92.5797540346163, 24.87363168604502], [92.58289361239831, 24.844495879367003], [92.54464874557704, 24.807583771782603], [92.5451299461253, 24.765600084511377], [92.52495857286443, 24.751743445372494], [92.49365311795114, 24.683280637386105], [92.50636156720759, 24.663977528135806], [92.50457297117123, 24.58957759371945], [92.5172064542206, 24.573986273371023], [92.49143091321197, 24.368987490420068], [92.46373072002906, 24.30061192352184], [92.43290613418566, 24.256076118351835], [92.42243290805344, 24.25495851034798]]]
+ }, "properties": {"name": "HAILAKANDI"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[90.82679166109642, 26.55932879317589], [90.84464907569502, 26.564274796121556], [90.86328309283986, 26.562681725613785], [90.87361699296646, 26.56419114305922], [90.87141416309136, 26.572935071321538], [90.87289241095999, 26.575683019907363], [90.87001474238893, 26.5764556299349], [90.86954360476852, 26.577451434565635], [90.87430476470757, 26.583014523419617], [90.90075791122318, 26.5986863081903], [90.89586133025507, 26.620744607987277], [90.90004387094656, 26.633507062132004], [90.90258491472949, 26.653633641669437], [90.89870016824963, 26.687317554637513], [90.91549433867458, 26.713947937340432], [90.91374220705225, 26.718533394087512], [90.9148113980731, 26.728975470440815], [90.93041581188795, 26.749214283036185], [90.93081402068037, 26.750500952704414], [90.93570803336509, 26.761355439914404], [90.94994097396436, 26.779546761793593], [90.9567048712355, 26.787830882960282], [90.71703859527716, 26.768446867209228], [90.6757919190008, 26.784429184851223], [90.64638157067213, 26.77681026156227], [90.63420624997725, 26.794135827817357], [90.54638448551951, 26.816835697042173], [90.41753437762029, 26.904594528192558], [90.35566535674246, 26.900804704691573], [90.33640989316888, 26.869001098144373], [90.33952667979382, 26.825862089369792], [90.37705506920908, 26.717601094606092], [90.34693539675904, 26.641460283182052], [90.36639207576975, 26.582127001206654], [90.35501713423007, 26.56996083555662], [90.37137578972717, 26.544397169269857], [90.38875244125705, 26.542004656815827], [90.38223846068789, 26.52892865858709], [90.40363991952515, 26.51177970378985], [90.3932748828925, 26.503173071860417], [90.40791065860789, 26.50313398168062], [90.40915257319998, 26.489934421633475], [90.39360681398327, 26.493849916094614], [90.38628568904645, 26.48525503097692], [90.40508978512236, 26.475280377279084], [90.40393125215496, 26.442142769710344], [90.4372289332132, 26.46107583763538], [90.4598252663627, 26.453020032026473], [90.46323320595441, 26.46470366411613], [90.47712769998216, 26.462641551238285], [90.4562595691324, 26.432692200869578], [90.47664690008251, 26.385622712965787], [90.4809320822784, 26.420607989851636], [90.50416352433379, 26.42627447718995], [90.5097954724817, 26.448917424525746], [90.49824623531902, 26.459484108050635], [90.51963781628143, 26.50925623570714], [90.58994546002131, 26.489854266464747], [90.6018753133699, 26.491418772376576], [90.5889509585265, 26.51161881213758], [90.60116958340795, 26.516361403548338], [90.62360756872573, 26.507783600360348], [90.62083919907361, 26.493604289032724], [90.68233874467171, 26.499085327084046], [90.68568284369113, 26.481808937478053], [90.71704283173204, 26.479221355052957], [90.71015729448662, 26.45161423608899], [90.73573475158517, 26.44185577045094], [90.74478548738017, 26.46563285415184], [90.73107751863965, 26.482910427457707], [90.76634571625739, 26.485550353949662], [90.77747231943508, 26.504853101760048], [90.75752585377866, 26.514697334010762], [90.77468778010785, 26.53054145112441], [90.78758576310948, 26.517570959477027], [90.85160956746944, 26.527335785831806], [90.8475573678341, 26.534220386550366], [90.84702047083991, 26.534342125181514], [90.843804075423, 26.536412846771476], [90.83879668546795, 26.537214894034054], [90.82996928881892, 26.54289859258708], [90.82859289912375, 26.547117711378434], [90.8285522539504, 26.548489582617055], [90.82710317976898, 26.55844442448458], [90.82679166109642, 26.55932879317589]]]
+ }, "properties": {"name": "CHIRANG"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[92.66134437908585, 25.57245676255394], [92.68191798379497, 25.57604288336728], [92.69664755171085, 25.59932114295382], [92.72002754816475, 25.58853420608383], [92.74866551153742, 25.599165273776705], [92.75435144214569, 25.61502111657494], [92.76867809499541, 25.61801554739572], [92.7586216090016, 25.629126747613743], [92.78880711448726, 25.65733368292451], [92.77640089622163, 25.677929447193605], [92.8137535140819, 25.702290383253583], [92.82061124667264, 25.741085363879236], [92.92277461104804, 25.772221237033765], [92.92854479734179, 25.806812511051362], [92.94428160935483, 25.80317012967348], [92.96586355320741, 25.81784928382217], [92.95674153070478, 25.802806100910068], [92.9674192690912, 25.78172796993606], [92.98062694449037, 25.790474658355727], [92.9835887007619, 25.78016622493129], [92.98094767448782, 25.808617160022177], [93.00600705250082, 25.826665229693134], [93.00284569775967, 25.78671992571034], [93.01862606099598, 25.801224540644796], [93.06366486654811, 25.776702405823013], [93.07538654970264, 25.78284498928583], [93.02892304036439, 25.812144835593354], [92.98231696030575, 25.875407654418005], [92.8680767036411, 25.868316574961007], [92.84762589234312, 25.904036612926927], [92.85416957840215, 25.924888809745678], [92.83426931849066, 25.91351578460957], [92.81777593815883, 25.923881728483703], [92.80059052807145, 25.918480611215536], [92.79005137368223, 25.93814347789031], [92.7936630314174, 25.956329275076595], [92.80628773073992, 25.95778906001097], [92.79423168745014, 25.96455266232472], [92.77561750061516, 25.94830717472386], [92.76233682631936, 25.96125936098856], [92.77052525759501, 25.98917508854301], [92.75926260007596, 25.991215493474428], [92.77907900045903, 25.996004847969235], [92.75709902747708, 26.002650232375352], [92.78263409756896, 26.009876263353075], [92.7587007137472, 26.01457081870035], [92.76503569511456, 26.02916227151551], [92.74567310025682, 26.03989654364003], [92.75359088530705, 26.056450727357706], [92.71736865170476, 26.058242908258293], [92.71332045047073, 26.018006266160814], [92.66689166730643, 26.0283263242579], [92.65442025021581, 26.01954748114005], [92.65553454654537, 26.000194097525032], [92.59593944372266, 25.978034808507164], [92.58874326905196, 25.963961090752257], [92.5656136330677, 25.96162465586901], [92.5459915499587, 25.97151281479489], [92.56696795025803, 26.011613285394], [92.59444543760729, 26.023558954832037], [92.57951143289571, 26.03322679077456], [92.59570107216875, 26.08070921439451], [92.57462554098116, 26.09479793028828], [92.57247240321263, 26.11579221564628], [92.54769035668744, 26.110694876446065], [92.5363984491244, 26.09641338153563], [92.51967414517068, 26.102382070301108], [92.52891254621504, 26.15082757451478], [92.52150287523897, 26.155349110201392], [92.50877420939706, 26.1412219450042], [92.4866457466953, 26.149357882042228], [92.47887148457971, 26.128910329986663], [92.44145000186977, 26.095549160916843], [92.41444685732985, 26.115570263311778], [92.39541667326321, 26.11357133112123], [92.3629048779414, 26.07753874296235], [92.35964001931322, 26.091569760360475], [92.32987722147442, 26.076769555963214], [92.32342659369232, 26.086290156685553], [92.30379014382697, 26.086322461210916], [92.27481511100014, 26.06574799513613], [92.26386946086001, 26.057458420410164], [92.26338736019986, 26.03322700628948], [92.18080650904349, 25.985107669821065], [92.15235833992743, 25.944415855474304], [92.16084921060303, 25.92824768952131], [92.15466060432135, 25.911089749838396], [92.17546900888277, 25.90746429707797], [92.19444854323875, 25.918554443375758], [92.20219599423636, 25.90642344838106], [92.2254826683087, 25.909266068071847], [92.17716479457721, 25.872847173115062], [92.17742445350841, 25.851598655061892], [92.15102035680393, 25.81673623003955], [92.14773520253853, 25.773047970615064], [92.16262847763515, 25.740954515078016], [92.14416619591474, 25.71691108445354], [92.15469584792488, 25.706311961722943], [92.15606641833365, 25.672280830582594], [92.1701141775253, 25.66722668648511], [92.22495289046313, 25.716187355167822], [92.23437135790785, 25.707677357769224], [92.26428867945027, 25.70918904902085], [92.31125863558948, 25.727992607887064], [92.33342798600974, 25.724213803092137], [92.38393692527934, 25.7546210118642], [92.38169538879526, 25.74214200796301], [92.40653790541383, 25.744697698267956], [92.41156640577807, 25.730131914175455], [92.43109512877624, 25.73227404665067], [92.44420761509467, 25.719793456862188], [92.44056457651166, 25.691699542223475], [92.470249224514, 25.675249898396], [92.50554444615042, 25.616409839403794], [92.55408164355848, 25.614902205192777], [92.55663964753398, 25.57105999332253], [92.57191217966546, 25.557760612613084], [92.59473205138693, 25.551691971690058], [92.64938078052364, 25.592300304476122], [92.66134437908585, 25.57245676255394]]]
+ }, "properties": {"name": "WEST KARBI ANGLONG"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[93.96231430958031, 26.926806579749265], [93.97746408513154, 26.923829529063713], [93.99665936786933, 26.942270748242407], [94.00915989845998, 26.93045398739319], [94.02460290118799, 26.932712987494117], [94.02440274127133, 26.956430957243853], [94.05995228943938, 26.982899864957496], [94.08001824450336, 26.959870931077344], [94.13436140091639, 26.969029020794764], [94.13394242576956, 26.988230024137646], [94.18893192541942, 27.004468223688125], [94.18751384221697, 27.035289532529273], [94.22379756999202, 27.03187512187096], [94.23436855169177, 27.071667588649245], [94.25473784447097, 27.088243192331863], [94.27878518048485, 27.095007775843232], [94.31214448597157, 27.071101267845574], [94.32274276298124, 27.087878407632825], [94.33943187273874, 27.081976705514695], [94.36968377091041, 27.09873135517239], [94.41866410185827, 27.092952867778354], [94.43403545585751, 27.118988749453372], [94.46795943873857, 27.1137041352992], [94.47947049660337, 27.138866469401002], [94.5070411572139, 27.12153388907135], [94.51064654919999, 27.142185985098575], [94.5332136951876, 27.147752712199633], [94.52640666530812, 27.16238197657732], [94.56755479460118, 27.179143785122847], [94.58664099311734, 27.26731228491282], [94.61379517589755, 27.306425057134394], [94.60655267151441, 27.328688879096198], [94.62204758339112, 27.33295766586348], [94.62047959023236, 27.36261129697701], [94.59322010962948, 27.35835730683388], [94.59238638051934, 27.377717307584746], [94.53681921473446, 27.347621215206328], [94.51304751059583, 27.349206182065654], [94.49822622468943, 27.32992443154455], [94.46045977992726, 27.332191634578766], [94.44394735171814, 27.308591524476793], [94.42678365840275, 27.3378562537404], [94.40608646796844, 27.33080039376044], [94.39007518200854, 27.350569741866952], [94.3394581008501, 27.33678283522034], [94.32734420156446, 27.31833738565305], [94.30694433282792, 27.31905106890498], [94.2989719921922, 27.350385141642807], [94.24711351926113, 27.39187432528246], [94.26378245914557, 27.400213736622117], [94.29257067563098, 27.38379522931141], [94.3080975612436, 27.41260543653349], [94.30592826907129, 27.438225072574546], [94.27768416574678, 27.46659951388999], [94.26817903602993, 27.520937848706446], [94.1565903563524, 27.474954417937255], [94.15934838639555, 27.461714469302297], [94.08952130450174, 27.407145503096014], [94.05973759657809, 27.36163418323294], [93.9911782513492, 27.32844357678067], [93.79469300205335, 27.13614450757257], [93.82498834814207, 27.116520132732813], [93.83769577870899, 27.08546908950551], [93.82914772936724, 27.06691117467499], [93.80327991610757, 27.058155290105226], [93.79370380061869, 27.072436706516708], [93.80014515688873, 27.057950593969167], [93.78371429750406, 27.051551224379022], [93.7811073425321, 27.065615049501528], [93.77820272719747, 27.04903410290652], [93.77079254058842, 27.06213318073897], [93.76734591325241, 27.039536465819655], [93.72330169902668, 27.020911612803946], [93.69768446362899, 26.994278842020524], [93.7441939029294, 26.957797512665767], [93.7490766058247, 26.91396548173878], [93.73956199349172, 26.89852698200723], [93.7809008054752, 26.885361853782076], [93.78915808543087, 26.859252513161138], [93.76995155488743, 26.84477657908691], [93.80017030342847, 26.821799177815933], [93.82388372217653, 26.82519408832212], [93.83517210654699, 26.850964920163175], [93.89184813115905, 26.865369147034286], [93.89171680734597, 26.892187694346248], [93.91770748857692, 26.908689204478254], [93.92045334195645, 26.926747755789183], [93.96231430958031, 26.926806579749265]]]
+ }, "properties": {"name": "LAKHIMPUR"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[90.11787053562564, 25.95754143724235], [90.15135194102412, 25.96676160420382], [90.15840889838535, 25.95724262796716], [90.17686290392706, 25.959045853372125], [90.18682263148327, 25.944186499261505], [90.20280871969945, 25.960954476985744], [90.21143144239753, 25.952685169524017], [90.2705203580324, 25.960401902752608], [90.32736036920123, 25.974467134709915], [90.35267873869712, 26.005702576256827], [90.39968427171485, 26.01260872845697], [90.42403605666, 25.988972566417726], [90.4760711796984, 26.009679538854257], [90.50247148820733, 25.991553921608066], [90.53494013564944, 25.949681263626623], [90.51356307954681, 25.896365402659782], [90.57666667847583, 25.93684304032877], [90.58924917494629, 25.958319526399187], [90.62466094849925, 25.938175971034845], [90.60620101497496, 25.916710332744984], [90.62180068568514, 25.89792977796054], [90.62847352253254, 25.917685820002156], [90.68826898290132, 25.9490027687971], [90.7186102598505, 25.9552009300562], [90.72440920930131, 25.946870255553094], [90.74275072241322, 25.958080801433894], [90.74033097544817, 25.939488309166173], [90.7466493254064, 25.928181998111352], [90.75456090399628, 25.933536553527684], [90.73891029431792, 25.916252066279583], [90.7604581533937, 25.921978136123567], [90.76382006510683, 25.907809271116694], [90.78109854694584, 25.911359810083788], [90.80898761630716, 25.95253121616394], [90.83612114232743, 25.948515164282412], [90.83540102404957, 25.936699372615887], [90.88445851578875, 25.950402028487414], [90.91676863753266, 25.914150625337697], [90.91726897489139, 25.944501906044536], [90.94736687307729, 25.948186253680397], [90.9694598693933, 25.885069508631897], [91.03040751433541, 25.88595349164338], [91.04152422077361, 25.921832521741532], [91.04974018181943, 25.944326399229404], [91.06978660930575, 25.968034220733063], [91.07430409224084, 25.970351124838707], [91.08574871340214, 25.985161748268247], [91.09972757091319, 26.009372305925908], [91.09135247421307, 26.020838377188674], [91.0894685318908, 26.031141803576634], [91.07859545394751, 26.04000415608909], [91.0705985345073, 26.04100098870394], [91.05615418079583, 26.049187733605674], [91.03280899585577, 26.0498172952043], [90.98125894510451, 26.062809618494157], [90.94329027070722, 26.091212714054716], [90.94025562154027, 26.092996308258883], [90.93939095265515, 26.094599913072464], [90.93348365829624, 26.10136306266993], [90.92472790408773, 26.09703316822081], [90.92405461678229, 26.09549335932503], [90.8766052854715, 26.095139601993644], [90.85710787774411, 26.11289298335789], [90.85599021452886, 26.112838797642343], [90.84204387782775, 26.110570732354528], [90.81048526419266, 26.12182933750541], [90.80020905656856, 26.126116392510347], [90.7941436434483, 26.12761146199554], [90.79396357165803, 26.12777386382822], [90.79325788301857, 26.12886558547767], [90.78711260248302, 26.129909023547604], [90.75429409178048, 26.13556277565954], [90.74733376978764, 26.136053246552112], [90.71445859156036, 26.130135165853996], [90.70908918324075, 26.142619622013473], [90.6925040489858, 26.154123430947635], [90.68576053269184, 26.168602758782914], [90.68434264891536, 26.17089087882552], [90.66893873997022, 26.201362718442343], [90.65417593618545, 26.21131734376659], [90.62240898077812, 26.202049451089223], [90.60019119858761, 26.2151788188422], [90.57732363800267, 26.203515276311226], [90.51685902168047, 26.19839079047283], [90.46927861538991, 26.168240320321118], [90.47002429792411, 26.17822980068723], [90.44477461630977, 26.165723097838757], [90.43820079267128, 26.17407248772279], [90.44842997708352, 26.184041460125627], [90.39114440782197, 26.191478362411857], [90.39016840623206, 26.204024512697917], [90.35757680188549, 26.190027979484984], [90.30478073573283, 26.192817283233246], [90.2647808545955, 26.183244125783613], [90.24798334782759, 26.140442254563702], [90.19547762975121, 26.12729193715614], [90.17370492864802, 26.103079525827038], [90.16878964745062, 26.07751790078513], [90.18304348466002, 26.062025482398735], [90.18032598121255, 26.048011604231707], [90.17081340715698, 26.043923311783793], [90.1973218485716, 26.025957180029778], [90.187552211716, 26.001425514370634], [90.11982582484274, 25.969536968253436], [90.11787053562564, 25.95754143724235]]]
+ }, "properties": {"name": "GOALPARA"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[92.76335590392374, 24.521235434764968], [92.79926578431858, 24.419231333059425], [92.82984331639086, 24.400392441941197], [92.82949260062922, 24.37369563095198], [92.86083887858227, 24.39860177728427], [92.88358270162672, 24.402515945654812], [92.90277664946797, 24.391168932669274], [92.90924175988908, 24.41301196167598], [92.93109770427635, 24.393111775972425], [92.95106636550683, 24.403097270130683], [92.95917752819332, 24.392001706293993], [92.97355352550156, 24.408401980726893], [92.99418490266324, 24.399047306734825], [93.01184650788608, 24.416818316388902], [93.02333120468886, 24.406850132965054], [93.04153699583613, 24.413113320431012], [93.03281979282805, 24.428853573468984], [93.04626259416801, 24.473668240806656], [93.03245185995564, 24.495400311090723], [93.05002893820183, 24.519537199970788], [93.04989126419804, 24.544310248480205], [93.07070594618668, 24.558150233570913], [93.0580778799785, 24.57393984933942], [93.08429420363578, 24.571236184749033], [93.10425843168031, 24.5824846979929], [93.0710486840103, 24.60074484197207], [93.08410830986412, 24.61370418488545], [93.07557693594899, 24.624639068353574], [93.0871798600263, 24.629770359354946], [93.08308465264842, 24.649915259553428], [93.09526367619891, 24.652928909796895], [93.1040521623214, 24.674259017821324], [93.09000696422665, 24.677276295427205], [93.07344541254452, 24.707907869230386], [93.08652177041886, 24.709634214887426], [93.10765904551086, 24.7415435871855], [93.09814943320076, 24.75447203353863], [93.10932803446038, 24.811576868956603], [93.1212711334678, 24.819323438730116], [93.11876404330766, 24.807758816347448], [93.13846642502328, 24.810096424637848], [93.14936122243348, 24.78747588186666], [93.19143326630135, 24.80449846108011], [93.19150913172201, 24.83450676298974], [93.20050932380752, 24.83886293079454], [93.19192878240196, 24.841891324746367], [93.20144629180169, 24.842157584973876], [93.19472560080078, 24.853951158245437], [93.2039699954047, 24.85115239751036], [93.22634368919589, 24.872936261054456], [93.22591416603099, 24.892030160062905], [93.2407016519265, 24.90345751924351], [93.23509666401691, 24.911509953133844], [93.2487358092302, 24.914947760724505], [93.23671400971904, 24.937264642623298], [93.25116802121813, 24.94074227435739], [93.24526204468773, 24.95090776776127], [93.26290499908868, 24.96143739763229], [93.24951757888599, 24.97323566406444], [93.23188429305247, 24.97608080963076], [93.22730178466722, 24.98727346894334], [93.20286685165938, 24.981679600735987], [93.17971721019377, 25.000659232269427], [93.06190553403046, 25.002337154074162], [93.05312355171063, 25.030700586375982], [93.01424679464715, 25.061830342464766], [93.04306728221081, 25.08850639853444], [93.04705191057049, 25.099251811282993], [93.03505663651305, 25.105145917867006], [92.97743260001874, 25.085638086099507], [92.95901229746987, 25.090088697012714], [92.95179051003379, 25.069114400659384], [92.89745825288009, 25.079280204828454], [92.83577494700911, 25.052657130753293], [92.8125904212661, 25.08136269040137], [92.77792821186767, 25.088292895897517], [92.75393127044292, 25.138131557468466], [92.7302437321582, 25.143244310680046], [92.73486213003567, 25.12593485419062], [92.72249959504569, 25.112671795189883], [92.66505510931879, 25.10909321733892], [92.64292256018076, 25.117795044259402], [92.61948095995962, 25.102365968338717], [92.59840110607888, 25.110728456635016], [92.53933182492118, 25.099153950684663], [92.48070683523164, 25.10856670276346], [92.47193562011878, 25.067353971950077], [92.45688668045815, 25.054167553793086], [92.46419410518858, 25.037535230107704], [92.43818682668444, 25.043969207125954], [92.41609217477331, 24.99204428945475], [92.41976566893939, 24.965452750160747], [92.45860447936865, 24.970517876641026], [92.46808674785979, 24.963124216888854], [92.44914487716875, 24.938861848274556], [92.48755624493128, 24.946638866747], [92.49236765752565, 24.87434523311098], [92.51504334066084, 24.87951623659557], [92.52603767409948, 24.861071263487396], [92.55625750600876, 24.877374177163563], [92.5797540346163, 24.87363168604502], [92.59726167578594, 24.879098064749247], [92.61257279415216, 24.860787306409843], [92.64396792877858, 24.8551622790352], [92.62946750761697, 24.850252327724668], [92.64712623553598, 24.81452777001385], [92.6837381358506, 24.814545136680827], [92.65578634072627, 24.753565226523595], [92.65024326829929, 24.68454981304924], [92.66508552088442, 24.67356859167686], [92.6654601776467, 24.62761599509427], [92.69670665726328, 24.615290049539997], [92.66638241686346, 24.609704120011127], [92.66788661077241, 24.591119422095694], [92.71729634361259, 24.561837164033886], [92.73527744454772, 24.590335673582004], [92.76430820975308, 24.56699848778849], [92.78012600758392, 24.56901348425417], [92.76335590392374, 24.521235434764968]]]
+ }, "properties": {"name": "CACHAR"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[93.99960027603971, 26.866740052392124], [94.12851884454675, 26.892418613155055], [94.19278134026088, 26.912087902425483], [94.20919075236816, 26.926461169854576], [94.25366252155001, 26.908254273934542], [94.30472645347685, 26.90950163823293], [94.31210164890895, 26.87848753124837], [94.32013409043046, 26.879541658349222], [94.37137680596345, 26.916076973698225], [94.39663572136061, 26.95272537378688], [94.46021960994617, 26.995322307536355], [94.47537647500164, 27.030979040019535], [94.50171024889073, 27.039860340809884], [94.54291313589026, 27.075312824845756], [94.59308581957937, 27.145569370691437], [94.56755479460118, 27.179143785122847], [94.52640666530812, 27.16238197657732], [94.5332136951876, 27.147752712199633], [94.51064654919999, 27.142185985098575], [94.5070411572139, 27.12153388907135], [94.47947049660337, 27.138866469401002], [94.46795943873857, 27.1137041352992], [94.43403545585751, 27.118988749453372], [94.41866410185827, 27.092952867778354], [94.36968377091041, 27.09873135517239], [94.33943187273874, 27.081976705514695], [94.32274276298124, 27.087878407632825], [94.31214448597157, 27.071101267845574], [94.27878518048485, 27.095007775843232], [94.25473784447097, 27.088243192331863], [94.23436855169177, 27.071667588649245], [94.22379756999202, 27.03187512187096], [94.18751384221697, 27.035289532529273], [94.18893192541942, 27.004468223688125], [94.13394242576956, 26.988230024137646], [94.13436140091639, 26.969029020794764], [94.08001824450336, 26.959870931077344], [94.05995228943938, 26.982899864957496], [94.02440274127133, 26.956430957243853], [94.02460290118799, 26.932712987494117], [94.00915989845998, 26.93045398739319], [93.99665936786933, 26.942270748242407], [93.97746408513154, 26.923829529063713], [93.96231430958031, 26.926806579749265], [93.96739678881163, 26.907022573508712], [93.9567249864926, 26.892124049323108], [93.9733515887777, 26.873313867255625], [93.99960027603971, 26.866740052392124]]]
+ }, "properties": {"name": "MAJULI"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[91.45368469934789, 26.317867943355093], [91.45526711765348, 26.32053871554579], [91.45652486235747, 26.320928152149907], [91.4659245433347, 26.316778935397135], [91.48181898542555, 26.322390161849547], [91.48589860523666, 26.33076765433079], [91.51089770898899, 26.334141490922395], [91.51206631835896, 26.332409402188606], [91.5249341700693, 26.336670208786384], [91.51960240205842, 26.35100404529156], [91.51972885251108, 26.35519213605326], [91.5202496903229, 26.355404690092247], [91.53285265850037, 26.375324404075297], [91.53381454486222, 26.37548752877863], [91.53279861495456, 26.380478191244], [91.52984967494722, 26.390156473087806], [91.52891047104632, 26.392926760222213], [91.53374755210159, 26.39736617002444], [91.53660250317742, 26.399290436461555], [91.53710861670342, 26.39928625154698], [91.53959783308437, 26.401228269753688], [91.54258680112248, 26.405124672935237], [91.54214545253518, 26.405742720766824], [91.54376173283539, 26.40927725329883], [91.5485087613767, 26.4111005201952], [91.56281572405369, 26.42897208180042], [91.56426311209734, 26.43149545054701], [91.56281153880278, 26.437153985622395], [91.56119048216021, 26.440596628701158], [91.56045169060256, 26.444152481267658], [91.55245880369965, 26.455489557555975], [91.55106575834078, 26.46244777319811], [91.55962401973068, 26.481672247926962], [91.56159222672157, 26.486515429024784], [91.55849686401783, 26.497629296394052], [91.55743897290495, 26.5057873092936], [91.55674021656456, 26.508494645800816], [91.55657643302703, 26.514212405435718], [91.55660636309567, 26.514392886873683], [91.55692947812021, 26.519501609472687], [91.55621535519859, 26.522615196106248], [91.57855927253303, 26.528987838873338], [91.5794270280295, 26.537777310847762], [91.57932266355644, 26.54711991968036], [91.57650429457391, 26.55119501686748], [91.58075058420955, 26.56257249132474], [91.57945193561739, 26.563485075612412], [91.58327606018862, 26.568505568949764], [91.5753958947859, 26.57153619041895], [91.54942832630888, 26.563075081163134], [91.53330172271767, 26.559508887875047], [91.50639903587766, 26.532437291479564], [91.49435422332557, 26.533842981024247], [91.49130389226869, 26.56112566250114], [91.49130389676027, 26.561125753297237], [91.4745789783589, 26.57115935441552], [91.47105530521591, 26.568365846712496], [91.451782189747, 26.562537098168235], [91.43150015302629, 26.560003791886807], [91.42764472845559, 26.551838078166575], [91.43090272575164, 26.5491416729484], [91.45889809276052, 26.546605276504344], [91.43453211263726, 26.536208167402194], [91.42824058817008, 26.535476969197198], [91.38088918400503, 26.526286463044894], [91.35270414670707, 26.523991826860897], [91.35422764541148, 26.513035959758223], [91.35460948869604, 26.511104065213196], [91.35358519816803, 26.509760178929543], [91.34362043555464, 26.50546015262509], [91.34336599763189, 26.504098139797502], [91.33397293095014, 26.49979837750466], [91.32255527002711, 26.490471902424478], [91.31814761871195, 26.490346200997596], [91.31150396543316, 26.48764770807997], [91.30991215344463, 26.485253395566986], [91.30886408540941, 26.485358048890973], [91.29605688884536, 26.48636105241976], [91.29600825675082, 26.487431818159727], [91.29534681013912, 26.4922338136127], [91.29599842469003, 26.49414820697033], [91.30217542922983, 26.49760311013821], [91.2841941863609, 26.50262935822087], [91.29018350499008, 26.510990272173423], [91.29363435081468, 26.5158736019053], [91.31147972798847, 26.51690825619947], [91.31064784311961, 26.51939049818408], [91.30612446633796, 26.522770023150205], [91.30818548007748, 26.52448217971657], [91.31127558943344, 26.525153171829377], [91.30675676621193, 26.53069612120059], [91.30432229675769, 26.534580423874363], [91.30498547621956, 26.536395090301326], [91.29250020710725, 26.546530317634385], [91.28408496290045, 26.543554147005068], [91.27853563550416, 26.541677101068732], [91.26681762735748, 26.535043128834342], [91.26308762736339, 26.525890023497656], [91.25767545204974, 26.521273812475798], [91.24763647781411, 26.520304884954477], [91.24838704538682, 26.51748048898951], [91.26478304654522, 26.498535624018874], [91.26526481123545, 26.496220222629816], [91.26448220884139, 26.49390390147817], [91.26587953646921, 26.49143215725523], [91.26587995059258, 26.491039667231817], [91.25535240333511, 26.47573960857745], [91.23345321315173, 26.443303924059315], [91.23163172979287, 26.430777475313405], [91.23127237313648, 26.426995928314128], [91.23744077630745, 26.38953398271506], [91.23958456351218, 26.388701874211613], [91.23574602547222, 26.378144649836152], [91.23607110331567, 26.377453900170565], [91.24199003534908, 26.379281370871066], [91.24539627712485, 26.37847531412859], [91.24667600719715, 26.37575290803238], [91.24609099733468, 26.3715229881831], [91.25610683186694, 26.363846218164657], [91.25754937080468, 26.3640550482043], [91.26063100725088, 26.363376104108198], [91.26470569710767, 26.366768490853815], [91.26496578902683, 26.36726512090062], [91.26496236644559, 26.37087991838275], [91.27266751128492, 26.371138414021807], [91.27837371866579, 26.377555232677956], [91.27094479409826, 26.364597908439453], [91.27894374013776, 26.354214592212408], [91.27796760559718, 26.353297865080783], [91.27686165281999, 26.35206056086949], [91.27690888533931, 26.343409228281025], [91.26768155064096, 26.333537269994366], [91.25560616213153, 26.313955019213903], [91.26192638417878, 26.307854094961634], [91.26154323564211, 26.30538064468652], [91.25268164282518, 26.30430381464609], [91.25102967964523, 26.303950362564507], [91.26145166317869, 26.29116470398264], [91.21889746654838, 26.273663054496385], [91.21854704812908, 26.260173688534483], [91.22484317017391, 26.2632033328553], [91.22857683259942, 26.263924427215134], [91.24040445317705, 26.261693344871283], [91.23838968650499, 26.25341754360685], [91.21582946293495, 26.233745636521476], [91.21665674842957, 26.21853681121706], [91.24791117094989, 26.199139990013474], [91.23893220066464, 26.188193849298216], [91.22208897144542, 26.17940035105723], [91.23058192980574, 26.176921732449262], [91.27396516903532, 26.161557412297668], [91.29464365924036, 26.157237188588194], [91.29899218613848, 26.158818459248124], [91.304547110039, 26.160615505023486], [91.32873421402962, 26.16271448782772], [91.35364515532336, 26.167290792353352], [91.38510279023568, 26.142990119554398], [91.41428954250024, 26.13611063122323], [91.41740371951929, 26.182165936123422], [91.41109964289264, 26.201139254770773], [91.42228559326956, 26.23235837295947], [91.41234479411469, 26.263792396948556], [91.42039532051949, 26.26830306579373], [91.43581808779741, 26.260214493977546], [91.44481806069396, 26.269263554805228], [91.44660536315631, 26.269691325215284], [91.44911701136819, 26.2925212317832], [91.44996654184419, 26.29613131616964], [91.45339963875539, 26.31757474913775], [91.45368469934789, 26.317867943355093]]]
+ }, "properties": {"name": "NALBARI"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[93.24951757888599, 24.97323566406444], [93.25976949157321, 25.001227842570984], [93.24428812629101, 24.9981897641176], [93.24378308625174, 25.018387458750528], [93.25384673810657, 25.02067990454373], [93.2641053863618, 25.04946317132103], [93.29985726477625, 25.046140726109755], [93.31482248684232, 25.08471747009918], [93.33227087423751, 25.093619986529173], [93.34515656918437, 25.123562647163162], [93.34577104917805, 25.16990942210274], [93.3816788616511, 25.223001911281475], [93.38102004710319, 25.23972947565501], [93.42742523691486, 25.283341515627068], [93.47040459988094, 25.30516118384988], [93.44833607546983, 25.340736542104157], [93.47351471561657, 25.379380442910385], [93.45809611741988, 25.43108452218574], [93.43629828864161, 25.44828185936747], [93.41545319239238, 25.445084576826257], [93.3902474069544, 25.460485029166197], [93.38541809273303, 25.490491238916995], [93.330200771344, 25.54240903178491], [93.30188016209998, 25.530247502628246], [93.29396154790474, 25.54425768972752], [93.27168406368047, 25.53115918958166], [93.25906190838687, 25.548711647090077], [93.20762432850576, 25.544152225675845], [93.17658152840514, 25.592758328704907], [93.19193865758187, 25.63207740790885], [93.1706813019909, 25.661761274962053], [93.14285307193052, 25.66074738769586], [93.13595693995461, 25.67007279736087], [93.14263543528998, 25.718501852531986], [93.14854091415373, 25.733989459807486], [93.12576913823256, 25.748668827189057], [93.12920349188686, 25.76114865913017], [93.09880223083292, 25.77700174477719], [93.07502925467982, 25.76614558640267], [93.06366486654811, 25.776702405823013], [93.01862606099598, 25.801224540644796], [93.00284569775967, 25.78671992571034], [93.00600705250082, 25.826665229693134], [92.98094767448782, 25.808617160022177], [92.9835887007619, 25.78016622493129], [92.98062694449037, 25.790474658355727], [92.9674192690912, 25.78172796993606], [92.95674153070478, 25.802806100910068], [92.96586355320741, 25.81784928382217], [92.94428160935483, 25.80317012967348], [92.92854479734179, 25.806812511051362], [92.92277461104804, 25.772221237033765], [92.82061124667264, 25.741085363879236], [92.8137535140819, 25.702290383253583], [92.77640089622163, 25.677929447193605], [92.78880711448726, 25.65733368292451], [92.7586216090016, 25.629126747613743], [92.76867809499541, 25.61801554739572], [92.75435144214569, 25.61502111657494], [92.74866551153742, 25.599165273776705], [92.72002754816475, 25.58853420608383], [92.69664755171085, 25.59932114295382], [92.68191798379497, 25.57604288336728], [92.66134437908585, 25.57245676255394], [92.64275183086946, 25.5349082853365], [92.57356672819678, 25.490577102756134], [92.56457794651205, 25.465582512181545], [92.59852525504778, 25.46823739493237], [92.6065424413791, 25.41333161083705], [92.62754977875855, 25.422066307775466], [92.62555710794753, 25.435015635089474], [92.63947239348254, 25.417664914997996], [92.65353128100394, 25.433622658166712], [92.6615549980874, 25.406453872418954], [92.67344009736847, 25.414123495883704], [92.71785216182163, 25.37272625797815], [92.73792940152217, 25.379432903485007], [92.73226613630682, 25.369015335968744], [92.74981127046149, 25.34419543400325], [92.78170681161696, 25.333282551363876], [92.78684057656616, 25.314473130594738], [92.79240325202926, 25.28266444155786], [92.76852705495847, 25.268219129134703], [92.77765326810191, 25.258277387684615], [92.76179590217777, 25.246628307618217], [92.77157582474335, 25.230079908167976], [92.80282185340569, 25.216272602322835], [92.77612126594504, 25.199714584730664], [92.74278245282657, 25.2067518654866], [92.69380820167657, 25.179336314300308], [92.66338339937226, 25.176767744435363], [92.65566774514247, 25.1550521665384], [92.6282184406386, 25.13820257216319], [92.62134064507428, 25.115126352597887], [92.5215267093401, 25.13912850082029], [92.53933182492118, 25.099153950684663], [92.59840110607888, 25.110728456635016], [92.61948095995962, 25.102365968338717], [92.64292256018076, 25.117795044259402], [92.66505510931879, 25.10909321733892], [92.72249959504569, 25.112671795189883], [92.73486213003567, 25.12593485419062], [92.7302437321582, 25.143244310680046], [92.75393127044292, 25.138131557468466], [92.77792821186767, 25.088292895897517], [92.8125904212661, 25.08136269040137], [92.83577494700911, 25.052657130753293], [92.89745825288009, 25.079280204828454], [92.95179051003379, 25.069114400659384], [92.95901229746987, 25.090088697012714], [92.97743260001874, 25.085638086099507], [93.03505663651305, 25.105145917867006], [93.04705191057049, 25.099251811282993], [93.04306728221081, 25.08850639853444], [93.01424679464715, 25.061830342464766], [93.05312355171063, 25.030700586375982], [93.06190553403046, 25.002337154074162], [93.17971721019377, 25.000659232269427], [93.20286685165938, 24.981679600735987], [93.22730178466722, 24.98727346894334], [93.23188429305247, 24.97608080963076], [93.24951757888599, 24.97323566406444]]]
+ }, "properties": {"name": "DIMA HASAO"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[91.78057055860477, 26.51180405644696], [91.8171892349116, 26.50545454063386], [91.83320690429989, 26.515283563591954], [91.82755437395218, 26.544957221984635], [91.80978777004569, 26.543953063376186], [91.81296641016951, 26.5593802343698], [91.82997982521931, 26.558148367315372], [91.8313704460252, 26.571208202436484], [91.82086239131114, 26.572061779254238], [91.83737596038068, 26.586180116455573], [91.83781729639156, 26.574562780541438], [91.84994041149372, 26.57301664597528], [91.85405616154551, 26.53836254014275], [91.86994462534818, 26.531833008942677], [91.88431954288149, 26.53848735080401], [91.89666730687324, 26.56960349319654], [91.92193472931613, 26.56761494382892], [91.92786391202524, 26.53730122693403], [91.96503515553808, 26.53985704530304], [91.9588280035373, 26.55174834263914], [91.97011300395411, 26.556071074657897], [91.99025503644117, 26.555062912867683], [92.00499639205019, 26.534568377347036], [92.01314559928728, 26.536507447707326], [92.00358536421597, 26.543497665584056], [92.02821193931496, 26.542191481066784], [92.01941161878692, 26.521872411614652], [92.03447766147225, 26.52434152773307], [92.02508400998721, 26.508887818186107], [92.04085962293232, 26.509995519791346], [92.0384179031754, 26.485739989297375], [92.05053067238042, 26.47542512673445], [92.05665745570596, 26.509099464371076], [92.06846644432632, 26.510054631862214], [92.06844819505132, 26.545094085359107], [92.1070804684237, 26.55213983928767], [92.10867034633941, 26.57032659846704], [92.100698670457, 26.579333049189373], [92.08666887307945, 26.575910781233514], [92.07948787993706, 26.589315251324454], [92.06247891064959, 26.587318705719927], [92.05684619983201, 26.546872385487234], [92.02846679944591, 26.545865922011455], [92.00586116154666, 26.559595743151807], [92.0095603960389, 26.589870637442846], [92.03319093891378, 26.592684712428728], [92.02549550216774, 26.609466963336462], [92.03861745672926, 26.609102013786227], [92.0372577253927, 26.62042673136083], [92.07040130315892, 26.624523968043768], [92.07273678545536, 26.646912986555417], [92.12152982844626, 26.643688055389358], [92.11858787104359, 26.6526219292074], [92.1812481226338, 26.67022876619797], [92.17689210198958, 26.65144425608117], [92.18434277566847, 26.64478028897239], [92.20210076383309, 26.65131135597366], [92.20508788493497, 26.6406719303609], [92.19371328745007, 26.634945453668475], [92.22031852053992, 26.628191297130655], [92.23458193918013, 26.596964499390523], [92.23055264838115, 26.548747836450243], [92.2646924030002, 26.570619861953606], [92.25266497105224, 26.573861153215017], [92.24223720955486, 26.60322223466325], [92.27317338142791, 26.616261805598544], [92.2758378833753, 26.65752108391362], [92.28961750892934, 26.650948083971226], [92.29419317933865, 26.62202087031418], [92.31427558884366, 26.624072824808454], [92.3119046725008, 26.607150852655977], [92.33482023007136, 26.62199772320135], [92.33179631936532, 26.606349731818295], [92.34427240949208, 26.597790212324686], [92.32537019403091, 26.596739241923185], [92.32723321638687, 26.587399979326076], [92.36058662533208, 26.5823438369255], [92.35742515291165, 26.61184076472703], [92.37581448065121, 26.61362465297574], [92.37578360196164, 26.629357760493015], [92.39535449906577, 26.627024009182566], [92.40182962390567, 26.635808692687505], [92.38831547297595, 26.648653061999774], [92.3630627927852, 26.643166930670397], [92.3640673895472, 26.698162941106208], [92.34449493835764, 26.692761932593537], [92.35298198131181, 26.686797466296618], [92.34885049187791, 26.664150117603853], [92.33148510791662, 26.662735627786187], [92.33241599970621, 26.694446076017194], [92.34631510568462, 26.704770125264886], [92.33182333260424, 26.721892358251843], [92.34191711485201, 26.72920111688752], [92.33196285893418, 26.725155078301217], [92.33738782535917, 26.73312608002778], [92.32351918933686, 26.73912817481815], [92.3341783855975, 26.742114502005194], [92.3286985707362, 26.771642877747745], [92.34032211384425, 26.77123556519776], [92.32790812694803, 26.812631345524387], [92.34954744170625, 26.911448638952997], [92.36484227361635, 26.932061895628166], [92.30259430023251, 26.922739347049983], [92.302897111535, 26.90723612135585], [92.27602252579373, 26.902092891263553], [92.25511798173396, 26.909701636495992], [92.19473385356288, 26.890059851294822], [92.11400321748147, 26.893916188611875], [92.10237426292215, 26.867335402639117], [92.0561884381096, 26.84666981827973], [91.98359411484766, 26.857858981297184], [91.96434767574945, 26.88214711087196], [91.89299124801703, 26.918704913747924], [91.8593657483554, 26.91317833312873], [91.82415599063852, 26.86391283338374], [91.72074775262044, 26.811910419054893], [91.70433787788079, 26.812805276007257], [91.72262952191805, 26.74860229580317], [91.72324431003388, 26.74459908688355], [91.72388214622497, 26.74401197728784], [91.73135271668906, 26.735093973152143], [91.73091823751875, 26.732702566607152], [91.73394826754851, 26.721838103253624], [91.73318265049983, 26.71476731502963], [91.73929701820983, 26.70611181210615], [91.73963614121276, 26.69157578197181], [91.74552033719075, 26.68797876669212], [91.74512616093568, 26.68581298336298], [91.74403812775175, 26.683070110722507], [91.74178980090247, 26.67553571987733], [91.74043163892271, 26.673686567327486], [91.73743959145979, 26.670349559056618], [91.73325534935917, 26.660990691687125], [91.73464283684136, 26.66033791159037], [91.73286501789347, 26.657197416039534], [91.73370847935139, 26.655631206665163], [91.73940243820337, 26.65442251757693], [91.74157710858925, 26.65186669708681], [91.74142814186402, 26.651096085748303], [91.74039056435467, 26.650687796600494], [91.74029516237316, 26.650545204884146], [91.74147992165531, 26.650001860415497], [91.74178619416658, 26.649411787858387], [91.7395374621771, 26.648940873820596], [91.74242775117958, 26.648338338899094], [91.74716178559031, 26.649354116597223], [91.74792989456557, 26.648345691791004], [91.74357202878174, 26.643522626926185], [91.74108874936653, 26.64158832171143], [91.7402964568455, 26.640548400157773], [91.74241684742864, 26.636523505632614], [91.74745116528265, 26.632058355524862], [91.74465937834773, 26.631786365408555], [91.74042738899308, 26.63253388498074], [91.73954580033956, 26.627390840065807], [91.74032439984072, 26.627733219687414], [91.74364420482156, 26.62371858659136], [91.74159042252008, 26.618679487136227], [91.74131911782955, 26.618467608755093], [91.74034034224208, 26.613811246386977], [91.74140366995906, 26.61287623710849], [91.74273925637738, 26.613019550480864], [91.74391738968598, 26.611344274436497], [91.74272065406448, 26.609607891565577], [91.73721877208824, 26.604973194520582], [91.73796522986854, 26.60335701880997], [91.74427526232549, 26.603207464437364], [91.74644007549779, 26.604293125977854], [91.74843815776005, 26.606031477030662], [91.75011013630285, 26.6057893077393], [91.75154732487475, 26.604432203580288], [91.75100402019766, 26.60075829140104], [91.74947937164968, 26.59944825344342], [91.74650906790824, 26.598100743536772], [91.74639365056389, 26.598078133773182], [91.74399024934372, 26.592624440425343], [91.74433312371126, 26.591189663051118], [91.74548890513898, 26.590058021490513], [91.7460313357553, 26.58972909848918], [91.74673448755235, 26.58939575715843], [91.74916562515523, 26.587791407988913], [91.74952220062747, 26.58758864389283], [91.75139945319584, 26.587518052167454], [91.75164567602533, 26.58731065884895], [91.75525158364438, 26.590274180268842], [91.7561739495236, 26.59142571484198], [91.75619889843398, 26.591628780605202], [91.75676081620377, 26.591899985041042], [91.75647390418348, 26.59263087392824], [91.76208449847879, 26.59406140640764], [91.7625064120149, 26.59378652166301], [91.75992884273252, 26.58608112132596], [91.75513746077236, 26.584100523538527], [91.75474584202088, 26.584222058978376], [91.75216784244546, 26.577590540768973], [91.7621027953645, 26.57503096327707], [91.76375518973575, 26.57375058707455], [91.76432738333406, 26.573719431377636], [91.76455868873995, 26.57322772154828], [91.76609447370252, 26.573201828113262], [91.76615075405337, 26.57202401570038], [91.76416782277668, 26.567270488111973], [91.76487706784631, 26.564826102286485], [91.76608349988301, 26.56338648510869], [91.76647036744492, 26.56285426542421], [91.76723903157907, 26.561965809215867], [91.76846883688111, 26.561592143691644], [91.76895067792817, 26.561515816613255], [91.77312933430437, 26.551712405337053], [91.77421411558697, 26.550630106446306], [91.7783690285919, 26.550357737138167], [91.78101742464456, 26.539014208266433], [91.78472744161512, 26.536038127125305], [91.78069980551292, 26.534618462570336], [91.78049419551743, 26.53452359485885], [91.77896553150013, 26.532618152549883], [91.7763089446087, 26.529673996668215], [91.77812242846998, 26.526800533476063], [91.77823280357065, 26.526841215054294], [91.77936011738699, 26.528552310249424], [91.78063916653629, 26.528837471280276], [91.78131122225147, 26.52918545830709], [91.78385664711804, 26.52675016111839], [91.78367170645895, 26.525820342999467], [91.77745684421812, 26.52483250602732], [91.77742598439316, 26.52480295982732], [91.7769956473546, 26.524439542552667], [91.7758579696748, 26.523066868509044], [91.77586841618326, 26.52268781875693], [91.77901512838528, 26.52096600847902], [91.78000337491079, 26.52093506349882], [91.78306913632927, 26.520151868745117], [91.78359084460865, 26.520043867156947], [91.7840026089787, 26.51954318906674], [91.78529733193305, 26.51895736384018], [91.77785283327344, 26.513018061410904], [91.77801364338741, 26.512679720547336], [91.78057055860477, 26.51180405644696]]]
+ }, "properties": {"name": "UDALGURI"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[94.16121715886763, 26.347724559608086], [94.17748936679001, 26.382110559061626], [94.17164264133915, 26.42988329650841], [94.18318376491814, 26.45537688447505], [94.23653160236945, 26.5062347125067], [94.25624635298823, 26.541321533380493], [94.28469461373244, 26.561167127376326], [94.28965598658877, 26.479813169797808], [94.31649403694912, 26.458412597230947], [94.32543083312842, 26.482047685287004], [94.35275547931859, 26.490156996955907], [94.34769992169801, 26.50455607346139], [94.37208147591335, 26.5061425328616], [94.3760494279481, 26.52187896724533], [94.40078399491726, 26.534250688208996], [94.41329164465658, 26.577286687946696], [94.40335747417019, 26.611306626644573], [94.45118466922884, 26.636389025566817], [94.46540371828051, 26.633158866822257], [94.4530547756991, 26.652647911445897], [94.46019316713743, 26.66172797307085], [94.49258343207943, 26.665987229894213], [94.50815746307477, 26.685402682646465], [94.51748953504703, 26.68203006387576], [94.5206088252767, 26.699311605014746], [94.56226183560719, 26.70516635756376], [94.56700534724416, 26.683629109819076], [94.57723154385975, 26.700758713134046], [94.59378765983611, 26.697292840082604], [94.59327563090393, 26.71506841823642], [94.6032556963182, 26.71260635325542], [94.59205773366928, 26.724973942404723], [94.57266531204918, 26.752232434159655], [94.55635920260629, 26.756490658301313], [94.54959812694348, 26.748748023315272], [94.51223443914398, 26.771873527540833], [94.52428067822075, 26.788769016956675], [94.51533474707334, 26.794953799268573], [94.52587539805585, 26.799767566341355], [94.50370162522944, 26.82603670899936], [94.48576166533768, 26.83086763740577], [94.49654789505762, 26.86674128567154], [94.49270941361151, 26.882162747107554], [94.47419672831879, 26.89249369068861], [94.48201787171242, 26.905192839297086], [94.47382095135737, 26.935225101767372], [94.41791053750578, 26.94318991547383], [94.40575638740717, 26.932934444287387], [94.39663572136061, 26.95272537378688], [94.37137680596345, 26.916076973698225], [94.32013409043046, 26.879541658349222], [94.31210164890895, 26.87848753124837], [94.30472645347685, 26.90950163823293], [94.25366252155001, 26.908254273934542], [94.20919075236816, 26.926461169854576], [94.19278134026088, 26.912087902425483], [94.12851884454675, 26.892418613155055], [93.99960027603971, 26.866740052392124], [94.00838322494683, 26.83395920996385], [93.9801609982944, 26.81064627763084], [93.97329854056525, 26.796138527150152], [93.98750955149177, 26.786565511647503], [93.97197181423053, 26.76822391813844], [93.99750263259618, 26.76619292438881], [94.00472525995706, 26.74434972377262], [94.04617553310433, 26.738557164756305], [94.03592931034612, 26.709728393473263], [94.04339576472962, 26.68102734420933], [94.05386079912473, 26.679033755630112], [94.05665801457891, 26.663037413577378], [94.08238963246174, 26.66155808550589], [94.09784844643706, 26.641863529149386], [94.06887520754584, 26.59428582570983], [94.08249683561108, 26.584867798842716], [94.07805885088374, 26.574392157628534], [94.09957904184876, 26.576717087363154], [94.11474264247224, 26.55494905814628], [94.10574119184703, 26.549740366186146], [94.1164040918616, 26.54485845321543], [94.09729572292419, 26.49500261204592], [94.09968736429896, 26.470376108618936], [94.1270078674591, 26.45057213930442], [94.11469682030793, 26.41504053889828], [94.13327169776436, 26.3515838883088], [94.16121715886763, 26.347724559608086]]]
+ }, "properties": {"name": "JORHAT"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[93.14263543528998, 25.718501852531986], [93.22649619797832, 25.72676440983884], [93.22711653588597, 25.765432678029786], [93.24524788544225, 25.779154542848612], [93.24740091002305, 25.807877520869848], [93.23922683113068, 25.85104153189256], [93.18302660459878, 25.903289293488807], [93.1735289596449, 25.95244877473167], [93.15860019750129, 25.96159685122479], [93.15825115889427, 25.995305296825794], [93.12720343961915, 26.031035535841486], [93.09340379075995, 26.033063076014717], [93.10842481167985, 26.078156386544723], [93.05949896085905, 26.079645523323162], [93.03995822199563, 26.08740702722501], [93.03589934518277, 26.108521470675257], [92.95461763759032, 26.140696302374387], [92.93404503180783, 26.13656776562234], [92.93125238159188, 26.151227396637946], [92.95604146821394, 26.17427276786018], [92.93942737766415, 26.202505870038042], [92.8019765441132, 26.201766714872598], [92.7763093848436, 26.199574876963712], [92.77845175810009, 26.186898781016765], [92.75554892875881, 26.18058548833707], [92.76171272626729, 26.157100730696293], [92.75142793434235, 26.141981693065357], [92.72254578551929, 26.15087842846593], [92.7058733466968, 26.1422290877836], [92.7038154950271, 26.12517961350845], [92.73207771018437, 26.11532821719194], [92.72302946092614, 26.100853276404393], [92.74118335729771, 26.100979178137088], [92.72988990373409, 26.089508545607103], [92.73922409662877, 26.08573121840641], [92.73238996637377, 26.071333270424457], [92.75092707236749, 26.075492192249232], [92.75359088530705, 26.056450727357706], [92.74567310025682, 26.03989654364003], [92.76503569511456, 26.02916227151551], [92.7587007137472, 26.01457081870035], [92.78263409756896, 26.009876263353075], [92.75709902747708, 26.002650232375352], [92.77907900045903, 25.996004847969235], [92.75926260007596, 25.991215493474428], [92.77052525759501, 25.98917508854301], [92.76233682631936, 25.96125936098856], [92.77561750061516, 25.94830717472386], [92.79423168745014, 25.96455266232472], [92.80628773073992, 25.95778906001097], [92.7936630314174, 25.956329275076595], [92.79005137368223, 25.93814347789031], [92.80059052807145, 25.918480611215536], [92.81777593815883, 25.923881728483703], [92.83426931849066, 25.91351578460957], [92.85416957840215, 25.924888809745678], [92.84762589234312, 25.904036612926927], [92.8680767036411, 25.868316574961007], [92.98231696030575, 25.875407654418005], [93.02892304036439, 25.812144835593354], [93.07538654970264, 25.78284498928583], [93.06366486654811, 25.776702405823013], [93.07502925467982, 25.76614558640267], [93.09880223083292, 25.77700174477719], [93.12920349188686, 25.76114865913017], [93.12576913823256, 25.748668827189057], [93.14854091415373, 25.733989459807486], [93.14263543528998, 25.718501852531986]]]
+ }, "properties": {"name": "HOJAI"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[93.14518030589602, 26.591683278275532], [93.16758548653625, 26.611970276490112], [93.21982406900334, 26.630970755743547], [93.2417164679232, 26.68378537174748], [93.27390154507786, 26.685242829546645], [93.30395902716079, 26.700333453358997], [93.33093646191726, 26.708747052118653], [93.34521107087097, 26.73162115994783], [93.37211346306357, 26.745780548926074], [93.47496700486842, 26.756957796675685], [93.53770654715547, 26.750461036564058], [93.57489063567857, 26.7192327849986], [93.65094777930781, 26.70612042278179], [93.67054101751305, 26.711986471215774], [93.64920114717165, 26.757555645614794], [93.6487205161553, 26.788061512697112], [93.67035699223722, 26.800908289148364], [93.68937870968232, 26.797502803898166], [93.7124091123704, 26.81601483130378], [93.75098469755675, 26.803578812066394], [93.76995155488743, 26.84477657908691], [93.78915808543087, 26.859252513161138], [93.7809008054752, 26.885361853782076], [93.73956199349172, 26.89852698200723], [93.7490766058247, 26.91396548173878], [93.7441939029294, 26.957797512665767], [93.69768446362899, 26.994278842020524], [93.66004233312569, 26.967052589908352], [93.48902456827308, 26.93627427771936], [93.4624127532271, 26.937977877758215], [93.44869359776641, 26.950879221453757], [93.32402609254244, 26.960176564527895], [93.10729843480635, 26.92585587843807], [93.08815153982137, 26.914489580656674], [93.06168219129127, 26.922166506508823], [93.06120602849514, 26.87243545855672], [93.04330102025449, 26.850790419116656], [93.06415768141468, 26.82227059848148], [93.05787306050046, 26.80307974451836], [93.0744810631676, 26.768204830998812], [93.06808309822073, 26.74661348240312], [93.08408765849407, 26.701705546071448], [93.10372355859047, 26.695323044635646], [93.12338462229464, 26.65953848263524], [93.14518030589602, 26.591683278275532]]]
+ }, "properties": {"name": "BISWANATH"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[92.41902918335708, 26.517032224484666], [92.44747386790816, 26.517650146817076], [92.46749000869464, 26.496233734778965], [92.52262981086459, 26.508050806132527], [92.5758682173446, 26.499656007025724], [92.66305387666479, 26.52230042615434], [92.6886975620577, 26.509951359553746], [92.72161258595774, 26.536298607056374], [92.72878967681851, 26.517774413318225], [92.75089552173806, 26.511346199102032], [92.77148754011388, 26.555791530587538], [92.79470495048452, 26.55700231734672], [92.84207295641436, 26.58435962418033], [92.91698904649499, 26.594894345605482], [92.95124070424896, 26.620336709870788], [92.9931171983542, 26.61362445540411], [93.01380080715974, 26.597644832389488], [93.07115467802731, 26.597851283248485], [93.09660113111305, 26.57698456964916], [93.14518030589602, 26.591683278275532], [93.12338462229464, 26.65953848263524], [93.10372355859047, 26.695323044635646], [93.08408765849407, 26.701705546071448], [93.06808309822073, 26.74661348240312], [93.0744810631676, 26.768204830998812], [93.05787306050046, 26.80307974451836], [93.06415768141468, 26.82227059848148], [93.04330102025449, 26.850790419116656], [93.06120602849514, 26.87243545855672], [93.06168219129127, 26.922166506508823], [93.0216010826893, 26.913554232832084], [92.91707319348427, 26.96302748312469], [92.91833856219014, 26.98240276574647], [92.8865374609205, 26.999842458581572], [92.79340482775697, 27.0229428359223], [92.72284909359013, 27.01830983558118], [92.67744911768305, 27.03175737164939], [92.6447295114933, 26.986760119856022], [92.58327296734956, 26.959637409533226], [92.44739993117038, 26.95890848050924], [92.42573827081945, 26.941136471771006], [92.41194577869558, 26.942857508078447], [92.39826127934022, 26.9247872708898], [92.36484227361635, 26.932061895628166], [92.34954744170625, 26.911448638952997], [92.32790812694803, 26.812631345524387], [92.34032211384425, 26.77123556519776], [92.3286985707362, 26.771642877747745], [92.3341783855975, 26.742114502005194], [92.32351918933686, 26.73912817481815], [92.33738782535917, 26.73312608002778], [92.33196285893418, 26.725155078301217], [92.34191711485201, 26.72920111688752], [92.33182333260424, 26.721892358251843], [92.34631510568462, 26.704770125264886], [92.33241599970621, 26.694446076017194], [92.33148510791662, 26.662735627786187], [92.34885049187791, 26.664150117603853], [92.35298198131181, 26.686797466296618], [92.34449493835764, 26.692761932593537], [92.3640673895472, 26.698162941106208], [92.3630627927852, 26.643166930670397], [92.38831547297595, 26.648653061999774], [92.40182962390567, 26.635808692687505], [92.39535449906577, 26.627024009182566], [92.37578360196164, 26.629357760493015], [92.37581448065121, 26.61362465297574], [92.35742515291165, 26.61184076472703], [92.36058662533208, 26.5823438369255], [92.35222538514522, 26.570014971545852], [92.36612992413448, 26.566185163214787], [92.36094199796015, 26.558652780462193], [92.38074099438292, 26.527487651957685], [92.35422615696346, 26.53481071893215], [92.33143542030162, 26.51586519071016], [92.34418479770073, 26.50466860351584], [92.41902918335708, 26.517032224484666]]]
+ }, "properties": {"name": "SONITPUR"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[92.36058662533208, 26.5823438369255], [92.32723321638687, 26.587399979326076], [92.32537019403091, 26.596739241923185], [92.34427240949208, 26.597790212324686], [92.33179631936532, 26.606349731818295], [92.33482023007136, 26.62199772320135], [92.3119046725008, 26.607150852655977], [92.31427558884366, 26.624072824808454], [92.29419317933865, 26.62202087031418], [92.28961750892934, 26.650948083971226], [92.2758378833753, 26.65752108391362], [92.27317338142791, 26.616261805598544], [92.24223720955486, 26.60322223466325], [92.25266497105224, 26.573861153215017], [92.2646924030002, 26.570619861953606], [92.23055264838115, 26.548747836450243], [92.23458193918013, 26.596964499390523], [92.22031852053992, 26.628191297130655], [92.19371328745007, 26.634945453668475], [92.20508788493497, 26.6406719303609], [92.20210076383309, 26.65131135597366], [92.18434277566847, 26.64478028897239], [92.17689210198958, 26.65144425608117], [92.1812481226338, 26.67022876619797], [92.11858787104359, 26.6526219292074], [92.12152982844626, 26.643688055389358], [92.07273678545536, 26.646912986555417], [92.07040130315892, 26.624523968043768], [92.0372577253927, 26.62042673136083], [92.03861745672926, 26.609102013786227], [92.02549550216774, 26.609466963336462], [92.03319093891378, 26.592684712428728], [92.0095603960389, 26.589870637442846], [92.00586116154666, 26.559595743151807], [92.02846679944591, 26.545865922011455], [92.05684619983201, 26.546872385487234], [92.06247891064959, 26.587318705719927], [92.07948787993706, 26.589315251324454], [92.08666887307945, 26.575910781233514], [92.100698670457, 26.579333049189373], [92.10867034633941, 26.57032659846704], [92.1070804684237, 26.55213983928767], [92.06844819505132, 26.545094085359107], [92.06846644432632, 26.510054631862214], [92.05665745570596, 26.509099464371076], [92.05053067238042, 26.47542512673445], [92.0384179031754, 26.485739989297375], [92.04085962293232, 26.509995519791346], [92.02508400998721, 26.508887818186107], [92.03447766147225, 26.52434152773307], [92.01941161878692, 26.521872411614652], [92.02821193931496, 26.542191481066784], [92.00358536421597, 26.543497665584056], [92.01314559928728, 26.536507447707326], [92.00499639205019, 26.534568377347036], [91.99025503644117, 26.555062912867683], [91.97011300395411, 26.556071074657897], [91.9588280035373, 26.55174834263914], [91.96503515553808, 26.53985704530304], [91.92786391202524, 26.53730122693403], [91.92193472931613, 26.56761494382892], [91.89666730687324, 26.56960349319654], [91.88431954288149, 26.53848735080401], [91.86994462534818, 26.531833008942677], [91.85405616154551, 26.53836254014275], [91.84994041149372, 26.57301664597528], [91.83781729639156, 26.574562780541438], [91.83737596038068, 26.586180116455573], [91.82086239131114, 26.572061779254238], [91.8313704460252, 26.571208202436484], [91.82997982521931, 26.558148367315372], [91.81296641016951, 26.5593802343698], [91.80978777004569, 26.543953063376186], [91.82755437395218, 26.544957221984635], [91.83320690429989, 26.515283563591954], [91.8171892349116, 26.50545454063386], [91.78057055860477, 26.51180405644696], [91.78057056040143, 26.51180400500052], [91.78685833170734, 26.497477850642916], [91.78601153929634, 26.492935823639947], [91.7875717108239, 26.492230064618752], [91.80165496694401, 26.48984204158054], [91.79981264626377, 26.478069848536258], [91.78435608616151, 26.4769827883072], [91.77892866643748, 26.47933553093045], [91.77899899194782, 26.479141504399223], [91.77942114982572, 26.477972987422667], [91.77922649388677, 26.47691235606886], [91.77766140498133, 26.471495820358246], [91.77409765979014, 26.46979200129881], [91.77292474479506, 26.46932181387292], [91.76825321965336, 26.467319213718596], [91.76722949955557, 26.468261619835275], [91.76596949738523, 26.464393152916653], [91.7655501521325, 26.462488401160154], [91.76572093534276, 26.46213195383579], [91.76577620598724, 26.461987606645998], [91.76456473170687, 26.459964968168954], [91.77207131563074, 26.4473840622915], [91.77191514351858, 26.442523592350483], [91.77215824290583, 26.4397121630524], [91.7736110280277, 26.429116956242876], [91.77452641759042, 26.42555236913938], [91.77727131606078, 26.42772944390993], [91.77889772576415, 26.41861899233838], [91.78263392593031, 26.415782804897884], [91.78186777079081, 26.414933966417113], [91.78067515574149, 26.414653333231612], [91.78090320924606, 26.411453839615668], [91.78672948814277, 26.407919393876764], [91.78867404249219, 26.407794237130393], [91.79079849435877, 26.408517566681272], [91.79461166756836, 26.409404275029633], [91.79483186620408, 26.40245897913171], [91.79590483913226, 26.401633740296777], [91.79787620998955, 26.398696853776592], [91.79860960716394, 26.39589929354786], [91.80419655061444, 26.388203076667136], [91.8029947457998, 26.38678994393868], [91.8109587464764, 26.383007322012173], [91.81170034706595, 26.382840625174417], [91.81863690951785, 26.378465994757736], [91.81898800706348, 26.377712482506848], [91.82051712473002, 26.364499145816833], [91.82293215014992, 26.363601979246074], [91.81953713462026, 26.36024760153857], [91.81960753558906, 26.359651842152314], [91.82086559829669, 26.35833008593934], [91.81619086706776, 26.34994314097113], [91.81892215516326, 26.34704696299687], [91.81907888423089, 26.326142073930978], [91.81794082207217, 26.324869829530066], [91.80856180683809, 26.31970677395083], [91.81594623784962, 26.317494780947232], [91.8041035570162, 26.31675382247783], [91.79181704375377, 26.320696114561017], [91.79310150345601, 26.317122557820806], [91.79281705461626, 26.315660261808038], [91.79125253614102, 26.31157956972827], [91.7897600167375, 26.31198037509556], [91.7843144429599, 26.302102648148175], [91.78680679446116, 26.276488396733868], [91.78627141831477, 26.26273240585259], [91.78568158719415, 26.261635392885264], [91.78542680611497, 26.254292626115667], [91.78428823281484, 26.25102899809423], [91.77506323014296, 26.240484343300167], [91.76371101148838, 26.232235199602954], [91.75475934549623, 26.226699550693564], [91.74426893099938, 26.214471769025124], [91.75465485705563, 26.206417898955642], [91.75500023682451, 26.20621960278231], [91.76852841494737, 26.200241416478786], [91.78548061250555, 26.202689976419734], [91.78586338913966, 26.202875824278472], [91.78853618523209, 26.204127018042506], [91.79098163389573, 26.205527464022644], [91.79594402454327, 26.20614852679799], [91.82170327280755, 26.207839145973836], [91.82525467514675, 26.20967275479168], [91.8315774295448, 26.212707575886043], [91.84697646512952, 26.21618633335211], [91.85291372728629, 26.216781692142046], [91.87647617067614, 26.216563564157816], [91.8858279085666, 26.221482400651922], [91.89167755803372, 26.2239775563285], [91.89728208420927, 26.226075353287374], [91.90751102427977, 26.230324586125775], [91.91865073836902, 26.245670444592193], [91.92251995477426, 26.247162978445125], [91.93335790409833, 26.242979966266258], [91.9651111700791, 26.263630638218864], [91.97773134009593, 26.274193974002934], [91.97864382001548, 26.274221626237356], [91.99208257714004, 26.269697719574918], [92.01541851212757, 26.28312152796202], [92.02430467835912, 26.271078355714643], [92.04009623280724, 26.273056166925894], [92.08419016339407, 26.338942381411997], [92.0998517091627, 26.340999337078603], [92.15135755292054, 26.408557725285387], [92.18190126611732, 26.424456784544123], [92.21866421275708, 26.4156822686283], [92.24462781068056, 26.446111464539197], [92.28119441614193, 26.45421100057955], [92.34418479770073, 26.50466860351584], [92.33143542030162, 26.51586519071016], [92.35422615696346, 26.53481071893215], [92.38074099438292, 26.527487651957685], [92.36094199796015, 26.558652780462193], [92.36612992413448, 26.566185163214787], [92.35222538514522, 26.570014971545852], [92.36058662533208, 26.5823438369255]]]
+ }, "properties": {"name": "DARRANG"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[94.83683442197271, 27.09187467348861], [94.88947481457818, 27.16020071852681], [94.96785022878308, 27.226941715417777], [94.98443906858857, 27.168470251270012], [94.9783304384183, 27.147992561034645], [95.04887642406769, 27.15533396923835], [95.06513924279871, 27.135586576775545], [95.11270849291171, 27.136306953132014], [95.11515513902965, 27.12711543589808], [95.1162237820782, 27.136022974434958], [95.12388462290598, 27.130202218346568], [95.13595897296292, 27.138545054951653], [95.1531837202766, 27.124125514813173], [95.15427637169941, 27.136150784723903], [95.16207053599011, 27.127773908517803], [95.1703686686299, 27.144927530671357], [95.17994025660978, 27.141972905826236], [95.1835276670188, 27.16301263883305], [95.1949032391758, 27.15512427448684], [95.21111043781768, 27.174197910303494], [95.21977516484012, 27.165050225815996], [95.23841550612458, 27.17010819529617], [95.23706334129767, 27.189679340979893], [95.25452598944804, 27.193091020119383], [95.2576991291874, 27.18405079432092], [95.28725758096033, 27.197203435952343], [95.34237293907306, 27.183193075149145], [95.35820866188708, 27.166689192664176], [95.36876473245142, 27.10768956454085], [95.3745782786273, 27.0927713957533], [95.42055258791967, 27.12588077309633], [95.43951507314988, 27.12601310898905], [95.44431201747825, 27.135311015944794], [95.45317956253227, 27.129530325551606], [95.46650750797497, 27.18173571695251], [95.45580165232012, 27.203677318963997], [95.48417127903595, 27.241345524582417], [95.4672882634328, 27.26360228468032], [95.45106134497378, 27.23124216823596], [95.43986490496927, 27.254976634776263], [95.46053747886987, 27.270406758971017], [95.44593488332782, 27.294373793633145], [95.48072957985758, 27.320795869880783], [95.46750521645536, 27.316802900150897], [95.44834116814005, 27.335314963834108], [95.46571821852191, 27.34262364540432], [95.47389611166098, 27.367214760887727], [95.45405945247158, 27.374866829652618], [95.43934459626513, 27.36421190391803], [95.39009820678801, 27.391002283793], [95.36270005505136, 27.382555767768498], [95.34842289937382, 27.393821044010043], [95.30935325784917, 27.389106583658517], [95.29537325408785, 27.4151078013641], [95.24889819960158, 27.40408688844935], [95.25179785893076, 27.434150225587555], [95.22009800947177, 27.44301474580742], [95.22907299483042, 27.498711932698065], [95.26641711462807, 27.509068391343167], [95.26535578656093, 27.544104940274643], [95.28253453923372, 27.54683815427145], [95.2732712647375, 27.574292918310995], [95.28479102637905, 27.567573127121985], [95.3002681552064, 27.584764641822524], [95.31844677231628, 27.587408198249232], [95.28919937748185, 27.663644178977233], [95.26980925824378, 27.681268837812944], [95.24651666607039, 27.656626361451707], [95.2048146337765, 27.658122848229826], [95.18886937758325, 27.67636103110676], [95.19573352863672, 27.704740754013333], [95.11786093473401, 27.6857225770053], [95.09304997682972, 27.660299959337816], [95.03609325833578, 27.668474794175946], [95.01679285025192, 27.656395293781785], [94.99652408703783, 27.659170022956566], [94.95586377258846, 27.61411646799926], [94.89446742814513, 27.578870857412646], [94.79322477944373, 27.482686450911007], [94.77112576980518, 27.48236904013215], [94.74628651586775, 27.43752977088928], [94.73173223980652, 27.443131386513027], [94.71884598431093, 27.427329967523814], [94.69326037589948, 27.421582247034213], [94.69087610250668, 27.39334925847513], [94.66289612723186, 27.374507204401105], [94.66645017241463, 27.352499161592252], [94.638554979238, 27.338086601748635], [94.63822059754318, 27.321360748335156], [94.62204758339112, 27.33295766586348], [94.60655267151441, 27.328688879096198], [94.61379517589755, 27.306425057134394], [94.58664099311734, 27.26731228491282], [94.56755479460118, 27.179143785122847], [94.59308581957937, 27.145569370691437], [94.64195504240128, 27.24661073816864], [94.67834731720538, 27.24321450349474], [94.69485183485008, 27.272014098497092], [94.72062950576424, 27.24553772629986], [94.7179183147783, 27.263104698595598], [94.73822406342926, 27.275097124601952], [94.74992697808251, 27.268192140474575], [94.7413202265319, 27.247101267006443], [94.77392988342244, 27.23658489418075], [94.7661321609049, 27.22033035846787], [94.78099606288838, 27.199577711460712], [94.76841554450816, 27.18483459795501], [94.77862766542158, 27.171115277795494], [94.75349563526169, 27.14045547487648], [94.76064380755683, 27.12984048207878], [94.81757013963798, 27.114568360998824], [94.80840039593248, 27.0967137437836], [94.83683442197271, 27.09187467348861]]]
+ }, "properties": {"name": "DIBRUGARH"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[92.42243290805344, 24.25495851034798], [92.43290613418566, 24.256076118351835], [92.46373072002906, 24.30061192352184], [92.49143091321197, 24.368987490420068], [92.5172064542206, 24.573986273371023], [92.50457297117123, 24.58957759371945], [92.50636156720759, 24.663977528135806], [92.49365311795114, 24.683280637386105], [92.52495857286443, 24.751743445372494], [92.5451299461253, 24.765600084511377], [92.54464874557704, 24.807583771782603], [92.58289361239831, 24.844495879367003], [92.5797540346163, 24.87363168604502], [92.55625750600876, 24.877374177163563], [92.52603767409948, 24.861071263487396], [92.51504334066084, 24.87951623659557], [92.49236765752565, 24.87434523311098], [92.44460870298754, 24.872012279729514], [92.43845344755907, 24.85614698741995], [92.40631806790088, 24.85908727761839], [92.40020249285512, 24.848700384321553], [92.3485589526356, 24.891054498229817], [92.33952562169927, 24.87816115051481], [92.2994689400865, 24.915618298495392], [92.23349171500523, 24.89974313102714], [92.24705736365524, 24.885001145161567], [92.24597566000082, 24.867486513428418], [92.2346945843235, 24.861586615422652], [92.24136996879307, 24.84208159674276], [92.25325642542856, 24.838056255367107], [92.24885287851589, 24.829704638962948], [92.27301335284824, 24.82755374730351], [92.27343232619846, 24.79937993465497], [92.2888946337219, 24.784771986017912], [92.27897171373611, 24.74565394051863], [92.29587194914498, 24.736559082797047], [92.25435623642416, 24.67813896758974], [92.23121547121187, 24.54700029127551], [92.21169868233224, 24.504481310162475], [92.22976598739866, 24.50244222794547], [92.23648263508247, 24.48881510607418], [92.22997949807706, 24.451691476701853], [92.24662051652585, 24.44195532354863], [92.25983908220122, 24.358549943473466], [92.2188372561286, 24.285726366776107], [92.20972433625472, 24.248310571855974], [92.19229319202137, 24.24326784552022], [92.21992383134679, 24.23433268872984], [92.26651993741085, 24.25104061834262], [92.42243290805344, 24.25495851034798]]]
+ }, "properties": {"name": "KARIMGANJ"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[91.72299193823628, 26.0349624526375], [91.73098805548095, 26.05902292575456], [91.77720671641207, 26.08944199718257], [91.7912888451465, 26.085328012654582], [91.82532618283999, 26.119502083417235], [91.87909669829372, 26.098072609205595], [91.86722353492779, 26.042114073171824], [91.8829691728885, 26.026197178975956], [91.91461713026679, 26.02059552008099], [91.91890894741935, 25.99792914198682], [91.93107164498785, 26.01245281507831], [91.98349329692336, 26.025899169010575], [91.98898056061495, 26.038626473922886], [92.05135072194541, 26.03288550507361], [92.09721119403004, 26.04932030880871], [92.13253907930849, 26.044335723764906], [92.17504048374617, 26.081688995957443], [92.16868122181499, 26.095902516866555], [92.16872087614657, 26.096093139729618], [92.16985029291901, 26.097309002597115], [92.16551207329043, 26.15293824241132], [92.16372017864039, 26.162524526767314], [92.16067041801374, 26.165165527150048], [92.1523944063878, 26.168561215743726], [92.15223861875457, 26.165866880970306], [92.15197314413024, 26.16404365509911], [92.14623178207903, 26.163593336507784], [92.14470664933911, 26.164568362915738], [92.14009098683168, 26.16752952915957], [92.13250446093238, 26.17193943877366], [92.13047945526274, 26.17985546490707], [92.12981924832614, 26.180514399932992], [92.11171826182645, 26.17428584601822], [92.11062296756009, 26.173703574719205], [92.09705867626448, 26.174708067701683], [92.09087633393526, 26.176168975012803], [92.07986210371138, 26.177835744981643], [92.09160292008315, 26.189943024024856], [92.08679662878423, 26.18719338218056], [92.07878772312317, 26.188585596775898], [92.06683392338407, 26.196140684333795], [92.05188244374524, 26.207207189849075], [92.05125330055117, 26.209879705042376], [92.05615318013302, 26.220039104503087], [92.03463278525042, 26.227450112787], [92.03000195019786, 26.232097923029823], [92.01452421770266, 26.227861778781037], [92.01246747635064, 26.239501351083717], [92.0069726416578, 26.239575076130755], [91.99831931245971, 26.236904704780823], [91.99724100264041, 26.236888538710883], [91.98005007779551, 26.239231048340766], [91.97607374178422, 26.25770851434535], [91.97846599042012, 26.27259738118273], [91.97875164839226, 26.2736878037987], [91.97773134009593, 26.274193974002934], [91.9651111700791, 26.263630638218864], [91.93335790409833, 26.242979966266255], [91.92251995477426, 26.247162978445125], [91.91865073836902, 26.245670444592193], [91.90751102427977, 26.230324586125775], [91.89728208420927, 26.226075353287374], [91.89167755803372, 26.2239775563285], [91.8858279085666, 26.221482400651922], [91.87647617067614, 26.216563564157816], [91.85291372728629, 26.216781692142046], [91.84697646512952, 26.21618633335211], [91.8315774295448, 26.212707575886043], [91.82525467514675, 26.20967275479168], [91.82170327280755, 26.207839145973836], [91.79594402454327, 26.20614852679799], [91.79098163389573, 26.205527464022644], [91.78853618523209, 26.204127018042506], [91.78586338913966, 26.202875824278472], [91.78548061250555, 26.202689976419734], [91.76852841494737, 26.200241416478786], [91.75500023682451, 26.20621960278231], [91.75465485705563, 26.206417898955642], [91.7487331501263, 26.208966411392197], [91.73142722565369, 26.21089906286072], [91.71182218897549, 26.19138029469156], [91.69475950223067, 26.204030617289085], [91.67186824408851, 26.201853841960013], [91.68228882984339, 26.215836565976264], [91.66464190938049, 26.21968743312166], [91.64349852754117, 26.195526923398365], [91.65735351635766, 26.182264326802134], [91.64900399379542, 26.16563164153534], [91.56476603301084, 26.149288238164676], [91.56132283544257, 26.139355622516504], [91.56414022076984, 26.104304381561164], [91.58717759707946, 26.090259798905176], [91.56944798130478, 26.0590911425798], [91.57942091948556, 26.068221561623773], [91.58649124557483, 26.057722742530668], [91.59827521611453, 26.060882000800557], [91.60017923578339, 26.075594656392116], [91.62928402755807, 26.07470635381045], [91.72299193823628, 26.0349624526375]]]
+ }, "properties": {"name": "KAMRUP METRO"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[91.04152422077361, 25.921832521741532], [91.02783881142487, 25.86942520954938], [91.00152042926985, 25.824652027200628], [91.02238414130669, 25.82386066455474], [91.04815006944345, 25.849297943853045], [91.07843386768914, 25.852831918914173], [91.0488146008698, 25.82936757294153], [91.06206445666317, 25.820872830446785], [91.12029334410963, 25.833024124545037], [91.14747965603428, 25.850586575652652], [91.18015726778113, 25.844067164555277], [91.19575907827834, 25.861488648931356], [91.20357237488797, 25.84330915194441], [91.17819075770785, 25.77744678725619], [91.19040807554057, 25.747923276541876], [91.22238172790492, 25.72265861284828], [91.27446571929478, 25.750542948076053], [91.33528283004291, 25.840639726283577], [91.42239404597551, 25.854569667529262], [91.44507565799161, 25.8398336556146], [91.46300843225937, 25.85709169088272], [91.53036021177769, 25.871349940913696], [91.52651272112759, 25.891169578931336], [91.51306440143682, 25.865808916508243], [91.47473593020871, 25.8741169282293], [91.48392659567718, 25.893132945152246], [91.50383017666027, 25.891265236824577], [91.50480654925434, 25.907865755842906], [91.53688185048469, 25.931307811754824], [91.50459834222939, 25.911489685288917], [91.51800310261203, 25.95982821407508], [91.5511741167236, 25.976691540937153], [91.57976919991451, 26.033343677282733], [91.59746172964098, 26.01817031999596], [91.63102277877422, 26.022063079192282], [91.62599027551708, 25.986778352890553], [91.64064155166271, 25.963854467442463], [91.62974157456657, 25.943346580594497], [91.61180724351838, 25.945122846846804], [91.6093986608157, 25.937488106143512], [91.65141985644519, 25.906378319198446], [91.67052640898906, 25.904247796495582], [91.7200338048703, 25.953692266260425], [91.72299193823628, 26.0349624526375], [91.62928402755807, 26.07470635381045], [91.60017923578339, 26.075594656392116], [91.59827521611453, 26.060882000800557], [91.58649124557483, 26.057722742530668], [91.57942091948556, 26.068221561623773], [91.56944798130478, 26.0590911425798], [91.58717759707946, 26.090259798905176], [91.56414022076984, 26.104304381561164], [91.56132283544257, 26.139355622516504], [91.56476603301084, 26.149288238164676], [91.64900399379542, 26.16563164153534], [91.65735351635766, 26.182264326802134], [91.64349852754117, 26.195526923398365], [91.66464190938049, 26.21968743312166], [91.68228882984339, 26.215836565976264], [91.67186824408851, 26.201853841960013], [91.69475950223067, 26.204030617289085], [91.71182218897549, 26.19138029469156], [91.73142722565369, 26.21089906286072], [91.7487331501263, 26.208966411392197], [91.75475934549623, 26.226699550693564], [91.76371101148838, 26.232235199602954], [91.77506323014296, 26.240484343300167], [91.78428823281484, 26.25102899809423], [91.78542680611497, 26.254292626115667], [91.78568158719415, 26.261635392885264], [91.78627141831477, 26.26273240585259], [91.78680679446116, 26.276488396733868], [91.7843144429599, 26.302102648148175], [91.7897600167375, 26.31198037509556], [91.79125253614102, 26.31157956972827], [91.79281705461626, 26.315660261808038], [91.79310150345601, 26.317122557820806], [91.79181704375377, 26.320696114561017], [91.8041035570162, 26.31675382247783], [91.81594623784962, 26.317494780947232], [91.80856180683809, 26.31970677395083], [91.81794082207217, 26.324869829530066], [91.81907888423089, 26.326142073930978], [91.81892215516326, 26.34704696299687], [91.81619086706776, 26.34994314097113], [91.82086559829669, 26.35833008593934], [91.81960753558906, 26.359651842152314], [91.81953713462026, 26.36024760153857], [91.82293215014992, 26.363601979246074], [91.82051712473002, 26.364499145816833], [91.81898800706348, 26.377712482506848], [91.81863690951785, 26.378465994757736], [91.81170034706595, 26.382840625174417], [91.8109587464764, 26.383007322012173], [91.8029947457998, 26.38678994393868], [91.80419655061444, 26.388203076667136], [91.79860960716394, 26.39589929354786], [91.79787620998955, 26.398696853776592], [91.79590483913226, 26.401633740296777], [91.79483186620408, 26.40245897913171], [91.79461166756836, 26.409404275029633], [91.79079849435877, 26.408517566681272], [91.78867404249219, 26.407794237130393], [91.78672948814277, 26.407919393876764], [91.78090320924606, 26.411453839615668], [91.78067515574149, 26.414653333231612], [91.78186777079081, 26.414933966417113], [91.78263392593031, 26.415782804897884], [91.77889772576415, 26.41861899233838], [91.77727131606078, 26.42772944390993], [91.77452641759042, 26.42555236913938], [91.7736110280277, 26.429116956242876], [91.77215824290583, 26.4397121630524], [91.77191514351858, 26.442523592350483], [91.77207131563074, 26.4473840622915], [91.76456473170687, 26.459964968168954], [91.76577620598724, 26.461987606645998], [91.76572093534276, 26.46213195383579], [91.7655501521325, 26.462488401160154], [91.76596949738523, 26.464393152916653], [91.76722949955557, 26.468261619835275], [91.76825321965336, 26.467319213718596], [91.77292474479506, 26.46932181387292], [91.77409765979014, 26.46979200129881], [91.77766140498133, 26.471495820358246], [91.77922649388677, 26.47691235606886], [91.77942114982572, 26.477972987422667], [91.77899899194782, 26.479141504399223], [91.77892866643748, 26.47933553093045], [91.7791240212657, 26.479611962067548], [91.752251163883, 26.481591983274726], [91.75425395870727, 26.494443076974733], [91.72487169800259, 26.503059258101953], [91.7201433247748, 26.476967804815402], [91.70984076417352, 26.478931691028347], [91.67671346927017, 26.448434642657652], [91.62508802381541, 26.447223658025752], [91.629267407827, 26.464858553902435], [91.618015879536, 26.46874698754564], [91.62856379788914, 26.493449231328196], [91.61628112492453, 26.48567240146372], [91.61184230566226, 26.494598881031678], [91.61960472259248, 26.512764190907006], [91.58960233777921, 26.514492577333343], [91.57811019663768, 26.528932899874107], [91.55621535519859, 26.522615196106248], [91.55692947812021, 26.519501609472687], [91.55660636309567, 26.514392886873683], [91.55657643302703, 26.514212405435718], [91.55674021656456, 26.508494645800816], [91.55743897290495, 26.5057873092936], [91.55849686401783, 26.497629296394052], [91.56159222672157, 26.486515429024784], [91.55962401973068, 26.481672247926962], [91.55106575834078, 26.46244777319811], [91.55245880369965, 26.455489557555975], [91.56045169060256, 26.444152481267658], [91.56119048216021, 26.440596628701158], [91.56281153880278, 26.437153985622395], [91.56426311209734, 26.43149545054701], [91.56281572405369, 26.42897208180042], [91.5485087613767, 26.4111005201952], [91.54376173283539, 26.40927725329883], [91.54214545253518, 26.405742720766824], [91.54258680112248, 26.405124672935237], [91.53959783308437, 26.401228269753688], [91.53710861670342, 26.39928625154698], [91.53660250317742, 26.399290436461555], [91.53374755210159, 26.39736617002444], [91.52891047104632, 26.392926760222213], [91.52984967494722, 26.390156473087806], [91.53279861495456, 26.380478191244], [91.53381454486222, 26.37548752877863], [91.53285265850037, 26.375324404075297], [91.5202496903229, 26.355404690092247], [91.51972885251108, 26.35519213605326], [91.51960240205842, 26.35100404529156], [91.52493417006932, 26.336670209591446], [91.51206631835896, 26.332409402188606], [91.51089770898899, 26.334141490922395], [91.48589860523666, 26.33076765433079], [91.48181898542555, 26.322390161849547], [91.4659245433347, 26.316778935397135], [91.45652486235747, 26.320928152149907], [91.45526711765348, 26.32053871554579], [91.45368469934789, 26.317867943355093], [91.45339963875539, 26.31757474913775], [91.44996654184419, 26.29613131616964], [91.44911701136819, 26.2925212317832], [91.44660536315631, 26.269691325215284], [91.44481806069396, 26.269263554805228], [91.4358180877974, 26.260214493977557], [91.42039532051949, 26.26830306579373], [91.41234479501303, 26.26379239694855], [91.42228559237127, 26.232358372959478], [91.41109964379095, 26.201139254770776], [91.41740371951929, 26.182165936123422], [91.41428954250024, 26.13611063122322], [91.38510279023568, 26.142990119554398], [91.35364515622166, 26.167290791547096], [91.32873421402962, 26.16271448782772], [91.304547110039, 26.160615505023486], [91.29899218613848, 26.158818459248124], [91.29464365924036, 26.157237188588194], [91.27396516903532, 26.161557412297668], [91.23058192980574, 26.176921732449262], [91.22210213805252, 26.179396358129598], [91.11699313408008, 26.15468248888887], [91.10066466916305, 26.165151251476182], [91.081235846011, 26.161738360660774], [91.02972701176157, 26.11918213794883], [90.99813353361198, 26.128740112198383], [91.00871235670583, 26.115166309449155], [90.9952772781824, 26.119581650630845], [90.94025562154027, 26.092996308258883], [90.94329027070722, 26.091212714054716], [90.98125894420617, 26.06280961930114], [91.03280899585577, 26.0498172952043], [91.05615418079583, 26.049187733605674], [91.0705985345073, 26.04100098870394], [91.07859545394751, 26.04000415608909], [91.0894685318908, 26.031141803576634], [91.09135247421307, 26.020838377188674], [91.09972757091317, 26.009372305925904], [91.08574871340214, 25.985161748268247], [91.07430409224084, 25.970351124838707], [91.06978660930575, 25.968034220733063], [91.04974018181943, 25.944326399229404], [91.04152422077361, 25.921832521741532]]]
+ }, "properties": {"name": "KAMRUP"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[94.59205773366928, 26.724973942404723], [94.6083183479346, 26.737535650675447], [94.61903443450218, 26.7120891519951], [94.65292357622494, 26.71885094689016], [94.69373635094772, 26.73297071215485], [94.7400927927822, 26.776080755487023], [94.75823650675004, 26.766103246566406], [94.77012531966652, 26.789136212493947], [94.80262514763213, 26.80141281377266], [94.79515862318006, 26.814518194356992], [94.81436804809533, 26.81964046458717], [94.81740239183506, 26.847611104932508], [94.85003183411975, 26.87468278364488], [94.87349626861712, 26.917613366192967], [94.9238390797463, 26.946593718510627], [94.94182672400994, 26.95943752303409], [94.93896283829031, 26.98728601444868], [94.9266378591674, 26.993258479899996], [94.90055027756507, 26.983726744913323], [94.90975081372187, 26.969523861269042], [94.84804868006088, 26.92922184608042], [94.75674621966, 26.922622658406283], [94.73373862789194, 26.932608434550417], [94.7871332720611, 26.996830487641482], [94.80950669096781, 26.99159010705503], [94.82986333097625, 27.01636294554144], [94.82494318360494, 27.05713099129173], [94.83683442197271, 27.09187467348861], [94.80840039593248, 27.0967137437836], [94.81757013963798, 27.114568360998824], [94.76064380755683, 27.12984048207878], [94.75349563526169, 27.14045547487648], [94.77862766542158, 27.171115277795494], [94.76841554450816, 27.18483459795501], [94.78099606288838, 27.199577711460712], [94.7661321609049, 27.22033035846787], [94.77392988342244, 27.23658489418075], [94.7413202265319, 27.247101267006443], [94.74992697808251, 27.268192140474575], [94.73822406342926, 27.275097124601952], [94.7179183147783, 27.263104698595598], [94.72062950576424, 27.24553772629986], [94.69485183485008, 27.272014098497092], [94.67834731720538, 27.24321450349474], [94.64195504240128, 27.24661073816864], [94.59308581957937, 27.145569370691437], [94.54291313589026, 27.075312824845756], [94.50171024889073, 27.039860340809884], [94.47537647500164, 27.030979040019535], [94.46021960994617, 26.995322307536355], [94.39663572136061, 26.95272537378688], [94.40575638740717, 26.932934444287387], [94.41791053750578, 26.94318991547383], [94.47382095135737, 26.935225101767372], [94.48201787171242, 26.905192839297086], [94.47419672831879, 26.89249369068861], [94.49270941361151, 26.882162747107554], [94.49654789505762, 26.86674128567154], [94.48576166533768, 26.83086763740577], [94.50370162522944, 26.82603670899936], [94.52587539805585, 26.799767566341355], [94.51533474707334, 26.794953799268573], [94.52428067822075, 26.788769016956675], [94.51223443914398, 26.771873527540833], [94.54959812694348, 26.748748023315272], [94.55635920260629, 26.756490658301313], [94.57266531204918, 26.752232434159655], [94.59205773366928, 26.724973942404723]]]
+ }, "properties": {"name": "SIVSAGAR"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[91.00222776092791, 26.42435078710552], [90.98168916087047, 26.41631331240101], [90.98248503946611, 26.43091172195693], [90.96984366381866, 26.42879969886723], [90.97546250824155, 26.440236783598877], [90.96112851256274, 26.44433081091634], [90.9729761125706, 26.46115994059417], [90.95208937222142, 26.45712059135718], [90.9530255002908, 26.470976441246894], [90.9329869887588, 26.477759194897494], [90.9769246133845, 26.499581003023497], [90.99491439204525, 26.600849673707806], [90.98908598683629, 26.59057465610156], [90.96339314652937, 26.5985726879975], [90.96350780479729, 26.583182450296466], [90.93496025146808, 26.58414076383598], [90.93290956476109, 26.55515889257517], [90.92120082722813, 26.55957189640549], [90.92574706433714, 26.575673620091244], [90.91293477432542, 26.578609831259737], [90.89129903935361, 26.552068128042137], [90.87635361615642, 26.56328814922648], [90.87361699296646, 26.56419114305922], [90.86328309283986, 26.562681725613785], [90.84464907569502, 26.564274796121556], [90.82679166109642, 26.55932879317589], [90.82710317976898, 26.55844442448458], [90.8285522539504, 26.548489582617055], [90.82859289912375, 26.547117711378434], [90.82996928881892, 26.54289859258708], [90.83879668546795, 26.537214894034054], [90.843804075423, 26.536412846771476], [90.84702047083991, 26.534342125181514], [90.8475573678341, 26.534220386550366], [90.85098190380064, 26.518606448901377], [90.84813034925492, 26.50627685399926], [90.82733853927171, 26.502044548092815], [90.82375903763042, 26.49068350614897], [90.81405859530624, 26.498481591770215], [90.8060427429731, 26.49439748692459], [90.80383266728691, 26.48780759289638], [90.80794558944221, 26.47711410726391], [90.8107370565769, 26.475996157309712], [90.8186569921939, 26.474456081974655], [90.82411098767729, 26.45491378793094], [90.8269189424907, 26.453731404848266], [90.82749756712813, 26.4512494976169], [90.82602853507603, 26.44639759339133], [90.82416636252636, 26.444352594374656], [90.80236229943999, 26.44060113626923], [90.79923194915257, 26.430387379117246], [90.8556810395609, 26.439057553347233], [90.86164073983684, 26.431074888769196], [90.844790491182, 26.401742907087364], [90.85767777704521, 26.381230120193077], [90.86197389533132, 26.37288970857902], [90.86174668534483, 26.370691896826624], [90.850805002165, 26.361032777449694], [90.82946186644753, 26.36307198370244], [90.81792188193228, 26.366867802063435], [90.80499870298357, 26.344892958377887], [90.79933143307869, 26.334681723668222], [90.78947424192393, 26.3294050535176], [90.80291266757015, 26.305669616229565], [90.7515285859575, 26.309637804985915], [90.74906039105252, 26.30449289272252], [90.74707366978366, 26.30344887780448], [90.72036408210218, 26.282487066983975], [90.72048447701151, 26.281832057832354], [90.72019273924151, 26.26843536320567], [90.7311411669725, 26.26835088147411], [90.73330289173681, 26.257781266735304], [90.72368807502886, 26.257802742965264], [90.7028497287207, 26.25592413545304], [90.68221954991161, 26.25731169294479], [90.65333357067217, 26.23737115814208], [90.66530165542093, 26.21816125742957], [90.66661312656547, 26.214652546569997], [90.6700693056879, 26.201395574689442], [90.68434264891536, 26.17089087882552], [90.68576053269184, 26.168602758782914], [90.6925040489858, 26.154123430947635], [90.70908918324075, 26.142619622013473], [90.71445859245867, 26.130135165854004], [90.74733376978764, 26.136053246552112], [90.75429409178048, 26.13556277565954], [90.78711260248302, 26.129909023547604], [90.79325788301857, 26.12886558547767], [90.79396357165803, 26.12777386382822], [90.7941436434483, 26.12761146199554], [90.80020905656856, 26.126116392510347], [90.81048526419266, 26.12182933750541], [90.84204387782775, 26.110570732354528], [90.85599021452886, 26.112838797642343], [90.85710787774411, 26.11289298335789], [90.8766052854715, 26.095139601993644], [90.92405461678229, 26.09549335932503], [90.92472790408773, 26.09703316822081], [90.93348365829624, 26.10136306266993], [90.93939095265515, 26.094599913072464], [90.94025562154027, 26.092996308258883], [90.9952772781824, 26.119581650630845], [91.00871235670583, 26.115166309449155], [90.99813353361198, 26.128740112198383], [91.02972701176157, 26.11918213794883], [91.081235846011, 26.161738360660774], [91.10066466916305, 26.165151251476182], [91.11699313408008, 26.15468248888887], [91.22210213805252, 26.179396358129598], [91.23893220066464, 26.188193849298216], [91.24791117094989, 26.199139990013474], [91.21665674842956, 26.21853681121706], [91.21582946293495, 26.233745636521476], [91.23838968740333, 26.253417543606854], [91.24040445317704, 26.26169334487128], [91.22857683259942, 26.263924427215134], [91.22484317017391, 26.2632033328553], [91.21854704812908, 26.260173688534483], [91.21889746654838, 26.273663054496385], [91.26145166317869, 26.29116470398264], [91.25102967964523, 26.303950362564507], [91.25268164282518, 26.30430381464609], [91.26154323564211, 26.30538064468652], [91.26192638417878, 26.307854094961634], [91.25560616213153, 26.313955019213903], [91.26768155064096, 26.333537269994366], [91.27690888533931, 26.343409228281025], [91.27686165281999, 26.35206056086949], [91.27796760559718, 26.353297865080783], [91.27894374013776, 26.354214592212408], [91.27094479409826, 26.36459790924434], [91.27837371866579, 26.377555232677956], [91.27266751128492, 26.371138414021807], [91.26496236644559, 26.37087991838275], [91.26496578902683, 26.36726512090062], [91.26470569710767, 26.366768490853815], [91.26063100725088, 26.363376104108198], [91.25754937080468, 26.3640550482043], [91.25610683186694, 26.363846218164657], [91.24609099733468, 26.3715229881831], [91.24667600719715, 26.37575290803238], [91.24539627712485, 26.37847531412859], [91.24199003534908, 26.379281370871066], [91.23607110331567, 26.377453900170565], [91.23574602547222, 26.378144649836152], [91.23958456351218, 26.388701874211613], [91.23744077630745, 26.38953398271506], [91.23127237313648, 26.426995928314128], [91.23163172979287, 26.430777475313405], [91.230497357015, 26.433277836522024], [91.20111150933741, 26.427265134943465], [91.18688142538073, 26.4669570074558], [91.14422161202586, 26.45998976366439], [91.12896247647022, 26.47262146529084], [91.10268451221476, 26.450938843964174], [91.11616711071846, 26.445637807103427], [91.1106820146616, 26.429551247858868], [91.12374285683434, 26.42951375358259], [91.11184108931315, 26.412468656439977], [91.0955272642403, 26.411902988578383], [91.08475336479599, 26.425830040359862], [91.0567841935591, 26.415199875298285], [91.05677511608316, 26.42887212254422], [91.00222776092791, 26.42435078710552]]]
+ }, "properties": {"name": "BARPETA"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[91.24956358328747, 26.523283313596423], [91.2479279065636, 26.538419684704227], [91.2900501626626, 26.564378466279955], [91.25842655681501, 26.57059280294294], [91.26909822618337, 26.58439678598049], [91.23748640892723, 26.577257467779575], [91.23344083706205, 26.607553382776146], [91.24750934194687, 26.60781003846032], [91.24854323995683, 26.619424483180783], [91.19777522116938, 26.62300759485799], [91.19857321709418, 26.60391771022429], [91.18443819375919, 26.604415541971306], [91.18676243992809, 26.62199120782995], [91.17657146086489, 26.622865226371836], [91.18635233115313, 26.62774401492175], [91.15137182798829, 26.638897940769795], [91.15768559114865, 26.651509804051955], [91.14506581459392, 26.663102693181152], [91.1275149680523, 26.650111822956305], [91.12738654130604, 26.65880217377039], [91.09737658638984, 26.66538420696185], [91.09527488615448, 26.65232709276873], [91.11274894021399, 26.651462289364034], [91.11260682134615, 26.63761883652795], [91.0950426456024, 26.63917659536205], [91.09782892137308, 26.62898872518531], [91.11634444803701, 26.632118599520783], [91.12282261367415, 26.61179897927205], [91.14057850696753, 26.61158659982491], [91.14232110656637, 26.600915866777356], [91.12636709808731, 26.604690626881002], [91.10986379406656, 26.561190031279732], [91.08078350114631, 26.55627080976028], [91.07192221824813, 26.51622813113064], [91.0590160291364, 26.516152956284216], [91.05204924556172, 26.529413500091877], [90.99100730087102, 26.52398922989516], [90.9965625113341, 26.469963317709123], [91.01426063217494, 26.446350016159137], [91.00982039177791, 26.43505718893876], [90.99691960423594, 26.4352725625582], [91.00222776092791, 26.42435078710552], [91.05677511608316, 26.42887212254422], [91.0567841935591, 26.415199875298285], [91.08475336479599, 26.425830040359862], [91.0955272642403, 26.411902988578383], [91.11184108931315, 26.412468656439977], [91.12374285683434, 26.42951375358259], [91.1106820146616, 26.429551247858868], [91.11616711071846, 26.445637807103427], [91.10268451221476, 26.450938843964174], [91.12896247647022, 26.47262146529084], [91.14422161202586, 26.45998976366439], [91.18688142538073, 26.4669570074558], [91.20111150933741, 26.427265134943465], [91.230497357015, 26.433277836522024], [91.23345321315173, 26.443303924059315], [91.25535240333511, 26.47573960857745], [91.26587995059258, 26.491039667231817], [91.26587953646921, 26.49143215725523], [91.26448220884139, 26.49390390147817], [91.26526481123545, 26.496220222629816], [91.26478304654522, 26.498535624018874], [91.24838704538682, 26.51748048898951], [91.24763647781411, 26.520304884954477], [91.24956358328747, 26.523283313596423]]]
+ }, "properties": {"name": "BAJALI"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[91.72262952191805, 26.74860229580317], [91.70433787788079, 26.81280527600726], [91.69011310835737, 26.806801466584634], [91.62593958987382, 26.8210302965636], [91.59296507145085, 26.80520717310645], [91.49520035188156, 26.791210631736835], [91.40686119644774, 26.83835115189944], [91.45711415359061, 26.749880493382737], [91.46014398599098, 26.72559187221311], [91.49000972896474, 26.696197813921707], [91.5094452068364, 26.629931613629985], [91.49124540565549, 26.627929999874016], [91.48788890988517, 26.61346017607371], [91.50283490710585, 26.600817453077337], [91.50065199827048, 26.57253609270481], [91.52879032676694, 26.558761701095953], [91.53330172271767, 26.559508887875047], [91.54942832630888, 26.563075081163134], [91.5753958947859, 26.57153619041895], [91.58327606018862, 26.568505568949764], [91.57945193561739, 26.563485075612412], [91.58075058420955, 26.56257249132474], [91.57650429457391, 26.55119501686748], [91.57932266355644, 26.54711991968036], [91.5794270280295, 26.537777310847762], [91.57811019663768, 26.528932899874107], [91.58960233777921, 26.514492577333343], [91.61960472259248, 26.512764190907006], [91.61184230566226, 26.494598881031678], [91.61628112492453, 26.48567240146372], [91.62856379788914, 26.493449231328196], [91.618015879536, 26.46874698754564], [91.629267407827, 26.464858553902435], [91.62508802381541, 26.447223658025752], [91.67671346927017, 26.448434642657652], [91.70984076417352, 26.478931691028347], [91.7201433247748, 26.476967804815402], [91.72487169800259, 26.503059258101953], [91.75425395870727, 26.494443076974733], [91.752251163883, 26.481591983274726], [91.7791240212657, 26.479611962067548], [91.78435608616151, 26.4769827883072], [91.79981264626377, 26.478069848536258], [91.801654966944, 26.489842041580545], [91.7875717108239, 26.492230064618752], [91.78601153929634, 26.492935823639947], [91.78685833170734, 26.497477850642916], [91.78057056040143, 26.51180400500052], [91.77801364338741, 26.512679720547336], [91.77785283327344, 26.513018061410904], [91.78529733193305, 26.51895736384018], [91.7840026089787, 26.51954318906674], [91.78359084460865, 26.520043867156947], [91.78306913632927, 26.520151868745117], [91.78000337491079, 26.52093506349882], [91.77901512838528, 26.52096600847902], [91.77586841618326, 26.52268781875693], [91.7758579696748, 26.523066868509044], [91.7769956473546, 26.524439542552667], [91.77742598439316, 26.52480295982732], [91.77745684421812, 26.52483250602732], [91.78367170645895, 26.525820342999467], [91.78385664711804, 26.52675016111839], [91.78131122225147, 26.52918545830709], [91.78063916653629, 26.528837471280276], [91.77936011738699, 26.528552310249424], [91.77823280357065, 26.526841215054294], [91.77812242846998, 26.526800533476063], [91.7763089446087, 26.529673996668215], [91.77896553150013, 26.532618152549883], [91.78049419551743, 26.53452359485885], [91.78069980551292, 26.534618462570336], [91.78472744161512, 26.536038127125305], [91.78101742464456, 26.539014208266433], [91.7783690285919, 26.550357737138167], [91.77421411558697, 26.550630106446306], [91.77312933430437, 26.551712405337053], [91.76895067792817, 26.561515816613255], [91.76846883688111, 26.561592143691644], [91.76723903157907, 26.561965809215867], [91.76647036744492, 26.56285426542421], [91.76608349988301, 26.56338648510869], [91.76487706784631, 26.564826102286485], [91.76416782277668, 26.567270488111973], [91.76615075405337, 26.57202401570038], [91.76609447370252, 26.573201828113262], [91.76455868873995, 26.57322772154828], [91.76432738333406, 26.573719431377636], [91.76375518973575, 26.57375058707455], [91.7621027953645, 26.57503096327707], [91.75216784244546, 26.577590540768973], [91.75474584202088, 26.584222058978376], [91.75513746077236, 26.584100523538527], [91.75992884273252, 26.58608112132596], [91.7625064120149, 26.59378652166301], [91.76208449847879, 26.59406140640764], [91.75647390418348, 26.59263087392824], [91.75676081620377, 26.591899985041042], [91.75619889843398, 26.591628780605202], [91.7561739495236, 26.59142571484198], [91.75525158364438, 26.590274180268842], [91.75164567602533, 26.58731065884895], [91.75139945319584, 26.587518052167454], [91.74952220062747, 26.58758864389283], [91.74916562515523, 26.587791407988913], [91.74673448755235, 26.58939575715843], [91.7460313357553, 26.58972909848918], [91.74548890513898, 26.590058021490513], [91.74433312371126, 26.591189663051118], [91.74399024934372, 26.592624440425343], [91.74639365056389, 26.598078133773182], [91.74650906790824, 26.598100743536772], [91.74947937164968, 26.59944825344342], [91.75100402019766, 26.60075829140104], [91.75154732487475, 26.604432203580288], [91.75011013630285, 26.6057893077393], [91.74843815776005, 26.606031477030662], [91.74644007549779, 26.604293125977854], [91.74427526232549, 26.603207464437364], [91.73796522986854, 26.60335701880997], [91.73721877208824, 26.604973194520582], [91.74272065406448, 26.609607891565577], [91.74391738968598, 26.611344274436497], [91.74273925637738, 26.613019550480864], [91.74140366995906, 26.61287623710849], [91.74034034224208, 26.613811246386977], [91.74131911782955, 26.618467608755093], [91.74159042252008, 26.618679487136227], [91.74364420482156, 26.62371858659136], [91.74032439984072, 26.627733219687414], [91.73954580033956, 26.627390840065807], [91.74042738899308, 26.63253388498074], [91.74465937834773, 26.631786365408555], [91.74745116528265, 26.632058355524862], [91.74241684742864, 26.636523505632614], [91.7402964568455, 26.640548400157773], [91.74108874936653, 26.64158832171143], [91.74357202878174, 26.643522626926185], [91.74792989456557, 26.648345691791004], [91.74716178559031, 26.649354116597223], [91.74242775117958, 26.648338338899094], [91.7395374621771, 26.648940873820596], [91.74178619416658, 26.649411787858387], [91.74147992165531, 26.650001860415497], [91.74029516237316, 26.650545204884146], [91.74039056435467, 26.650687796600494], [91.74142814186402, 26.651096085748303], [91.74157710858925, 26.65186669708681], [91.73940243820337, 26.65442251757693], [91.73370847935139, 26.655631206665163], [91.73286501789347, 26.657197416039534], [91.73464283684136, 26.66033791159037], [91.73325534935917, 26.660990691687125], [91.73743959145979, 26.670349559056618], [91.74043163892271, 26.673686567327486], [91.74178980090247, 26.67553571987733], [91.74403812775175, 26.683070110722507], [91.74512616093568, 26.68581298336298], [91.74552033719075, 26.68797876669212], [91.73963614121276, 26.69157578197181], [91.73929701820983, 26.70611181210615], [91.73318265049983, 26.71476731502963], [91.73394826754851, 26.721838103253624], [91.73091823751875, 26.732702566607152], [91.73135271668906, 26.735093973152143], [91.72388214622497, 26.74401197728784], [91.72324431003388, 26.74459908688355], [91.72262952191805, 26.74860229580317]]]
+ }, "properties": {"name": "TAMULPUR"}
+ }, {
+ "type": "Feature", "geometry": {
+ "type": "Polygon",
+ "coordinates": [[[91.00222776092791, 26.42435078710552], [90.99691960423594, 26.4352725625582], [91.00982039177791, 26.43505718893876], [91.01426063217494, 26.446350016159137], [90.9965625113341, 26.469963317709123], [90.99100730087102, 26.52398922989516], [91.05204924556172, 26.529413500091877], [91.0590160291364, 26.516152956284216], [91.07192221824813, 26.51622813113064], [91.08078350114631, 26.55627080976028], [91.10986379406656, 26.561190031279732], [91.12636709808731, 26.604690626881002], [91.14232110656637, 26.600915866777356], [91.14057850696753, 26.61158659982491], [91.12282261367415, 26.61179897927205], [91.11634444803701, 26.632118599520783], [91.09782892137308, 26.62898872518531], [91.0950426456024, 26.63917659536205], [91.11260682134615, 26.63761883652795], [91.11274894021399, 26.651462289364034], [91.09527488615448, 26.65232709276873], [91.09737658638984, 26.66538420696185], [91.12738654130604, 26.65880217377039], [91.1275149680523, 26.650111822956305], [91.14506581459392, 26.663102693181152], [91.15768559114865, 26.651509804051955], [91.15137182798829, 26.638897940769795], [91.18635233115313, 26.62774401492175], [91.17657146086489, 26.622865226371836], [91.18676243992809, 26.62199120782995], [91.18443819375919, 26.604415541971306], [91.19857321709418, 26.60391771022429], [91.19777522116938, 26.62300759485799], [91.24854323995683, 26.619424483180783], [91.24750934194687, 26.60781003846032], [91.23344083706205, 26.607553382776146], [91.23748640892723, 26.577257467779575], [91.26909822618337, 26.58439678598049], [91.25842655681501, 26.57059280294294], [91.2900501626626, 26.564378466279955], [91.2479279065636, 26.538419684704227], [91.24956358328747, 26.523283313596423], [91.25767545204974, 26.521273812475798], [91.26308762736339, 26.525890023497656], [91.26681762735748, 26.535043128834342], [91.27853563550416, 26.541677101068732], [91.28408496290045, 26.543554147005068], [91.29250020710725, 26.546530317634385], [91.30498547621956, 26.536395090301326], [91.30432229675769, 26.534580423874363], [91.30675676621193, 26.53069612120059], [91.31127558943344, 26.525153171829377], [91.30818548007748, 26.52448217971657], [91.30612446633796, 26.522770023150205], [91.31064784311961, 26.51939049818408], [91.31147972798847, 26.51690825619947], [91.29363435081468, 26.5158736019053], [91.29018350499008, 26.510990272173423], [91.2841941863609, 26.50262935822087], [91.30217542922983, 26.49760311013821], [91.29599842469003, 26.49414820697033], [91.29534681013912, 26.4922338136127], [91.29600825675082, 26.487431818159727], [91.29605688884536, 26.48636105241976], [91.30886408540941, 26.485358048890973], [91.30991215344463, 26.485253395566986], [91.31150396543316, 26.48764770807997], [91.31814761871195, 26.490346200997596], [91.32255527002711, 26.490471902424478], [91.33397293095014, 26.49979837750466], [91.34336599763189, 26.504098139797502], [91.34362043555464, 26.50546015262509], [91.35358519816803, 26.509760178929543], [91.35460948869604, 26.511104065213196], [91.35422764541148, 26.513035959758223], [91.35270414670705, 26.52399182766464], [91.38088918400503, 26.526286463044894], [91.42824058817008, 26.535476969197198], [91.43453211263726, 26.536208167402194], [91.45889809365882, 26.546605276504348], [91.43090272575164, 26.5491416729484], [91.42764472845559, 26.551838078166575], [91.43150015302629, 26.560003791886807], [91.451782189747, 26.562537098168235], [91.47105530521591, 26.568365846712496], [91.4745789783589, 26.57115935441552], [91.49130389676027, 26.561125753297237], [91.49130389226869, 26.56112566250114], [91.49435422332556, 26.533842981024243], [91.50280933925623, 26.53259340486603], [91.52399083571471, 26.543441442903852], [91.52879032676694, 26.558761701095953], [91.50065199827048, 26.57253609270481], [91.50283490710585, 26.600817453077337], [91.48788890988517, 26.61346017607371], [91.49124540565549, 26.627929999874016], [91.5094452068364, 26.629931613629985], [91.49000972896474, 26.696197813921707], [91.46014398599098, 26.72559187221311], [91.45711415359061, 26.749880493382737], [91.40686119644774, 26.83835115189944], [91.37616546315209, 26.79535045664754], [91.3373048694755, 26.780616092091236], [91.23677430182512, 26.811961456963594], [91.14625855540736, 26.81110908744367], [91.097619491741, 26.822082401622584], [91.05411452270556, 26.780804668125985], [90.99172400105918, 26.790829739443787], [90.94994097396436, 26.779546761793593], [90.93570803336509, 26.761355439914404], [90.93081402068037, 26.750500952704414], [90.93041581188795, 26.749214283036185], [90.9148113980731, 26.728975470440815], [90.91374220705225, 26.718533394087512], [90.91549433867458, 26.713947937340432], [90.89870016824963, 26.687317554637513], [90.90258491472949, 26.653633641669437], [90.90004387094656, 26.633507062132004], [90.89586133025507, 26.620744607987277], [90.90075791032486, 26.598686308190292], [90.87430476470757, 26.583014523419617], [90.86954360476852, 26.577451434565635], [90.87001474238893, 26.5764556299349], [90.87289241095999, 26.575683019907363], [90.87141416309136, 26.572935071321538], [90.87635361615642, 26.56328814922648], [90.89129903935361, 26.552068128042137], [90.91293477432542, 26.578609831259737], [90.92574706433714, 26.575673620091244], [90.92120082722813, 26.55957189640549], [90.93290956476109, 26.55515889257517], [90.93496025146808, 26.58414076383598], [90.96350780479729, 26.583182450296466], [90.96339314652937, 26.5985726879975], [90.98908598683629, 26.59057465610156], [90.99491439204525, 26.600849673707806], [90.9769246133845, 26.499581003023497], [90.9329869887588, 26.477759194897494], [90.9530255002908, 26.470976441246894], [90.95208937222142, 26.45712059135718], [90.9729761125706, 26.46115994059417], [90.96112851256274, 26.44433081091634], [90.97546250824155, 26.440236783598877], [90.96984366381866, 26.42879969886723], [90.98248503946611, 26.43091172195693], [90.98168916087047, 26.41631331240101], [91.00222776092791, 26.42435078710552]]]
+ }, "properties": {"name": "BAKSA"}
+ }]
+}
+export default assam_geojson
\ No newline at end of file
diff --git a/geo_json/assam_revenue_circle.tsx b/geo_json/assam_revenue_circle.tsx
new file mode 100644
index 00000000..e1c78225
--- /dev/null
+++ b/geo_json/assam_revenue_circle.tsx
@@ -0,0 +1,12166 @@
+const assam_revenue_circles: any = {
+ type: 'FeatureCollection',
+ features: [
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.18541866620383, 26.64047548366383],
+ [90.194407990471, 26.684023789486574],
+ [90.12789904448825, 26.750242324583837],
+ [89.96668047286069, 26.723496730839187],
+ [89.85880539263506, 26.734879529444072],
+ [89.86523554691352, 26.704698981603276],
+ [89.85183119077274, 26.697153768820368],
+ [89.86642207497843, 26.645637078544578],
+ [89.84978343886178, 26.62311577406966],
+ [89.86953041204983, 26.6139859571237],
+ [89.874198263082, 26.584009788207336],
+ [89.85755182060552, 26.575965956422163],
+ [89.84977976565061, 26.490853740619993],
+ [89.86954860383263, 26.46394135204016],
+ [89.84781004320185, 26.422881713164298],
+ [89.85632872751526, 26.413009912565535],
+ [89.82892130067331, 26.40405156721513],
+ [89.83092517078097, 26.391354807860818],
+ [89.8462469054372, 26.404753595957512],
+ [89.85516203515013, 26.396636009062032],
+ [89.85635842671687, 26.384252381028286],
+ [89.84121245463253, 26.379383937910347],
+ [89.87567824649574, 26.36282032849631],
+ [89.8692450253689, 26.34959783372752],
+ [89.90561250756944, 26.327907630828957],
+ [89.90561260458753, 26.327905197715488],
+ [89.91155697870641, 26.34110103804606],
+ [89.93269321265102, 26.339114468605803],
+ [89.94873814770482, 26.333015713402375],
+ [89.98230636269906, 26.34406835647434],
+ [89.98542328317298, 26.392047121590437],
+ [90.0269802923457, 26.415740636699844],
+ [90.02778225253581, 26.433054564783745],
+ [90.0522545913921, 26.426981802289287],
+ [90.066074886374, 26.45184593841009],
+ [90.0972103836288, 26.46549325356942],
+ [90.11295582216351, 26.507078844928277],
+ [90.09917813786879, 26.51727983189437],
+ [90.10835533489617, 26.547892730320623],
+ [90.1314423098876, 26.558846109413576],
+ [90.13388323553379, 26.581428121928585],
+ [90.18541866620383, 26.64047548366383],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Gossaigaon (Pt)',
+ district_3: 'KOKRAJHAR',
+ object_id: 101,
+ district_1: 'Kokrajhar',
+ revenue_cr: 'Gossaigaon (Pt)',
+ area: '1068571780',
+ are_new: 1069,
+ ID_NAM: 'KOKRAJHARGossaigaon (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.10500293993516, 26.33134427445867],
+ [90.10552421432821, 26.34614744564767],
+ [90.12354606823452, 26.353047466071605],
+ [90.11883014924983, 26.368657438393754],
+ [90.11649979274036, 26.356701257164964],
+ [90.10048089086351, 26.359644385441374],
+ [90.11939019043898, 26.371608735542736],
+ [90.11523599788289, 26.380313178356552],
+ [90.10869103891112, 26.370951443194564],
+ [90.09812985244123, 26.37828541691051],
+ [90.12077801029783, 26.41038972738755],
+ [90.0972103836288, 26.46549325356942],
+ [90.066074886374, 26.45184593841009],
+ [90.0522545913921, 26.426981802289287],
+ [90.02778225253581, 26.433054564783745],
+ [90.0269802923457, 26.415740636699844],
+ [89.98542328317298, 26.392047121590437],
+ [89.98230636269906, 26.34406835647434],
+ [89.99552605935335, 26.35026129608414],
+ [89.98923723612025, 26.33545447198977],
+ [90.0087295935191, 26.325794446083936],
+ [90.02732956271807, 26.334842443757925],
+ [90.02668006908955, 26.311561557961838],
+ [90.05090716158504, 26.29691640835325],
+ [90.10500293993516, 26.33134427445867],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bhowraguri',
+ district_3: 'KOKRAJHAR',
+ object_id: 102,
+ district_1: 'Kokrajhar',
+ revenue_cr: 'Bhawraguri',
+ area: '158892607.3',
+ are_new: 159,
+ ID_NAM: 'KOKRAJHARBhowraguri',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.20515067076427, 26.371233634539827],
+ [90.18374026919832, 26.38862452704007],
+ [90.19452195344292, 26.43466750218284],
+ [90.25387029175207, 26.432575409462117],
+ [90.2695392854527, 26.45508001790815],
+ [90.24056680294296, 26.456556615176492],
+ [90.20756613186714, 26.50248836594536],
+ [90.21916198081327, 26.53813275611281],
+ [90.2019970073986, 26.551392712156435],
+ [90.23540851578312, 26.61620177249559],
+ [90.18541866620383, 26.64047548366383],
+ [90.13388323553379, 26.581428121928585],
+ [90.1314423098876, 26.558846109413576],
+ [90.10835533489617, 26.547892730320623],
+ [90.09917813786879, 26.51727983189437],
+ [90.11295582216351, 26.507078844928277],
+ [90.0972103836288, 26.46549325356942],
+ [90.12077801029783, 26.41038972738755],
+ [90.09812985244123, 26.37828541691051],
+ [90.10869103891112, 26.370951443194564],
+ [90.11523599788289, 26.380313178356552],
+ [90.11939019043898, 26.371608735542736],
+ [90.10048089086351, 26.359644385441374],
+ [90.11649979274036, 26.356701257164964],
+ [90.11883014924983, 26.368657438393754],
+ [90.12354606823452, 26.353047466071605],
+ [90.10552421432821, 26.34614744564767],
+ [90.10500293993516, 26.33134427445867],
+ [90.11678640741826, 26.338942432935625],
+ [90.14869411715257, 26.352642418238606],
+ [90.18790091165818, 26.345652574814803],
+ [90.20515067076427, 26.371233634539827],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dotoma',
+ district_3: 'KOKRAJHAR',
+ object_id: 103,
+ district_1: 'Kokrajhar',
+ revenue_cr: 'Dotoma',
+ area: '303966231.6',
+ are_new: 304,
+ ID_NAM: 'KOKRAJHARDotoma',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.3615654591892, 26.595861598595977],
+ [90.34693539675904, 26.641460283182063],
+ [90.37705506920908, 26.71760109460609],
+ [90.33640989227058, 26.86900109814437],
+ [90.29993683107463, 26.84838548504813],
+ [90.23076915302357, 26.858801563726477],
+ [90.1876879211043, 26.807114888973743],
+ [90.19466618604663, 26.773712364326474],
+ [90.12789904448825, 26.750242324583837],
+ [90.194407990471, 26.684023789486574],
+ [90.18541866620383, 26.64047548366383],
+ [90.23540851578312, 26.61620177249559],
+ [90.2019970073986, 26.551392712156435],
+ [90.21916198081327, 26.53813275611281],
+ [90.20756613186714, 26.50248836594536],
+ [90.24056680294296, 26.456556615176492],
+ [90.2695392854527, 26.45508001790815],
+ [90.25387029175207, 26.432575409462117],
+ [90.19452195344292, 26.43466750218284],
+ [90.18374026919832, 26.38862452704007],
+ [90.20515067076427, 26.371233634539827],
+ [90.22671623114273, 26.385087821811844],
+ [90.23427900019604, 26.365515441808018],
+ [90.21479262467864, 26.351665692428938],
+ [90.22783070084714, 26.34939263864615],
+ [90.21598138326044, 26.328728336728343],
+ [90.25007186528616, 26.32459519659865],
+ [90.25960531618892, 26.334437281469995],
+ [90.27350289862463, 26.306259210419146],
+ [90.28790199431377, 26.338585485516365],
+ [90.32863564812128, 26.363662902596122],
+ [90.31097163092188, 26.384781201891848],
+ [90.33237102722728, 26.390930165572172],
+ [90.32951410255279, 26.413623909152605],
+ [90.34596665535328, 26.417467086535698],
+ [90.35250149210842, 26.377645247372605],
+ [90.33113927617433, 26.38485286214609],
+ [90.33033004232534, 26.37488746254713],
+ [90.37946634056945, 26.3044512282977],
+ [90.40410951024666, 26.316039227680807],
+ [90.39519840588451, 26.359370486206],
+ [90.42500503701763, 26.363027777589576],
+ [90.43730823558816, 26.364875631331227],
+ [90.42643694080074, 26.367436307174632],
+ [90.43364839132282, 26.376608963935944],
+ [90.42089273200494, 26.379607792362393],
+ [90.41695433633966, 26.40776487729925],
+ [90.40359884765205, 26.406701878385082],
+ [90.4156351693281, 26.42908151150978],
+ [90.39778639742083, 26.434547305378644],
+ [90.40393125215496, 26.44214277051467],
+ [90.40508978512234, 26.475280377279088],
+ [90.38628568904645, 26.4852550301729],
+ [90.40164976938682, 26.49056884225476],
+ [90.40791065860789, 26.50313398168063],
+ [90.39327488289248, 26.503173071860417],
+ [90.40363992042349, 26.51177970378984],
+ [90.3812992289392, 26.53113728216301],
+ [90.38875244125705, 26.542004656815823],
+ [90.37137578972717, 26.544397169269853],
+ [90.35501713423007, 26.56996083555663],
+ [90.3615654591892, 26.595861598595977],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Kokrajhar (Pt)',
+ district_3: 'KOKRAJHAR',
+ object_id: 104,
+ district_1: 'Kokrajhar',
+ revenue_cr: 'Kokrajhar (Pt)',
+ area: '990246710.7',
+ are_new: 990,
+ ID_NAM: 'KOKRAJHARKokrajhar (Pt)',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.10500293993516, 26.33134427445867],
+ [90.05090716158504, 26.29691640835325],
+ [90.02668006908955, 26.311561557961838],
+ [90.02732956271807, 26.334842443757925],
+ [90.0087295935191, 26.325794446083936],
+ [89.98923723612025, 26.33545447198977],
+ [89.99552605935335, 26.35026129608414],
+ [89.98230636269906, 26.34406835647434],
+ [89.94873814770482, 26.333015713402375],
+ [89.93269321265102, 26.339114468605803],
+ [89.92553762835642, 26.294720535378612],
+ [89.90612283868573, 26.29414077645018],
+ [89.92995359447787, 26.273306544741732],
+ [89.90808336597925, 26.23591613455254],
+ [89.91993996530964, 26.20730849794321],
+ [90.01622150615772, 26.23314159835347],
+ [90.01576415049038, 26.209930522754636],
+ [90.0438249822256, 26.204196958006545],
+ [90.03193316713943, 26.18077028477121],
+ [90.05251859906755, 26.156516377133432],
+ [90.08726674220438, 26.186220838403557],
+ [90.15210832518828, 26.208999358984514],
+ [90.09743214712972, 26.262275449888133],
+ [90.11752692913116, 26.258569224580263],
+ [90.14053632112308, 26.27619714864372],
+ [90.14089660843403, 26.293255519637302],
+ [90.12607276412575, 26.283192920139925],
+ [90.12434143389214, 26.30381786969796],
+ [90.10772758588743, 26.312512270697372],
+ [90.11678640741826, 26.338942432935625],
+ [90.10500293993516, 26.33134427445867],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bagribari (Pt)',
+ district_3: 'KOKRAJHAR',
+ object_id: 105,
+ district_1: 'Kokrajhar',
+ revenue_cr: 'Bagribari (Pt)',
+ area: '281011470.5',
+ are_new: 281,
+ ID_NAM: 'KOKRAJHARBagribari (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [89.93269321265102, 26.339114468605803],
+ [89.91155697870641, 26.34110103804606],
+ [89.90561260458753, 26.327905197715488],
+ [89.87958444564289, 26.307063915018812],
+ [89.86607949076677, 26.257986149549737],
+ [89.87421331525289, 26.247362373077088],
+ [89.85871652320232, 26.238313244862915],
+ [89.86972215834554, 26.234130831161025],
+ [89.85997493984618, 26.219960182020333],
+ [89.87303947589135, 26.202130569189286],
+ [89.86004851186793, 26.188079123105435],
+ [89.87533682111076, 26.18908659968641],
+ [89.8701186019484, 26.14713841063979],
+ [89.91634828969964, 26.118763054599583],
+ [89.90178708044107, 26.11616337501189],
+ [89.93096464833015, 26.115205065308228],
+ [89.94038631287897, 26.128458499100617],
+ [89.91517497585255, 26.146764170105712],
+ [89.91890609514748, 26.175332463950834],
+ [89.90359567656888, 26.186318945130143],
+ [89.91993996530964, 26.20730849794321],
+ [89.90808336597925, 26.23591613455254],
+ [89.92995359447787, 26.273306544741732],
+ [89.90612283868573, 26.29414077645018],
+ [89.92553762835642, 26.294720535378612],
+ [89.93269321265102, 26.339114468605803],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Golokganj (Pt)',
+ district_3: 'KOKRAJHAR',
+ object_id: 106,
+ district_1: 'Kokrajhar',
+ revenue_cr: 'Golokganj (Pt)',
+ area: '102804109.1',
+ are_new: 103,
+ ID_NAM: 'KOKRAJHARGolokganj (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.05251859906755, 26.156516377133432],
+ [90.03193316713943, 26.18077028477121],
+ [90.0438249822256, 26.204196958006545],
+ [90.01576415049038, 26.209930522754636],
+ [90.01622150615772, 26.23314159835347],
+ [89.91993996530964, 26.20730849794321],
+ [89.90359567656888, 26.186318945130143],
+ [89.91890609514748, 26.175332463950834],
+ [89.91517497585255, 26.146764170105712],
+ [89.94038631287897, 26.128458499100617],
+ [89.98207691321257, 26.1365854666006],
+ [90.02503298196498, 26.12679198342518],
+ [90.05257918953518, 26.155578100366927],
+ [90.05251859906755, 26.156516377133432],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dhubri (Pt)',
+ district_3: 'KOKRAJHAR',
+ object_id: 107,
+ district_1: 'Kokrajhar',
+ revenue_cr: 'Dhubri (Pt)',
+ area: '124091385.6',
+ are_new: 124,
+ ID_NAM: 'KOKRAJHARDhubri (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.37946634056945, 26.3044512282977],
+ [90.33033004232534, 26.37488746254713],
+ [90.33113927617433, 26.38485286214609],
+ [90.35250149210842, 26.377645247372605],
+ [90.34596665535328, 26.417467086535698],
+ [90.32951410255279, 26.413623909152605],
+ [90.33237102722728, 26.390930165572172],
+ [90.31097163092188, 26.384781201891848],
+ [90.32863564812128, 26.363662902596122],
+ [90.28790199431377, 26.338585485516365],
+ [90.27350289862463, 26.306259210419146],
+ [90.27223358990797, 26.267334623654197],
+ [90.25150768841884, 26.26442878072624],
+ [90.27264332408544, 26.25261517629406],
+ [90.28800679985967, 26.2521308348246],
+ [90.2892877561323, 26.238020477256253],
+ [90.30658227289913, 26.245852317740855],
+ [90.3207480806006, 26.278837623701197],
+ [90.34404654685767, 26.270734747456032],
+ [90.3519116367333, 26.28715942570704],
+ [90.36283862706834, 26.273120031323465],
+ [90.3548840048033, 26.258579413999072],
+ [90.38122682293066, 26.26866595713836],
+ [90.37946634056945, 26.3044512282977],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Chapar (Pt)',
+ district_3: 'KOKRAJHAR',
+ object_id: 108,
+ district_1: 'Kokrajhar',
+ revenue_cr: 'Chapar (Pt)',
+ area: '101233159.3',
+ are_new: 101,
+ ID_NAM: 'KOKRAJHARChapar (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.21468561107382, 26.1272631966857],
+ [90.1998519921969, 26.13612226364005],
+ [90.20781200345533, 26.143936994663143],
+ [90.18965549298628, 26.178887413922734],
+ [90.1628388360044, 26.18846011516679],
+ [90.15210832518828, 26.208999358984514],
+ [90.08726674220438, 26.186220838403557],
+ [90.05251859906755, 26.156516377133432],
+ [90.05257918953518, 26.155578100366927],
+ [90.05984615594181, 26.14146156416331],
+ [90.07897348202663, 26.13982583591005],
+ [90.03471710729038, 26.112808759792678],
+ [90.04109924482023, 26.0921795333141],
+ [90.03047637732803, 26.078901223161296],
+ [90.07322933609638, 26.080937770743144],
+ [90.05215068505979, 26.060180469481978],
+ [90.06296594473643, 26.059059307474516],
+ [90.05864694905497, 26.037770655316383],
+ [90.0709035690797, 26.02637536949095],
+ [90.12535876876487, 26.054762659042144],
+ [90.18032598121253, 26.048011604231704],
+ [90.17370492864804, 26.10307952582704],
+ [90.19547762975121, 26.12729193715615],
+ [90.21468561107382, 26.1272631966857],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bagribari (Pt)',
+ district_3: 'DHUBRI',
+ object_id: 109,
+ district_1: 'Dhubri',
+ revenue_cr: 'Bagribari (Pt)',
+ area: '212860104.4',
+ are_new: 213,
+ ID_NAM: 'DHUBRIBagribari (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [89.76054170024796, 26.316300550579804],
+ [89.75103644027541, 26.322428093489787],
+ [89.75715258934461, 26.288780881573807],
+ [89.7267639307558, 26.29436124255309],
+ [89.71984420722389, 26.307031475179794],
+ [89.73834405379455, 26.269814847136015],
+ [89.71970901167195, 26.25737278821389],
+ [89.7070510387513, 26.27054318808062],
+ [89.70227302372258, 26.25935242076018],
+ [89.73210560538763, 26.2366983005694],
+ [89.70049167529397, 26.217949893504457],
+ [89.7340197643411, 26.209950566783018],
+ [89.7117047368262, 26.20231973062097],
+ [89.71316569482053, 26.187157920610545],
+ [89.6986022784013, 26.190761467416074],
+ [89.7098181777115, 26.171857475697923],
+ [89.73669199898647, 26.172048528487363],
+ [89.71960293141667, 26.165857988761058],
+ [89.72219760552039, 26.15610301478738],
+ [89.74720582537626, 26.157963322084353],
+ [89.7633504913929, 26.136873768214915],
+ [89.7566739705545, 26.1082869755743],
+ [89.7857367229705, 26.10142085078886],
+ [89.81879758835692, 26.089161585912684],
+ [89.82788397469226, 26.118728586907388],
+ [89.80635553090471, 26.185419109488645],
+ [89.84849207201331, 26.224456706971],
+ [89.84813555313492, 26.298474241409878],
+ [89.81799555630155, 26.309911300118305],
+ [89.78660319207948, 26.29343992282469],
+ [89.76054170024796, 26.316300550579804],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Agamoni',
+ district_3: 'DHUBRI',
+ object_id: 110,
+ district_1: 'Dhubri',
+ revenue_cr: 'Agamoni',
+ area: '220975059.2',
+ are_new: 221,
+ ID_NAM: 'DHUBRIAgamoni',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [89.90561250756944, 26.327907630828957],
+ [89.88426362982071, 26.32626164445829],
+ [89.84813555313492, 26.298474241409878],
+ [89.84849207201331, 26.224456706971],
+ [89.80635553090471, 26.185419109488645],
+ [89.82788397469226, 26.118728586907388],
+ [89.81879758835692, 26.089161585912684],
+ [89.7857367229705, 26.10142085078886],
+ [89.78129622116371, 26.0839652813058],
+ [89.79455687201181, 26.088722191333392],
+ [89.79884291479371, 26.060124658291894],
+ [89.773789264439, 26.03781796827775],
+ [89.80181985888177, 26.0404901010011],
+ [89.79149719488272, 26.018220676216526],
+ [89.80718701512494, 26.044377482876907],
+ [89.81684807351046, 26.023239358204574],
+ [89.83550934104949, 26.025569151836894],
+ [89.83620452478998, 26.036370896375253],
+ [89.84431061738498, 26.025223260424532],
+ [89.88228049372812, 26.05774099452265],
+ [89.9241012626413, 26.064592760247827],
+ [89.94038631287897, 26.128458499100617],
+ [89.93096464833015, 26.115205065308228],
+ [89.90178708044107, 26.11616337501189],
+ [89.91634828969964, 26.118763054599583],
+ [89.8701186019484, 26.14713841063979],
+ [89.87533682111076, 26.18908659968641],
+ [89.86004851186793, 26.188079123105435],
+ [89.87303947589135, 26.202130569189286],
+ [89.85997493984618, 26.219960182020333],
+ [89.86972215834554, 26.234130831161025],
+ [89.85871652320232, 26.238313244862915],
+ [89.87421331525289, 26.247362373077088],
+ [89.86607949076677, 26.257986149549737],
+ [89.87958444564289, 26.307063915018812],
+ [89.90561260458753, 26.327905197715488],
+ [89.90561250756944, 26.327907630828957],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Golokganj (Pt)',
+ district_3: 'DHUBRI',
+ object_id: 111,
+ district_1: 'Dhubri',
+ revenue_cr: 'Golakganj (Pt)',
+ area: '199162500.1',
+ are_new: 199,
+ ID_NAM: 'DHUBRIGolokganj (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.0709035690797, 26.02637536949095],
+ [90.05864694905497, 26.037770655316383],
+ [90.06296594473643, 26.059059307474516],
+ [90.05215068505979, 26.060180469481978],
+ [90.07322933609638, 26.080937770743144],
+ [90.03047637732803, 26.078901223161296],
+ [90.04109924482023, 26.0921795333141],
+ [90.03471710729038, 26.112808759792678],
+ [90.07897348202663, 26.13982583591005],
+ [90.05984615594181, 26.14146156416331],
+ [90.05257918953518, 26.155578100366927],
+ [90.02503298196498, 26.12679198342518],
+ [89.98207691321257, 26.1365854666006],
+ [89.94038631287897, 26.128458499100617],
+ [89.9241012626413, 26.064592760247827],
+ [89.88228049372812, 26.05774099452265],
+ [89.84431061738498, 26.025223260424532],
+ [89.83620452478998, 26.036370896375253],
+ [89.83550934104949, 26.025569151836894],
+ [89.81684807351046, 26.023239358204574],
+ [89.82053984569764, 25.98734806487035],
+ [89.83600648220245, 25.982359322247905],
+ [89.83625883693206, 26.01268320231942],
+ [89.87317113208108, 25.975963186082208],
+ [89.84190305966001, 25.97041634450481],
+ [89.84934803532505, 25.949220616513085],
+ [89.82943086822162, 25.954983138638294],
+ [89.82532363958859, 25.945862421931412],
+ [89.887246515366, 25.945143431432157],
+ [89.84311755587302, 25.882881951016234],
+ [89.8764324738049, 25.879088206170177],
+ [89.89786477090759, 25.90037088748505],
+ [89.9303222594772, 25.906346696438636],
+ [89.94895752707698, 25.925041218956537],
+ [89.94517460912614, 25.950001098282428],
+ [89.96798657387644, 25.972992068004086],
+ [90.01942848723044, 26.002321286638722],
+ [90.05627408157132, 26.00051003075128],
+ [90.0709035690797, 26.02637536949095],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dhubri (Pt)',
+ district_3: 'DHUBRI',
+ object_id: 112,
+ district_1: 'Dhubri',
+ revenue_cr: 'Dhubri (Pt)',
+ area: '357274694.3',
+ are_new: 357,
+ ID_NAM: 'DHUBRIDhubri (Pt)',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.27350289862463, 26.306259210419146],
+ [90.25960531618892, 26.334437281469995],
+ [90.25007186528616, 26.32459519659865],
+ [90.21598138326044, 26.328728336728343],
+ [90.22783070084714, 26.34939263864615],
+ [90.21479262467864, 26.351665692428938],
+ [90.23427900019604, 26.365515441808018],
+ [90.22671623114273, 26.385087821811844],
+ [90.20515067076427, 26.371233634539827],
+ [90.18790091165818, 26.345652574814803],
+ [90.14869411715257, 26.352642418238606],
+ [90.11678640741826, 26.338942432935625],
+ [90.10772758588743, 26.312512270697372],
+ [90.12434143389214, 26.30381786969796],
+ [90.12607276412575, 26.283192920139925],
+ [90.14089660843403, 26.293255519637302],
+ [90.14053632112308, 26.27619714864372],
+ [90.11752692913116, 26.258569224580263],
+ [90.09743214712972, 26.262275449888133],
+ [90.15210832518828, 26.208999358984514],
+ [90.1628388360044, 26.18846011516679],
+ [90.18965549298628, 26.178887413922734],
+ [90.20781200345533, 26.143936994663143],
+ [90.1998519921969, 26.13612226364005],
+ [90.21468561107382, 26.1272631966857],
+ [90.26108651681989, 26.15458264126981],
+ [90.26478085459549, 26.18324412658976],
+ [90.30996818580005, 26.19292577222761],
+ [90.25997394076408, 26.235289201855505],
+ [90.27264332408544, 26.25261517629406],
+ [90.25150768841884, 26.26442878072624],
+ [90.27223358990797, 26.267334623654197],
+ [90.27350289862463, 26.306259210419146],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bilasipara (Pt)',
+ district_3: 'DHUBRI',
+ object_id: 113,
+ district_1: 'Dhubri',
+ revenue_cr: 'Bilasipara (Pt)',
+ area: '294886928.3',
+ are_new: 295,
+ ID_NAM: 'DHUBRIBilasipara (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.42500503701763, 26.363027777589576],
+ [90.39519840588451, 26.359370486206],
+ [90.40410951024666, 26.316039227680807],
+ [90.37946634056945, 26.3044512282977],
+ [90.38122682293066, 26.26866595713836],
+ [90.3548840048033, 26.258579413999072],
+ [90.36283862706834, 26.273120031323465],
+ [90.3519116367333, 26.28715942570704],
+ [90.34404654685767, 26.270734747456032],
+ [90.3207480806006, 26.278837623701197],
+ [90.30658227289913, 26.245852317740855],
+ [90.2892877561323, 26.238020477256253],
+ [90.28800679985967, 26.2521308348246],
+ [90.27264332408544, 26.25261517629406],
+ [90.25997394076408, 26.235289201855505],
+ [90.30996818580005, 26.19292577222761],
+ [90.35757680098715, 26.19002797948499],
+ [90.39016840533375, 26.20402451189191],
+ [90.44107450865509, 26.235048268798963],
+ [90.43192858288106, 26.260776816045755],
+ [90.45032461205264, 26.250799052346597],
+ [90.44487270515229, 26.267487538694297],
+ [90.47319509755212, 26.270761984055348],
+ [90.45523717674462, 26.285225041234423],
+ [90.46599584076172, 26.276213078872633],
+ [90.46390913161181, 26.28977277916436],
+ [90.48359218068424, 26.296056654161244],
+ [90.46584855298771, 26.32526817989973],
+ [90.47415185094043, 26.3326055426293],
+ [90.46241825792188, 26.32826848143998],
+ [90.45390985752185, 26.349730151864772],
+ [90.45709275116853, 26.357475320177166],
+ [90.44521205003905, 26.34594812422486],
+ [90.43738328623687, 26.359647423986736],
+ [90.43411737657982, 26.34266961823437],
+ [90.42500503701763, 26.363027777589576],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Chapar (Pt)',
+ district_3: 'DHUBRI',
+ object_id: 114,
+ district_1: 'Dhubri',
+ revenue_cr: 'Chapar (Pt)',
+ area: '195049812.7',
+ are_new: 195,
+ ID_NAM: 'DHUBRIChapar (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.39114440782197, 26.19147836321792],
+ [90.39016840533375, 26.20402451189191],
+ [90.35757680098715, 26.19002797948499],
+ [90.30996818580005, 26.19292577222761],
+ [90.26478085459549, 26.18324412658976],
+ [90.26108651681989, 26.15458264126981],
+ [90.21468561107382, 26.1272631966857],
+ [90.19547762975121, 26.12729193715615],
+ [90.17370492864804, 26.10307952582704],
+ [90.18032598121253, 26.048011604231704],
+ [90.1708134080553, 26.04392331259091],
+ [90.19732184857162, 26.025957180029778],
+ [90.187552211716, 26.001425514370634],
+ [90.11982582484275, 25.969536968253426],
+ [90.11787053562564, 25.95754143724236],
+ [90.15135194102412, 25.96676160420383],
+ [90.18682263148327, 25.94418649926151],
+ [90.20280871969945, 25.9609544777934],
+ [90.21143144329582, 25.952685168716283],
+ [90.28352366131452, 25.963132126844226],
+ [90.32736036920122, 25.974467134709915],
+ [90.34965163537856, 26.004220841870666],
+ [90.37211442407963, 26.011357990968907],
+ [90.39968427081655, 26.01260872845697],
+ [90.42403605666001, 25.988972566417733],
+ [90.44374996376072, 25.99608672112831],
+ [90.43399539434739, 25.999631594954607],
+ [90.44149247050227, 26.009345246442],
+ [90.46493728669219, 26.016406190185805],
+ [90.4829928022688, 26.039635912671955],
+ [90.46890803158914, 26.06188147140602],
+ [90.40703950298806, 26.056964088387414],
+ [90.38437062369283, 26.044292238260173],
+ [90.32760855125636, 26.05129931418845],
+ [90.38460962316911, 26.08997518626605],
+ [90.35320820213234, 26.12549886990331],
+ [90.37542870891308, 26.1409448513976],
+ [90.38950348044531, 26.129605973879038],
+ [90.39114440782197, 26.19147836321792],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Lakhipur',
+ district_3: 'GOALPARA',
+ object_id: 115,
+ district_1: 'Goalpara',
+ revenue_cr: 'Lakhipur',
+ area: '486513089.8',
+ are_new: 487,
+ ID_NAM: 'GOALPARALakhipur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.60474712223032, 26.21357664073773],
+ [90.51685902168046, 26.198390790472835],
+ [90.46927861628824, 26.168240320321132],
+ [90.4700242979241, 26.178229801493412],
+ [90.44477461541148, 26.16572309783875],
+ [90.44842997708353, 26.184041460125627],
+ [90.43023000522271, 26.192131401364954],
+ [90.39114440782197, 26.19147836321792],
+ [90.38950348044531, 26.129605973879038],
+ [90.37542870891308, 26.1409448513976],
+ [90.35320820213234, 26.12549886990331],
+ [90.38460962316911, 26.08997518626605],
+ [90.32760855125636, 26.05129931418845],
+ [90.38437062369283, 26.044292238260173],
+ [90.40703950298806, 26.056964088387414],
+ [90.46890803158914, 26.06188147140602],
+ [90.4829928022688, 26.039635912671955],
+ [90.46493728669219, 26.016406190185805],
+ [90.44149247050227, 26.009345246442],
+ [90.43399539434739, 25.999631594954607],
+ [90.44374996376072, 25.99608672112831],
+ [90.47607117969841, 26.009679538854265],
+ [90.53173126092805, 25.956102871606046],
+ [90.51356307954681, 25.89636540265978],
+ [90.57666667847583, 25.93684304032878],
+ [90.58924917584461, 25.958319526399197],
+ [90.61074734371213, 26.010849757037665],
+ [90.59769139466276, 26.074087274320593],
+ [90.630357257344, 26.139685234341066],
+ [90.65665992526976, 26.150633003477335],
+ [90.63614462571417, 26.163942949558205],
+ [90.64037412044723, 26.20868744049815],
+ [90.6224089807781, 26.202049451089223],
+ [90.60474712223032, 26.21357664073773],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Balijana',
+ district_3: 'GOALPARA',
+ object_id: 116,
+ district_1: 'Goalpara',
+ revenue_cr: 'Balijana',
+ area: '541158544.1',
+ are_new: 541,
+ ID_NAM: 'GOALPARABalijana',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.66893873997022, 26.20136271924837],
+ [90.64037412044723, 26.20868744049815],
+ [90.63614462571417, 26.163942949558205],
+ [90.65665992526976, 26.150633003477335],
+ [90.630357257344, 26.139685234341066],
+ [90.59769139466276, 26.074087274320593],
+ [90.61074734371213, 26.010849757037665],
+ [90.58924917584461, 25.958319526399197],
+ [90.62466094849924, 25.93817597022701],
+ [90.60620101497494, 25.916710331936994],
+ [90.6218006847868, 25.897929777960552],
+ [90.63157790432173, 25.91991980281217],
+ [90.70412610448372, 25.951084427120282],
+ [90.70546902295138, 25.988601974628743],
+ [90.7234582743011, 26.00059740882865],
+ [90.74335334823843, 25.99590078661722],
+ [90.75512876771491, 26.01881014867056],
+ [90.81426565518261, 26.010921512944087],
+ [90.85328684247912, 26.046351344235507],
+ [90.89336864547882, 26.057035456970663],
+ [90.88606646421471, 26.067506154615767],
+ [90.91607302170249, 26.07412789963897],
+ [90.9224372504189, 26.093112661577287],
+ [90.8715521371325, 26.095626976861414],
+ [90.859354565168, 26.11273989428877],
+ [90.83953484191669, 26.109171060166954],
+ [90.76690998401995, 26.134349732536016],
+ [90.71445859245867, 26.130135165854004],
+ [90.67105643291256, 26.199656901145918],
+ [90.66893873997022, 26.20136271924837],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Matia',
+ district_3: 'GOALPARA',
+ object_id: 117,
+ district_1: 'Goalpara',
+ revenue_cr: 'Matia',
+ area: '477602971.1',
+ are_new: 478,
+ ID_NAM: 'GOALPARAMatia',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.92385753000222, 25.942965306604673],
+ [90.92365002545979, 25.99261342588625],
+ [90.8914225127894, 26.032440616407378],
+ [90.89336864547882, 26.057035456970663],
+ [90.85328684247912, 26.046351344235507],
+ [90.81426565518261, 26.010921512944087],
+ [90.75512876771491, 26.01881014867056],
+ [90.74335334823843, 25.99590078661722],
+ [90.7234582743011, 26.00059740882865],
+ [90.70546902295138, 25.988601974628743],
+ [90.70412610448372, 25.951084427120282],
+ [90.74802909995353, 25.95680979845402],
+ [90.7403309763465, 25.93948830916618],
+ [90.75408544008944, 25.929526319409028],
+ [90.7389102943179, 25.916252067087566],
+ [90.7604581533937, 25.92197813693149],
+ [90.76382006510683, 25.907809271116697],
+ [90.78109854604755, 25.911359810891774],
+ [90.80898761630715, 25.95253121616394],
+ [90.83612114232743, 25.948515164282416],
+ [90.83540102404957, 25.936699372615887],
+ [90.88445851489044, 25.950402027679672],
+ [90.91676863753266, 25.914150625337697],
+ [90.92385753000222, 25.942965306604673],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dudhnai',
+ district_3: 'GOALPARA',
+ object_id: 118,
+ district_1: 'Goalpara',
+ revenue_cr: 'Dudhnoi',
+ area: '196278296.1',
+ are_new: 196,
+ ID_NAM: 'GOALPARADudhnai',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.94025562154027, 26.09299630825888],
+ [90.93348365829624, 26.10136306266993],
+ [90.9224372504189, 26.093112661577287],
+ [90.91607302170249, 26.07412789963897],
+ [90.88606646421471, 26.067506154615767],
+ [90.89336864547882, 26.057035456970663],
+ [90.8914225127894, 26.032440616407378],
+ [90.92365002545979, 25.99261342588625],
+ [90.92385753000222, 25.942965306604673],
+ [90.94736687307727, 25.948186253680397],
+ [90.96878647518837, 25.885313691287948],
+ [91.0304077209479, 25.885954467928055],
+ [91.04756561563812, 25.941508979432786],
+ [91.09972757091317, 26.009372305925904],
+ [91.0894685318908, 26.031141803576634],
+ [91.06510169567306, 26.04749651962463],
+ [91.02622656545857, 26.046746585144632],
+ [90.98125894420617, 26.062809619301138],
+ [90.94025562154027, 26.09299630825888],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Rangjuli',
+ district_3: 'GOALPARA',
+ object_id: 119,
+ district_1: 'Goalpara',
+ revenue_cr: 'Rangjuli',
+ area: '277190398.1',
+ are_new: 277,
+ ID_NAM: 'GOALPARARangjuli',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.91844572659107, 26.363955629138548],
+ [90.93421992109637, 26.387140534133014],
+ [90.92921428105946, 26.427223739990406],
+ [90.91845735528244, 26.4290652218269],
+ [90.85155296821665, 26.41462043441125],
+ [90.84496410408536, 26.403304597629205],
+ [90.85895050924141, 26.361674649612254],
+ [90.81792188193228, 26.366867802063435],
+ [90.78947424192393, 26.329405053517597],
+ [90.80428732172021, 26.307069305552186],
+ [90.7515285859575, 26.309637804985915],
+ [90.72036408210218, 26.282487066983972],
+ [90.73330289173681, 26.257781266735304],
+ [90.71734107150807, 26.263678692663966],
+ [90.66044355288967, 26.24676328899694],
+ [90.65333357067217, 26.237371158142075],
+ [90.66893873997022, 26.20136271924837],
+ [90.67105643291256, 26.199656901145918],
+ [90.74150463873991, 26.193667944992868],
+ [90.80880013611076, 26.259507079982168],
+ [90.82209873089816, 26.247778381326015],
+ [90.83673951022965, 26.26719335271408],
+ [90.84763123719821, 26.250407519941312],
+ [90.82665371580137, 26.293464452068427],
+ [90.8523339949657, 26.315777664237398],
+ [90.8904409371532, 26.32450592000276],
+ [90.90426238736858, 26.340401098025534],
+ [90.90028758028987, 26.364045148155437],
+ [90.91844572659107, 26.363955629138548],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Kalgachia',
+ district_3: 'BARPETA',
+ object_id: 120,
+ district_1: 'Barpeta',
+ revenue_cr: 'Kalgachia',
+ area: '232225684.6',
+ are_new: 232,
+ ID_NAM: 'BARPETAKalgachia',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.01785504944317, 26.224337303887015],
+ [91.02896127883024, 26.232048138364668],
+ [91.0260465826015, 26.25812504142275],
+ [90.99366311161802, 26.264133857948856],
+ [90.99865953404179, 26.298030905986266],
+ [90.97401417966176, 26.31125301986555],
+ [90.94970337855486, 26.306976079245633],
+ [90.9538661383438, 26.33452201615546],
+ [90.91844572659107, 26.363955629138548],
+ [90.90028758028987, 26.364045148155437],
+ [90.90426238736858, 26.340401098025534],
+ [90.8904409371532, 26.32450592000276],
+ [90.8523339949657, 26.315777664237398],
+ [90.82665371580137, 26.293464452068427],
+ [90.84763123719821, 26.250407519941312],
+ [90.83673951022965, 26.26719335271408],
+ [90.82209873089816, 26.247778381326015],
+ [90.80880013611076, 26.259507079982168],
+ [90.74150463873991, 26.193667944992868],
+ [90.67105643291256, 26.199656901145918],
+ [90.71445859245867, 26.130135165854004],
+ [90.76690998401995, 26.134349732536016],
+ [90.83953484191669, 26.109171060166954],
+ [90.859354565168, 26.11273989428877],
+ [90.8715521371325, 26.095626976861414],
+ [90.9224372504189, 26.093112661577287],
+ [90.93348365829624, 26.10136306266993],
+ [90.94025562154027, 26.09299630825888],
+ [90.9952772781824, 26.119581650630845],
+ [91.00871235670583, 26.115166309449155],
+ [90.9977993145122, 26.1282863909853],
+ [91.00638658699424, 26.128110144373093],
+ [90.99273167724601, 26.149649703363263],
+ [90.94390237914857, 26.139501548594403],
+ [90.89554242293933, 26.1708537377706],
+ [91.01785504944317, 26.224337303887015],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Baghbor',
+ district_3: 'BARPETA',
+ object_id: 121,
+ district_1: 'Barpeta',
+ revenue_cr: 'Baghbor',
+ area: '512830660.7',
+ are_new: 513,
+ ID_NAM: 'BARPETABaghbor',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.0955272642403, 26.411902988578387],
+ [91.08475336479599, 26.425830040359862],
+ [91.0567841935591, 26.415199875298285],
+ [91.05652847643537, 26.42888958511342],
+ [90.98072883578061, 26.416610080939112],
+ [90.91699934645717, 26.4680845101617],
+ [90.91845735528244, 26.4290652218269],
+ [90.92921428105946, 26.427223739990406],
+ [90.93421992109637, 26.387140534133014],
+ [90.91844572659107, 26.363955629138548],
+ [90.9538661383438, 26.33452201615546],
+ [90.94970337855486, 26.306976079245633],
+ [90.97401417966176, 26.31125301986555],
+ [90.99865953404179, 26.298030905986266],
+ [90.99366311161802, 26.264133857948856],
+ [91.0260465826015, 26.25812504142275],
+ [91.02896127883024, 26.232048138364668],
+ [91.01785504944317, 26.224337303887015],
+ [91.09547228554827, 26.228653563287374],
+ [91.08935501448329, 26.245742313412464],
+ [91.10285060891415, 26.25952196843293],
+ [91.08652049109702, 26.281128499202886],
+ [91.12466183696326, 26.288869571169858],
+ [91.11832854712358, 26.303805993924403],
+ [91.14622114955891, 26.299604035812152],
+ [91.12648388446414, 26.33299252577318],
+ [91.12816628795582, 26.369868297397236],
+ [91.09465897155131, 26.355666379726856],
+ [91.08718875053185, 26.33990538710031],
+ [91.05370083234754, 26.36488802883981],
+ [91.07753105094713, 26.37838734020349],
+ [91.0955272642403, 26.411902988578387],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Barpeta',
+ district_3: 'BARPETA',
+ object_id: 122,
+ district_1: 'Barpeta',
+ revenue_cr: 'Barpeta',
+ area: '315725333.4',
+ are_new: 316,
+ ID_NAM: 'BARPETABarpeta',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.230497357015, 26.433277836522024],
+ [91.20111150933741, 26.427265134943465],
+ [91.18688142538073, 26.466957007455804],
+ [91.14422161202586, 26.45998976366439],
+ [91.12927307257296, 26.47256111169891],
+ [91.10268451221476, 26.45093884396417],
+ [91.12271291141163, 26.42572957881444],
+ [91.0955272642403, 26.411902988578387],
+ [91.07753105094713, 26.37838734020349],
+ [91.05370083234754, 26.36488802883981],
+ [91.08718875053185, 26.33990538710031],
+ [91.09465897155131, 26.355666379726856],
+ [91.12816628795582, 26.369868297397236],
+ [91.12648388446414, 26.33299252577318],
+ [91.14622114955891, 26.299604035812152],
+ [91.18297410603441, 26.291353564287743],
+ [91.18678895100877, 26.27164028201506],
+ [91.21881198825584, 26.273461104019674],
+ [91.26108294068716, 26.289336643783614],
+ [91.25015563684009, 26.301905283516206],
+ [91.27551496861463, 26.34062668313566],
+ [91.27094479409826, 26.36459790924434],
+ [91.28250876991979, 26.375527119414997],
+ [91.26532749298102, 26.3607847398763],
+ [91.23686685614715, 26.376595850612606],
+ [91.23663129901504, 26.414196325040173],
+ [91.230497357015, 26.433277836522024],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sarthebari',
+ district_3: 'BARPETA',
+ object_id: 123,
+ district_1: 'Barpeta',
+ revenue_cr: 'Sarthebari',
+ area: '261719921.4',
+ are_new: 262,
+ ID_NAM: 'BARPETASarthebari',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.23758008704172, 26.59162328689672],
+ [91.22025816537048, 26.580194044045232],
+ [91.14286446693902, 26.587704859266754],
+ [91.16041482389879, 26.530007277847744],
+ [91.1384143971761, 26.51023537546167],
+ [91.12927307257296, 26.47256111169891],
+ [91.14422161202586, 26.45998976366439],
+ [91.18688142538073, 26.466957007455804],
+ [91.20111150933741, 26.427265134943465],
+ [91.230497357015, 26.433277836522024],
+ [91.26587995059258, 26.491039667231814],
+ [91.24956358328747, 26.523283313596426],
+ [91.2479279065636, 26.538419684704223],
+ [91.28992953958117, 26.563533938154016],
+ [91.25842655681501, 26.57059280294294],
+ [91.26909822618337, 26.58439678598049],
+ [91.23748640892723, 26.577257467779575],
+ [91.23758008704172, 26.59162328689672],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bajali (Pt)',
+ district_3: 'BAJALI',
+ object_id: 124,
+ district_1: 'Barpeta',
+ revenue_cr: 'Bajali (Pt)',
+ area: '167129509.3',
+ are_new: 167,
+ ID_NAM: 'BAJALIBajali (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.23569084465925, 26.616826675799484],
+ [91.19777522116938, 26.62300759485799],
+ [91.19857321709418, 26.60391771022429],
+ [91.18618217047536, 26.603952749230007],
+ [91.18676243992809, 26.62199120782995],
+ [91.17657146086489, 26.622865226371836],
+ [91.18635233115313, 26.627744014921745],
+ [91.15137182798829, 26.63889794076979],
+ [91.14286446693902, 26.587704859266754],
+ [91.22025816537048, 26.580194044045232],
+ [91.23758008704172, 26.59162328689672],
+ [91.23357903119043, 26.608050529654907],
+ [91.24939810732391, 26.616362637850177],
+ [91.23569084465925, 26.616826675799484],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Jalah (Pt)',
+ district_3: 'BAJALI',
+ object_id: 125,
+ district_1: 'Barpeta',
+ revenue_cr: 'Jalah (Pt)',
+ area: '41272560.57',
+ are_new: 41,
+ ID_NAM: 'BAJALIJalah (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.29858775657316, 26.333515080786853],
+ [92.3071438862609, 26.416747568574156],
+ [92.2968912522265, 26.454471915330885],
+ [92.28319891776522, 26.455487526838972],
+ [92.24462781068054, 26.446111464539204],
+ [92.21621265285455, 26.4147271552154],
+ [92.18190126611734, 26.424456784544116],
+ [92.15972354968683, 26.4146332883802],
+ [92.07219339903159, 26.314570456053357],
+ [92.09029783685857, 26.3282576282737],
+ [92.12295808327268, 26.312130776097735],
+ [92.12648154980315, 26.32921197195818],
+ [92.14234021019965, 26.332944272206145],
+ [92.14271205882834, 26.317630951651473],
+ [92.1907105940527, 26.29857597327979],
+ [92.20843384706025, 26.32707453607066],
+ [92.22843466977454, 26.317854061649378],
+ [92.24324902877177, 26.33275298145559],
+ [92.24479027369462, 26.324411578895567],
+ [92.25688780926906, 26.33764150623767],
+ [92.27295044293056, 26.33535976383044],
+ [92.27052005542097, 26.323220149355734],
+ [92.29858775657316, 26.333515080786853],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bhuragaon',
+ district_3: 'MORIGAON',
+ object_id: 126,
+ district_1: 'Morigaon',
+ revenue_cr: 'Bhuragaon',
+ area: '218905955.5',
+ are_new: 219,
+ ID_NAM: 'MORIGAONBhuragaon',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.44187464538602, 26.37025430920298],
+ [92.43399919703687, 26.412961443796483],
+ [92.42433100962121, 26.41355879396725],
+ [92.44110808690294, 26.451828246081572],
+ [92.4198268648715, 26.47893195315861],
+ [92.41902918335708, 26.51703222368087],
+ [92.34418479770073, 26.504668603515846],
+ [92.28319891776522, 26.455487526838972],
+ [92.2968912522265, 26.454471915330885],
+ [92.3071438862609, 26.416747568574156],
+ [92.29858775657316, 26.333515080786853],
+ [92.31392265783651, 26.327863184230676],
+ [92.32807728151266, 26.344862109380298],
+ [92.34208837866092, 26.327394604261873],
+ [92.36790886507814, 26.32830013838108],
+ [92.39887821173464, 26.368085895331188],
+ [92.41863941962664, 26.36094656103461],
+ [92.42794867978061, 26.37325884372539],
+ [92.42771030643006, 26.3647850448858],
+ [92.44187464538602, 26.37025430920298],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Laharighat',
+ district_3: 'MORIGAON',
+ object_id: 127,
+ district_1: 'Morigaon',
+ revenue_cr: 'Laharighat',
+ area: '232534594.4',
+ are_new: 233,
+ ID_NAM: 'MORIGAONLaharighat',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.36790886507814, 26.32830013838108],
+ [92.34208837866092, 26.327394604261873],
+ [92.32807728151266, 26.344862109380298],
+ [92.31392265783651, 26.327863184230676],
+ [92.29858775657316, 26.333515080786853],
+ [92.27052005542097, 26.323220149355734],
+ [92.27295044293056, 26.33535976383044],
+ [92.25688780926906, 26.33764150623767],
+ [92.24479027369462, 26.324411578895567],
+ [92.2544222536144, 26.23965198302295],
+ [92.27484028808259, 26.23531484568901],
+ [92.24830600213724, 26.198295676234423],
+ [92.25801071235733, 26.18399556464081],
+ [92.24708209696996, 26.169355723903667],
+ [92.2976160237775, 26.1551819667954],
+ [92.28151345012013, 26.119668693945112],
+ [92.26503889937496, 26.112933151560444],
+ [92.28267048649428, 26.097834458846457],
+ [92.27750319013045, 26.067635691156735],
+ [92.30379014382696, 26.086322461210916],
+ [92.32987722147442, 26.076769555963214],
+ [92.35964001931322, 26.091569760360482],
+ [92.3629048788397, 26.0775387421555],
+ [92.39541667416155, 26.113571331121232],
+ [92.43088081320734, 26.190779815517928],
+ [92.42538181122987, 26.2319364247636],
+ [92.4078213958339, 26.244117664367728],
+ [92.41857091410309, 26.268090688632316],
+ [92.37666075922586, 26.30156235927314],
+ [92.36790886507814, 26.32830013838108],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Marigaon',
+ district_3: 'MORIGAON',
+ object_id: 128,
+ district_1: 'Morigaon',
+ revenue_cr: 'Morigaon',
+ area: '389659479.6',
+ are_new: 390,
+ ID_NAM: 'MORIGAONMarigaon',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.56019797768066, 26.37362089531754],
+ [92.54599683744246, 26.382729534053183],
+ [92.50597909869558, 26.371821318152765],
+ [92.50423494950287, 26.38227187877469],
+ [92.48588745900103, 26.36336965535568],
+ [92.46986573192258, 26.374284487027765],
+ [92.44187464538602, 26.37025430920298],
+ [92.42771030643006, 26.3647850448858],
+ [92.42794867978061, 26.37325884372539],
+ [92.41863941962664, 26.36094656103461],
+ [92.39887821173464, 26.368085895331188],
+ [92.36790886507814, 26.32830013838108],
+ [92.37666075922586, 26.30156235927314],
+ [92.41857091410309, 26.268090688632316],
+ [92.50150854375093, 26.272396781318403],
+ [92.5293902325539, 26.28775559760049],
+ [92.56809440977656, 26.337384753561672],
+ [92.56019797768066, 26.37362089531754],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Mikirbheta',
+ district_3: 'MORIGAON',
+ object_id: 129,
+ district_1: 'Morigaon',
+ revenue_cr: 'Mikirbheta',
+ area: '183812069.7',
+ are_new: 184,
+ ID_NAM: 'MORIGAONMikirbheta',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.29768419967978, 26.576553817134894],
+ [93.28693855674273, 26.637402686932603],
+ [93.30936870336133, 26.639373218534537],
+ [93.3179579620184, 26.65567256102312],
+ [93.30395902716077, 26.700333453358997],
+ [93.24171646792318, 26.68378537174747],
+ [93.21982406900334, 26.630970755743547],
+ [93.145180305896, 26.59168327827554],
+ [93.09859199990358, 26.57672042627608],
+ [93.07115467712897, 26.59785128324849],
+ [93.00958871998021, 26.59856623876378],
+ [92.97847153398418, 26.618171237764667],
+ [92.93427802963967, 26.6151160015284],
+ [92.91698904739332, 26.59489434560549],
+ [92.85112407129834, 26.584976258341847],
+ [92.82816829615253, 26.536468163936792],
+ [92.849672586937, 26.517342454481643],
+ [92.87819083722164, 26.51740159411985],
+ [92.87352722084772, 26.478909225819702],
+ [92.87962380101679, 26.47316152540043],
+ [92.88000717413226, 26.48771811203555],
+ [92.8962652910811, 26.492890616491838],
+ [92.91441629487746, 26.471407910948916],
+ [92.9470498783956, 26.48450680438463],
+ [92.92475256386143, 26.454130664495022],
+ [92.94640902835677, 26.46189628740493],
+ [92.96480963354642, 26.445862952635277],
+ [92.911796126586, 26.423674116956967],
+ [92.91639430069146, 26.41406537280786],
+ [92.96092853063332, 26.424731621880493],
+ [92.94167314970476, 26.400758104242115],
+ [92.9797395877544, 26.420824139444342],
+ [93.02306678378832, 26.42158978264322],
+ [93.04365613955765, 26.437190537906556],
+ [93.0560229325621, 26.42819824860186],
+ [93.05031161736049, 26.415595286067806],
+ [93.07735948991673, 26.419032067836053],
+ [93.0916500188139, 26.433743659274892],
+ [93.06853578354688, 26.4350903843776],
+ [93.1181567597177, 26.44153201688715],
+ [93.10392862869847, 26.44880096484636],
+ [93.12840448356076, 26.464087593046408],
+ [93.11043358119909, 26.470987153144094],
+ [93.13628889889311, 26.48428682000813],
+ [93.12741742550637, 26.480293355586895],
+ [93.12528644558262, 26.495709364626226],
+ [93.12454396823736, 26.483014646313666],
+ [93.09818324668638, 26.472916947753582],
+ [93.1024878522553, 26.46004692871303],
+ [93.06451340528402, 26.479310537779764],
+ [93.09035314259779, 26.499938357712537],
+ [93.00868327207274, 26.48114001192717],
+ [93.01278964011972, 26.507420544828058],
+ [93.05915629040906, 26.544301217520815],
+ [93.10123325075647, 26.542757223028676],
+ [93.11432969675717, 26.530249243278945],
+ [93.14153526047669, 26.555520502603237],
+ [93.15088656448086, 26.546317368698535],
+ [93.19132542804304, 26.56700903563691],
+ [93.20971494353053, 26.556087211358502],
+ [93.16096942590974, 26.523967450264156],
+ [93.1994731521616, 26.533402375371544],
+ [93.20427186347614, 26.501322362151402],
+ [93.2173425404046, 26.507384350066975],
+ [93.21298611551852, 26.529581206519904],
+ [93.23334527709795, 26.535654921767623],
+ [93.26342268830544, 26.521068460666733],
+ [93.26339414793055, 26.50885220669401],
+ [93.28423708013823, 26.519720294224665],
+ [93.29148153296724, 26.504471203957824],
+ [93.28783821860146, 26.520616085124402],
+ [93.2639485279368, 26.52734631726131],
+ [93.27353023723495, 26.545151977949185],
+ [93.25655927387052, 26.53191185451287],
+ [93.26268938455587, 26.537810529687505],
+ [93.24708311122835, 26.544900715538784],
+ [93.2564947748331, 26.5510687711873],
+ [93.23489877144802, 26.55363103667551],
+ [93.25120127505333, 26.56988730682275],
+ [93.29768419967978, 26.576553817134894],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Kaliabor',
+ district_3: 'NAGAON',
+ object_id: 130,
+ district_1: 'Nagaon',
+ revenue_cr: 'Kaliabor',
+ area: '580444524.8',
+ are_new: 580,
+ ID_NAM: 'NAGAONKaliabor',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.94167314970476, 26.400758104242115],
+ [92.96092853063332, 26.424731621880493],
+ [92.91639430069146, 26.41406537280786],
+ [92.911796126586, 26.423674116956967],
+ [92.96480963354642, 26.445862952635277],
+ [92.94640902835677, 26.46189628740493],
+ [92.92475256386143, 26.454130664495022],
+ [92.9470498783956, 26.48450680438463],
+ [92.91441629487746, 26.471407910948916],
+ [92.8962652910811, 26.492890616491838],
+ [92.88000717413226, 26.48771811203555],
+ [92.87962380101679, 26.47316152540043],
+ [92.87352722084772, 26.478909225819702],
+ [92.86157710869287, 26.484695109962637],
+ [92.83044282955359, 26.46499847933842],
+ [92.79832190917818, 26.475514195809343],
+ [92.80066721095905, 26.46576655354682],
+ [92.7685111125571, 26.449818279976913],
+ [92.79163078622489, 26.45458913170511],
+ [92.79004927791266, 26.438379577177997],
+ [92.76179303206044, 26.430747744061254],
+ [92.75428457065763, 26.41157598417656],
+ [92.715480485504, 26.409448781198144],
+ [92.71987918241243, 26.396401084963674],
+ [92.69780827117764, 26.394485962107733],
+ [92.71652631134431, 26.376802081472793],
+ [92.74264152602312, 26.380843254983287],
+ [92.77407175064116, 26.354646803129953],
+ [92.76024842833674, 26.337984436389764],
+ [92.77917428296458, 26.333582296497354],
+ [92.79131531137182, 26.313004084797925],
+ [92.77544168324606, 26.296127793549736],
+ [92.80297621271757, 26.244270663152605],
+ [92.79362086898955, 26.219448812064627],
+ [92.8151534522139, 26.213989558266654],
+ [92.82706184211537, 26.225050857376576],
+ [92.81505900244662, 26.232980390010574],
+ [92.81389821470785, 26.262494654571206],
+ [92.84159190588474, 26.28377346674474],
+ [92.84401386180708, 26.305048291330095],
+ [92.87973444112043, 26.283664360159666],
+ [92.89860974844557, 26.30893202985572],
+ [92.94312438163952, 26.32714412745945],
+ [92.93957360812102, 26.353070210174934],
+ [92.90066323699793, 26.34960147627382],
+ [92.86932383654667, 26.369227756873862],
+ [92.90188538865375, 26.401364456139465],
+ [92.92095438263561, 26.391625189629575],
+ [92.94167314970476, 26.400758104242115],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Samaguri',
+ district_3: 'NAGAON',
+ object_id: 131,
+ district_1: 'Nagaon',
+ revenue_cr: 'Samaguri',
+ area: '342479635.6',
+ are_new: 342,
+ ID_NAM: 'NAGAONSamaguri',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.85112407129834, 26.584976258341847],
+ [92.77129687718639, 26.555660487189535],
+ [92.75308692953433, 26.51193478177583],
+ [92.7287896759202, 26.51777441251441],
+ [92.72161258595773, 26.536298607056384],
+ [92.68766305678662, 26.509697737900737],
+ [92.66343000846076, 26.52231443679292],
+ [92.60452784987852, 26.509025663495798],
+ [92.62099045842032, 26.434223034165235],
+ [92.59954650747346, 26.40863157852538],
+ [92.61779845675494, 26.38618074722803],
+ [92.64477222818171, 26.39127531635173],
+ [92.64681977976836, 26.406560285849153],
+ [92.66866992193725, 26.39635173375136],
+ [92.68994915779359, 26.404420671155517],
+ [92.69780827117764, 26.394485962107733],
+ [92.71987918241243, 26.396401084963674],
+ [92.715480485504, 26.409448781198144],
+ [92.75428457065763, 26.41157598417656],
+ [92.76179303206044, 26.430747744061254],
+ [92.79004927791266, 26.438379577177997],
+ [92.79163078622489, 26.45458913170511],
+ [92.7685111125571, 26.449818279976913],
+ [92.80066721095905, 26.46576655354682],
+ [92.79832190917818, 26.475514195809343],
+ [92.83044282955359, 26.46499847933842],
+ [92.86157710869287, 26.484695109962637],
+ [92.87352722084772, 26.478909225819702],
+ [92.87819083722164, 26.51740159411985],
+ [92.849672586937, 26.517342454481643],
+ [92.82816829615253, 26.536468163936792],
+ [92.85112407129834, 26.584976258341847],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Rupahi',
+ district_3: 'NAGAON',
+ object_id: 132,
+ district_1: 'Nagaon',
+ revenue_cr: 'Rupahi',
+ area: '305559066.5',
+ are_new: 306,
+ ID_NAM: 'NAGAONRupahi',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.5923367044616, 26.50677452712038],
+ [92.52262981086459, 26.50805080613254],
+ [92.4744802185353, 26.49567147383296],
+ [92.44426939583002, 26.518899107576694],
+ [92.41902918335708, 26.51703222368087],
+ [92.4198268648715, 26.47893195315861],
+ [92.44110808690294, 26.451828246081572],
+ [92.42433100962121, 26.41355879396725],
+ [92.43399919703687, 26.412961443796483],
+ [92.44187464538602, 26.37025430920298],
+ [92.46986573192258, 26.374284487027765],
+ [92.48588745900103, 26.36336965535568],
+ [92.50423494950287, 26.38227187877469],
+ [92.50597909869558, 26.371821318152765],
+ [92.54599683744246, 26.382729534053183],
+ [92.56019797768066, 26.37362089531754],
+ [92.57758804195605, 26.400025658662216],
+ [92.59954650747346, 26.40863157852538],
+ [92.62099045842032, 26.434223034165235],
+ [92.60452784987852, 26.509025663495798],
+ [92.5923367044616, 26.50677452712038],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dhing',
+ district_3: 'NAGAON',
+ object_id: 133,
+ district_1: 'Nagaon',
+ revenue_cr: 'Dhing',
+ area: '247888462.7',
+ are_new: 248,
+ ID_NAM: 'NAGAONDhing',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.59954650747346, 26.40863157852538],
+ [92.57758804195605, 26.400025658662216],
+ [92.56019797768066, 26.37362089531754],
+ [92.56809440977656, 26.337384753561672],
+ [92.5293902325539, 26.28775559760049],
+ [92.56603060946304, 26.28432964599918],
+ [92.58724227763697, 26.29987330490414],
+ [92.6061881242715, 26.27510640646065],
+ [92.62084186000433, 26.27663622513016],
+ [92.65039932003717, 26.302563189549044],
+ [92.65451442420033, 26.273636990595623],
+ [92.63669763591042, 26.236671968916127],
+ [92.64403533566255, 26.21265588333685],
+ [92.67223638543048, 26.205963624741887],
+ [92.70828033488988, 26.225793510291982],
+ [92.77623692134291, 26.19952035427366],
+ [92.80197654501153, 26.201766714066615],
+ [92.79362086898955, 26.219448812064627],
+ [92.80297621271757, 26.244270663152605],
+ [92.77544168324606, 26.296127793549736],
+ [92.79131531137182, 26.313004084797925],
+ [92.77917428296458, 26.333582296497354],
+ [92.76024842833674, 26.337984436389764],
+ [92.77407175064116, 26.354646803129953],
+ [92.74264152602312, 26.380843254983287],
+ [92.71652631134431, 26.376802081472793],
+ [92.69780827117764, 26.394485962107733],
+ [92.68994915779359, 26.404420671155517],
+ [92.66866992193725, 26.39635173375136],
+ [92.64681977976836, 26.406560285849153],
+ [92.64477222818171, 26.39127531635173],
+ [92.61779845675494, 26.38618074722803],
+ [92.59954650747346, 26.40863157852538],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Nagaon',
+ district_3: 'NAGAON',
+ object_id: 134,
+ district_1: 'Nagaon',
+ revenue_cr: 'Nagaon',
+ area: '372041429.1',
+ are_new: 372,
+ ID_NAM: 'NAGAONNagaon',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.64403533566255, 26.21265588333685],
+ [92.63669763591042, 26.236671968916127],
+ [92.65451442420033, 26.273636990595623],
+ [92.65039932003717, 26.302563189549044],
+ [92.62084186000433, 26.27663622513016],
+ [92.6061881242715, 26.27510640646065],
+ [92.58724227763697, 26.29987330490414],
+ [92.56603060946304, 26.28432964599918],
+ [92.5293902325539, 26.28775559760049],
+ [92.50150854375093, 26.272396781318403],
+ [92.41857091410309, 26.268090688632316],
+ [92.4078213958339, 26.244117664367728],
+ [92.42538181122987, 26.2319364247636],
+ [92.43088081320734, 26.190779815517928],
+ [92.39541667416155, 26.113571331121232],
+ [92.41444685732984, 26.11557026331179],
+ [92.44145000186975, 26.095549160916846],
+ [92.48664574669529, 26.149357882042228],
+ [92.50877420849874, 26.1412219441978],
+ [92.52150287613729, 26.155349110201396],
+ [92.51967414517067, 26.10238207030111],
+ [92.53639844912439, 26.096413381535637],
+ [92.56377673012697, 26.115804302590682],
+ [92.57439448351029, 26.153765612978244],
+ [92.59961685274672, 26.15787922777785],
+ [92.57600568383758, 26.17744042547059],
+ [92.60544826641359, 26.200291932917434],
+ [92.60681650120262, 26.2153977883791],
+ [92.64403533566255, 26.21265588333685],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Raha',
+ district_3: 'NAGAON',
+ object_id: 135,
+ district_1: 'Nagaon',
+ revenue_cr: 'Raha',
+ area: '340889151.3',
+ are_new: 341,
+ ID_NAM: 'NAGAONRaha',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.77623692134291, 26.19952035427366],
+ [92.70828033488988, 26.225793510291982],
+ [92.67223638543048, 26.205963624741887],
+ [92.64403533566255, 26.21265588333685],
+ [92.60681650120262, 26.2153977883791],
+ [92.60544826641359, 26.200291932917434],
+ [92.57600568383758, 26.17744042547059],
+ [92.59961685274672, 26.15787922777785],
+ [92.57439448351029, 26.153765612978244],
+ [92.56377673012697, 26.115804302590682],
+ [92.59570107216875, 26.08070921358768],
+ [92.57951143289571, 26.033226791581754],
+ [92.594445436709, 26.02355895483205],
+ [92.56623909855902, 26.01067426364388],
+ [92.55256585509414, 25.965432447347588],
+ [92.58874326905195, 25.963961091559916],
+ [92.59593944282432, 25.978034808507164],
+ [92.65553454654538, 26.00019409752504],
+ [92.66689166730643, 26.028326323450692],
+ [92.71332045047073, 26.01800626616081],
+ [92.71736865170475, 26.058242908258293],
+ [92.75359088530703, 26.05645072735771],
+ [92.75092707236747, 26.075492193056117],
+ [92.73205257262778, 26.07203676270031],
+ [92.7406532695334, 26.094098339921256],
+ [92.73886487741461, 26.10358186311888],
+ [92.7230294600278, 26.100853277211087],
+ [92.7308455998053, 26.116514147243826],
+ [92.7027835643276, 26.1263274237514],
+ [92.7058733466968, 26.142229087783598],
+ [92.72254578551927, 26.150878429272275],
+ [92.75178409838617, 26.14223848741936],
+ [92.76171272626728, 26.157100731502616],
+ [92.75423973125025, 26.17863492698262],
+ [92.77845175899841, 26.18689878101677],
+ [92.77623692134291, 26.19952035427366],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Kampur',
+ district_3: 'NAGAON',
+ object_id: 136,
+ district_1: 'Nagaon',
+ revenue_cr: 'Kampur',
+ area: '375122906.9',
+ are_new: 375,
+ ID_NAM: 'NAGAONKampur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.58788222037738, 26.961246788710724],
+ [92.44739993117037, 26.95890848050924],
+ [92.39826127844191, 26.9247872708898],
+ [92.36484227361635, 26.93206189642904],
+ [92.34954744170626, 26.911448638953],
+ [92.32790812694803, 26.812631344722664],
+ [92.34032211384425, 26.771235565197756],
+ [92.32869857073618, 26.77164287774775],
+ [92.33417838559748, 26.742114502005197],
+ [92.32351918933686, 26.73912817481816],
+ [92.33738782535916, 26.733126080027787],
+ [92.33196285893418, 26.72515507830122],
+ [92.34191711485201, 26.729201117689854],
+ [92.33182333260423, 26.721892358251846],
+ [92.34631510568462, 26.70477012606739],
+ [92.3324159997062, 26.694446076017194],
+ [92.33148510881493, 26.662735627786194],
+ [92.3488504918779, 26.66415011760386],
+ [92.34449493835764, 26.692761932593534],
+ [92.3640673895472, 26.69816294190874],
+ [92.36306279278519, 26.643166930670404],
+ [92.40033558545099, 26.64202478072793],
+ [92.39535449906577, 26.627024009182563],
+ [92.37578360196164, 26.629357760493004],
+ [92.3758144806512, 26.61362465297574],
+ [92.35742515291165, 26.6118407639239],
+ [92.3605866262304, 26.582343836122135],
+ [92.35222538424692, 26.57001497074243],
+ [92.36612992503281, 26.5661851624113],
+ [92.3807409943829, 26.527487651153937],
+ [92.35422615696345, 26.534810718932157],
+ [92.33143542030162, 26.51586519151396],
+ [92.34418479770073, 26.504668603515846],
+ [92.41902918335708, 26.51703222368087],
+ [92.44426939583002, 26.518899107576694],
+ [92.4744802185353, 26.49567147383296],
+ [92.52262981086459, 26.50805080613254],
+ [92.5923367044616, 26.50677452712038],
+ [92.59899073328188, 26.53738240903834],
+ [92.57839779053967, 26.569222246331996],
+ [92.5787570456864, 26.598627599243798],
+ [92.61187886086653, 26.635529611525424],
+ [92.6353878922262, 26.63653031486761],
+ [92.62415841847373, 26.653401606546648],
+ [92.63525689270494, 26.660218127699345],
+ [92.63485173454549, 26.68767346562273],
+ [92.62495148624085, 26.68857048498659],
+ [92.64098543939029, 26.697357080841112],
+ [92.61469807516373, 26.732243147803043],
+ [92.6066405068654, 26.779968507169343],
+ [92.61659923280011, 26.783503747384547],
+ [92.60412697129308, 26.794105121999312],
+ [92.61778987514903, 26.812306421440763],
+ [92.57365761883894, 26.87386579647844],
+ [92.58788222037738, 26.961246788710724],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dhekiajuli (Pt)',
+ district_3: 'SONITPUR',
+ object_id: 137,
+ district_1: 'Sonitpur',
+ revenue_cr: 'Dhekiajuli (Pt)',
+ area: '1231160620',
+ are_new: 1231,
+ ID_NAM: 'SONITPURDhekiajuli (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.9829628184523, 26.935518691407246],
+ [92.91707319258597, 26.96302748312468],
+ [92.91833856219013, 26.98240276574647],
+ [92.8865374609205, 26.999842459381988],
+ [92.76315275710878, 27.027410503668435],
+ [92.7228490926918, 27.01830983558118],
+ [92.6724082951281, 27.031745965902907],
+ [92.644729510595, 26.986760120656538],
+ [92.58788222037738, 26.961246788710724],
+ [92.57365761883894, 26.87386579647844],
+ [92.61778987514903, 26.812306421440763],
+ [92.60412697129308, 26.794105121999312],
+ [92.61659923280011, 26.783503747384547],
+ [92.6066405068654, 26.779968507169343],
+ [92.61469807516373, 26.732243147803043],
+ [92.64098543939029, 26.697357080841112],
+ [92.71784363591122, 26.69867272434672],
+ [92.7269230468284, 26.713867086782535],
+ [92.76872523588655, 26.725077051960625],
+ [92.79130641355893, 26.719208303966056],
+ [92.795383876515, 26.70598007510727],
+ [92.8251948860368, 26.717484395149842],
+ [92.840204613337, 26.708579560969895],
+ [92.8461896910197, 26.681824835859246],
+ [92.8813038455325, 26.698307436314494],
+ [92.85976541517394, 26.719455004490325],
+ [92.8789378932799, 26.76229346542074],
+ [92.86103570035935, 26.8512989333367],
+ [92.93971048891245, 26.893705877098817],
+ [92.9829628184523, 26.935518691407246],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Chariduar',
+ district_3: 'SONITPUR',
+ object_id: 138,
+ district_1: 'Sonitpur',
+ revenue_cr: 'Chariduar',
+ area: '999613694.8',
+ are_new: 1000,
+ ID_NAM: 'SONITPURChariduar',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.8813038455325, 26.698307436314494],
+ [92.8461896910197, 26.681824835859246],
+ [92.840204613337, 26.708579560969895],
+ [92.8251948860368, 26.717484395149842],
+ [92.795383876515, 26.70598007510727],
+ [92.79130641355893, 26.719208303966056],
+ [92.76872523588655, 26.725077051960625],
+ [92.7269230468284, 26.713867086782535],
+ [92.71784363591122, 26.69867272434672],
+ [92.64098543939029, 26.697357080841112],
+ [92.62495148624085, 26.68857048498659],
+ [92.63485173454549, 26.68767346562273],
+ [92.63525689270494, 26.660218127699345],
+ [92.62415841847373, 26.653401606546648],
+ [92.6353878922262, 26.63653031486761],
+ [92.61187886086653, 26.635529611525424],
+ [92.5787570456864, 26.598627599243798],
+ [92.57839779053967, 26.569222246331996],
+ [92.59899073328188, 26.53738240903834],
+ [92.5923367044616, 26.50677452712038],
+ [92.60452784987852, 26.509025663495798],
+ [92.66343000846076, 26.52231443679292],
+ [92.68766305678662, 26.509697737900737],
+ [92.72161258595773, 26.536298607056384],
+ [92.7287896759202, 26.51777441251441],
+ [92.75308692953433, 26.51193478177583],
+ [92.77129687718639, 26.555660487189535],
+ [92.85112407129834, 26.584976258341847],
+ [92.91698904739332, 26.59489434560549],
+ [92.93427802963967, 26.6151160015284],
+ [92.90380700901402, 26.684674815117052],
+ [92.8813038455325, 26.698307436314494],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Tezpur',
+ district_3: 'SONITPUR',
+ object_id: 139,
+ district_1: 'Sonitpur',
+ revenue_cr: 'Tezpur',
+ area: '546146490.7',
+ are_new: 546,
+ ID_NAM: 'SONITPURTezpur',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.06168219129127, 26.92216650650882],
+ [93.02178236540858, 26.9135137821572],
+ [92.9829628184523, 26.935518691407246],
+ [92.93971048891245, 26.893705877098817],
+ [92.86103570035935, 26.8512989333367],
+ [92.8789378932799, 26.76229346542074],
+ [92.85976541517394, 26.719455004490325],
+ [92.8813038455325, 26.698307436314494],
+ [92.90380700901402, 26.684674815117052],
+ [92.93427802963967, 26.6151160015284],
+ [92.97847153398418, 26.618171237764667],
+ [93.00958871998021, 26.59856623876378],
+ [93.07115467712897, 26.59785128324849],
+ [93.09859199990358, 26.57672042627608],
+ [93.145180305896, 26.59168327827554],
+ [93.12338462229461, 26.65953848263524],
+ [93.10372355769215, 26.695323044635643],
+ [93.08408765849408, 26.70170554607145],
+ [93.06808309732239, 26.74661348240313],
+ [93.06415768051635, 26.82227059848148],
+ [93.04330102025448, 26.850790419116663],
+ [93.06120602849512, 26.872435458556726],
+ [93.06168219129127, 26.92216650650882],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Na-Duar',
+ district_3: 'SONITPUR',
+ object_id: 140,
+ district_1: 'Sonitpur',
+ revenue_cr: 'Naduar',
+ area: '668195595.7',
+ are_new: 668,
+ ID_NAM: 'SONITPURNa-Duar',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.9085134804773, 26.900532107579956],
+ [93.90121852705799, 26.91927009368242],
+ [93.93074679723398, 26.948075482945697],
+ [93.87898202397696, 27.015154984725072],
+ [93.88582166539622, 27.065094566746986],
+ [93.87422138955235, 27.094020714321417],
+ [93.82658721729543, 27.09707815183258],
+ [93.83769577870898, 27.085469090305278],
+ [93.82914772936721, 27.066911174674985],
+ [93.80327991700587, 27.058155290105226],
+ [93.79370380061869, 27.072436706516704],
+ [93.80014515599042, 27.057950594769174],
+ [93.78371429750406, 27.05155122437903],
+ [93.78110734253208, 27.065615049501535],
+ [93.77820272629913, 27.049034103706596],
+ [93.77079254058842, 27.062133179939032],
+ [93.7673459132524, 27.03953646581966],
+ [93.72330169902666, 27.02091161280395],
+ [93.69768446273068, 26.99427884202052],
+ [93.7441939029294, 26.95779751266577],
+ [93.73956199349173, 26.89852698120609],
+ [93.7809008054752, 26.88536185378208],
+ [93.78915808453253, 26.85925251235973],
+ [93.76995155488743, 26.844776579888407],
+ [93.80017030342847, 26.821799177815933],
+ [93.82388372127821, 26.825194087520494],
+ [93.83517210654699, 26.850964919361694],
+ [93.89123918478752, 26.8647780048228],
+ [93.89171680734596, 26.892187695147435],
+ [93.9085134804773, 26.900532107579956],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Narayanpur',
+ district_3: 'LAKHIMPUR',
+ object_id: 141,
+ district_1: 'Lakhimpur',
+ revenue_cr: 'Narayanpur',
+ area: '380387815.9',
+ are_new: 380,
+ ID_NAM: 'LAKHIMPURNarayanpur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.06133123124827, 27.00800051266016],
+ [94.0635915191656, 26.998235866779172],
+ [94.0404286275495, 27.00405095886969],
+ [94.04977164100194, 27.02647725376624],
+ [94.01984330072426, 27.103794455326735],
+ [93.92573748937578, 27.150259127286454],
+ [93.91155133393484, 27.169835063638278],
+ [93.92595999668177, 27.177460337341167],
+ [93.8845452779551, 27.199832184494838],
+ [93.87988449666422, 27.215297178398075],
+ [93.7943051517345, 27.13538618081224],
+ [93.82138546425226, 27.121802942049698],
+ [93.82658721729543, 27.09707815183258],
+ [93.87422138955235, 27.094020714321417],
+ [93.88582166539622, 27.065094566746986],
+ [93.87898202397696, 27.015154984725072],
+ [93.93074679723398, 26.948075482945697],
+ [93.90121852705799, 26.91927009368242],
+ [93.9085134804773, 26.900532107579956],
+ [93.92617394483975, 26.93026112989718],
+ [93.9623143095803, 26.92680657974927],
+ [93.96321952572242, 26.92655584265648],
+ [93.96796450879982, 26.923723386816256],
+ [93.97124569700321, 26.92252531271904],
+ [93.97639652365464, 26.92350547295548],
+ [93.97894494170774, 26.924694891297086],
+ [93.98059324874446, 26.92544108787997],
+ [93.98801922324463, 26.932237454901284],
+ [93.99088263285716, 26.93585424299711],
+ [93.99486959593825, 26.94010622625282],
+ [93.99813688900086, 26.942022697837544],
+ [93.99924515673654, 26.941836627843184],
+ [94.00526161077553, 26.93742717481395],
+ [94.00652965017271, 26.93626403234409],
+ [94.00840496866826, 26.931319739299614],
+ [94.01070888955553, 26.929940777218672],
+ [94.01405590720128, 26.930782761646782],
+ [94.01758452826485, 26.930947916072743],
+ [94.01921307236533, 26.931057439308045],
+ [94.02150529179774, 26.931544210981574],
+ [94.02460290118798, 26.93271298829499],
+ [94.02484376107525, 26.9332817340442],
+ [94.02680156108352, 26.936699113603705],
+ [94.02695088893152, 26.938405021659303],
+ [94.02483364514683, 26.946079479110058],
+ [94.02497997801164, 26.951747374909413],
+ [94.02636221933258, 26.958539706063938],
+ [94.02790003269105, 26.959353078684394],
+ [94.03900428308953, 26.97247821225888],
+ [94.04087286422046, 26.975624655880555],
+ [94.04292355272408, 26.977060846396785],
+ [94.04648314230879, 26.978362435138752],
+ [94.0520197765101, 26.979476040455268],
+ [94.06632043660706, 26.98478203182103],
+ [94.06133123124827, 27.00800051266016],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bihpuria',
+ district_3: 'LAKHIMPUR',
+ object_id: 142,
+ district_1: 'Lakhimpur',
+ revenue_cr: 'Bihpuria',
+ area: '406987947.4',
+ are_new: 407,
+ ID_NAM: 'LAKHIMPURBihpuria',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.06133123124827, 27.00800051266016],
+ [94.09814311720643, 27.02883453800969],
+ [94.10382921310472, 27.047776765495886],
+ [94.07815841386159, 27.05548991754949],
+ [94.05209164352945, 27.08670225464974],
+ [94.06800858931653, 27.1703070057282],
+ [94.05267715824513, 27.21943186057289],
+ [94.06285304022165, 27.230738882059185],
+ [94.03942608253963, 27.261715179814214],
+ [94.04969404632436, 27.292996324335874],
+ [93.9858050835801, 27.322768247467383],
+ [93.87988449666422, 27.215297178398075],
+ [93.8845452779551, 27.199832184494838],
+ [93.92595999668177, 27.177460337341167],
+ [93.91155133393484, 27.169835063638278],
+ [93.92573748937578, 27.150259127286454],
+ [94.01984330072426, 27.103794455326735],
+ [94.04977164100194, 27.02647725376624],
+ [94.0404286275495, 27.00405095886969],
+ [94.0635915191656, 26.998235866779172],
+ [94.06133123124827, 27.00800051266016],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Naobaicha',
+ district_3: 'LAKHIMPUR',
+ object_id: 143,
+ district_1: 'Lakhimpur',
+ revenue_cr: 'Nowboicha',
+ area: '329777873.3',
+ are_new: 330,
+ ID_NAM: 'LAKHIMPURNaobaicha',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.32926641121949, 27.319555664849386],
+ [94.30514016180118, 27.32010154174256],
+ [94.29897199129385, 27.35038514164281],
+ [94.24711352015946, 27.391874326080067],
+ [94.26378245914557, 27.400213736622128],
+ [94.29257067563098, 27.383795228513776],
+ [94.30809756034526, 27.412605436533493],
+ [94.30592826907129, 27.438225073371793],
+ [94.27768416574676, 27.466599513092945],
+ [94.26817903602992, 27.520937848706453],
+ [94.15659035635238, 27.47495441793727],
+ [94.15530761692388, 27.457065919841803],
+ [94.08952130450176, 27.407145503096014],
+ [94.05310779532097, 27.35992474976987],
+ [94.10782814084709, 27.29483686829442],
+ [94.12477154479694, 27.289680308433386],
+ [94.12686931580123, 27.259091212266597],
+ [94.1543654683455, 27.265774991694887],
+ [94.15799894526059, 27.251950119715286],
+ [94.18038087211137, 27.255000696048015],
+ [94.21094227762765, 27.23008916251901],
+ [94.23693361462875, 27.248530577145697],
+ [94.25721207515632, 27.24727646419503],
+ [94.27717482457392, 27.212063335987327],
+ [94.28187265957365, 27.23420058764229],
+ [94.30557074767306, 27.226188787062107],
+ [94.33144579776062, 27.25669705369574],
+ [94.31025472436288, 27.26360630123592],
+ [94.29340919725314, 27.296719708261413],
+ [94.32926641121949, 27.319555664849386],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Kadam',
+ district_3: 'LAKHIMPUR',
+ object_id: 144,
+ district_1: 'Lakhimpur',
+ revenue_cr: 'Kadam',
+ area: '523299066.2',
+ are_new: 523,
+ ID_NAM: 'LAKHIMPURKadam',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.27717482457392, 27.212063335987327],
+ [94.25721207515632, 27.24727646419503],
+ [94.23693361462875, 27.248530577145697],
+ [94.21094227762765, 27.23008916251901],
+ [94.18038087211137, 27.255000696048015],
+ [94.15799894526059, 27.251950119715286],
+ [94.1543654683455, 27.265774991694887],
+ [94.12686931580123, 27.259091212266597],
+ [94.12477154479694, 27.289680308433386],
+ [94.10782814084709, 27.29483686829442],
+ [94.05310779532097, 27.35992474976987],
+ [93.9858050835801, 27.322768247467383],
+ [94.04969404632436, 27.292996324335874],
+ [94.03942608253963, 27.261715179814214],
+ [94.06285304022165, 27.230738882059185],
+ [94.05267715824513, 27.21943186057289],
+ [94.06800858931653, 27.1703070057282],
+ [94.05209164352945, 27.08670225464974],
+ [94.07815841386159, 27.05548991754949],
+ [94.10382921310472, 27.047776765495886],
+ [94.09814311720643, 27.02883453800969],
+ [94.06133123124827, 27.00800051266016],
+ [94.06632043660706, 26.98478203182103],
+ [94.0520197765101, 26.979476040455268],
+ [94.05209370067148, 26.979502617938643],
+ [94.05529119014489, 26.980858006031717],
+ [94.05995229033772, 26.9828998649575],
+ [94.0667140469235, 26.977433602246002],
+ [94.08286175104243, 26.959783772710637],
+ [94.08450918401842, 26.959969990826192],
+ [94.09988688281851, 26.968729387248995],
+ [94.10275287418918, 26.969812878887982],
+ [94.11095686518387, 26.970869823818486],
+ [94.11804710602465, 26.970058113989516],
+ [94.12284024778445, 26.970328988282994],
+ [94.1268831426701, 26.968893965665682],
+ [94.130884664747, 26.968904055955605],
+ [94.13436140091639, 26.96902902079476],
+ [94.13751824701313, 26.974529297845802],
+ [94.13795388231522, 26.97730475198092],
+ [94.1371999828911, 26.980662143902705],
+ [94.13394242576958, 26.98823002413765],
+ [94.13810686091652, 26.989772932003877],
+ [94.14634600478489, 26.99315633727886],
+ [94.14869987918848, 26.9936703721243],
+ [94.15051445360454, 26.994292740154833],
+ [94.15510223510049, 26.99713470164629],
+ [94.15818174703102, 27.000184557946234],
+ [94.16487155395247, 27.00015562815967],
+ [94.17082513400639, 27.001426376265055],
+ [94.18372049123244, 27.000125488955383],
+ [94.18476769778333, 27.000527074079482],
+ [94.18513843789096, 27.00058360799063],
+ [94.18691058667277, 27.00220383609665],
+ [94.18913032733307, 27.004791530683818],
+ [94.19163542323328, 27.00971505591538],
+ [94.1919236171495, 27.011497369994032],
+ [94.19158797691492, 27.01469233774907],
+ [94.18696588606333, 27.028660893797724],
+ [94.18695217328055, 27.03104797026211],
+ [94.18846656127133, 27.035731281971252],
+ [94.19240228444865, 27.036018253906068],
+ [94.20055177914661, 27.03035535075114],
+ [94.20418357261887, 27.028620503661468],
+ [94.20635524712328, 27.02849737587195],
+ [94.21231644219587, 27.028782569045315],
+ [94.21637289804904, 27.029068885772357],
+ [94.21987576531173, 27.030023167966444],
+ [94.22377574093062, 27.031861229983832],
+ [94.22444610242317, 27.035755416901893],
+ [94.22398801822216, 27.036351455945063],
+ [94.2224454455893, 27.035621413281024],
+ [94.22190162078765, 27.03613625730692],
+ [94.22366913066932, 27.040336211684288],
+ [94.22515465040016, 27.04467165488556],
+ [94.22556468192003, 27.046665848934865],
+ [94.22638418800426, 27.055505408931047],
+ [94.22730348434014, 27.057724797633185],
+ [94.22820750212972, 27.05962842119437],
+ [94.23165996132853, 27.06475205791797],
+ [94.23229031994322, 27.066201109969086],
+ [94.2386867757204, 27.074890660910096],
+ [94.24020020700544, 27.07580208864639],
+ [94.24655143620134, 27.080988002295722],
+ [94.25164537793572, 27.08541568794525],
+ [94.2540575503063, 27.087886159084103],
+ [94.25579139492437, 27.08837045737113],
+ [94.25721437843671, 27.08848532017121],
+ [94.26161782024647, 27.089927544928997],
+ [94.26764596046898, 27.09266058565347],
+ [94.25714966829523, 27.10648670516039],
+ [94.26723434521928, 27.118867542279627],
+ [94.24766080616989, 27.118431213596775],
+ [94.27677451013048, 27.17902900903143],
+ [94.27717482457392, 27.212063335987327],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'North Lakhimpur',
+ district_3: 'LAKHIMPUR',
+ object_id: 145,
+ district_1: 'Lakhimpur',
+ revenue_cr: 'North Lakhimpur',
+ area: '615562945.6',
+ are_new: 616,
+ ID_NAM: 'LAKHIMPURNorth Lakhimpur',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.62204758339111, 27.33295766586349],
+ [94.62047959023235, 27.362611296977022],
+ [94.59322010962948, 27.358357307631696],
+ [94.59238638141764, 27.377717307584746],
+ [94.55906644100499, 27.358496306947487],
+ [94.5130475096975, 27.349206182065657],
+ [94.4976631561778, 27.32976686579355],
+ [94.46045977992725, 27.33219163378076],
+ [94.43914683928143, 27.310003420807213],
+ [94.43025529842953, 27.285051711670157],
+ [94.41879869104739, 27.284280450801383],
+ [94.42607552365081, 27.274978406472158],
+ [94.40719723481723, 27.26338563560831],
+ [94.42345062572934, 27.247885693359503],
+ [94.40711090851505, 27.246411087867994],
+ [94.40637169025764, 27.234729616329044],
+ [94.38646499391714, 27.238809317512267],
+ [94.39558638400585, 27.223427293667683],
+ [94.38098153369246, 27.227356497973965],
+ [94.36601484018595, 27.213193205767052],
+ [94.36637371444704, 27.18944892021259],
+ [94.35092418276356, 27.197698525758575],
+ [94.33636271389183, 27.17216430874104],
+ [94.32377563242015, 27.18477068871826],
+ [94.3191654568225, 27.174608493775875],
+ [94.3049355165963, 27.17884817533477],
+ [94.32578081586477, 27.14126996965304],
+ [94.37780475487789, 27.176409586066143],
+ [94.38226304422564, 27.163805929292412],
+ [94.39440244308896, 27.17026056964011],
+ [94.38510809766365, 27.137410204224288],
+ [94.37026720422958, 27.139139243510666],
+ [94.37035013579828, 27.098823822142002],
+ [94.37645007207324, 27.098478655822788],
+ [94.37940467955174, 27.097715989618603],
+ [94.38628163878452, 27.096415942228216],
+ [94.3931339949583, 27.09863080634287],
+ [94.39418771698996, 27.09850437505625],
+ [94.40487601327588, 27.096313815874936],
+ [94.4102825678308, 27.09394867581666],
+ [94.41036589286165, 27.093920969794425],
+ [94.41570460395135, 27.092597265889967],
+ [94.41712630377114, 27.092646581332218],
+ [94.41931304661611, 27.093172052080146],
+ [94.42264306723838, 27.095397316794614],
+ [94.42418220471357, 27.098244161972673],
+ [94.42478959430474, 27.100046456262877],
+ [94.42517701972046, 27.101632741748325],
+ [94.42563897476208, 27.108044784251803],
+ [94.4257559147508, 27.110106966945196],
+ [94.42592320980279, 27.112119429783295],
+ [94.42952579724856, 27.116716646997528],
+ [94.42990922156801, 27.11697782939605],
+ [94.43576539909232, 27.119574708204695],
+ [94.43707665823443, 27.11972743770743],
+ [94.43750001356659, 27.11968552124774],
+ [94.4406566808986, 27.118886515764867],
+ [94.4434144962444, 27.117991668968084],
+ [94.45124052377822, 27.117301706141294],
+ [94.4581155543281, 27.112947827289393],
+ [94.45897245188776, 27.11241022822178],
+ [94.46323804901378, 27.11189767665541],
+ [94.4657116248273, 27.11256644577322],
+ [94.47066468197904, 27.116423274726316],
+ [94.47228662256386, 27.120036678751912],
+ [94.47394223020889, 27.127440517713573],
+ [94.479610287038, 27.138879840398566],
+ [94.47971797797257, 27.138890141645536],
+ [94.48239486858604, 27.13789869303764],
+ [94.48703186787806, 27.134659598833895],
+ [94.4883367561682, 27.13328223694944],
+ [94.49216623469853, 27.125161057122696],
+ [94.49554655379018, 27.12192282601051],
+ [94.49659554619184, 27.12194897480392],
+ [94.49737106087831, 27.12196657096759],
+ [94.49873986789416, 27.121840919203112],
+ [94.50519621524968, 27.12075623260966],
+ [94.51043191922074, 27.12983517034331],
+ [94.51020311202963, 27.13164893186255],
+ [94.50951419493656, 27.134658198207866],
+ [94.50903910113564, 27.135573848131823],
+ [94.50899645092258, 27.13792029738566],
+ [94.51064654919998, 27.142185985098575],
+ [94.51320798833314, 27.143140041295688],
+ [94.51561853744802, 27.143602263020355],
+ [94.52114166727566, 27.143565715355425],
+ [94.52968569126662, 27.14421711333918],
+ [94.53021499210676, 27.144605491755545],
+ [94.53180743022104, 27.14637546129467],
+ [94.53281556634525, 27.14722450898174],
+ [94.53274214703707, 27.150762173270817],
+ [94.53112615599437, 27.153003747175177],
+ [94.5271485794097, 27.155943232691957],
+ [94.52483216565176, 27.157164412840512],
+ [94.52408894809469, 27.15908627568233],
+ [94.52430035042713, 27.159645909878208],
+ [94.52788370673929, 27.16367805872394],
+ [94.52963851444285, 27.164699053067867],
+ [94.53329961634957, 27.166465866219117],
+ [94.53591699896538, 27.167812243012868],
+ [94.53908428887557, 27.169208534204795],
+ [94.54113112001339, 27.171231315143814],
+ [94.54247758862309, 27.172116588350477],
+ [94.5441675316749, 27.172379279609057],
+ [94.54536309499498, 27.1726010110634],
+ [94.54815748614593, 27.173793872871947],
+ [94.55362664519129, 27.17360720237913],
+ [94.55609324917991, 27.17446131191115],
+ [94.55903770389907, 27.17835240490168],
+ [94.55953141977584, 27.179440158889125],
+ [94.55990937605016, 27.180360795841036],
+ [94.56015571296568, 27.18188614078574],
+ [94.56123951598293, 27.183741247771113],
+ [94.56372785920142, 27.182316445803806],
+ [94.56755479460118, 27.179143785122843],
+ [94.58664099311734, 27.267312284912823],
+ [94.61379517589755, 27.30642505713439],
+ [94.60655267151441, 27.328688879096195],
+ [94.62204758339111, 27.33295766586349],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dhakuakhana (Pt-I)',
+ district_3: 'LAKHIMPUR',
+ object_id: 146,
+ district_1: 'Lakhimpur',
+ revenue_cr: 'Dhakuakhana (Pt-I)',
+ area: '462433414.6',
+ are_new: 462,
+ ID_NAM: 'LAKHIMPURDhakuakhana (Pt-I)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.40399136765548, 27.34068272257033],
+ [94.39007518290687, 27.350569741866945],
+ [94.35428710597971, 27.340982210659565],
+ [94.32926641121949, 27.319555664849386],
+ [94.29340919725314, 27.296719708261413],
+ [94.31025472436288, 27.26360630123592],
+ [94.33144579776062, 27.25669705369574],
+ [94.30557074767306, 27.226188787062107],
+ [94.28187265957365, 27.23420058764229],
+ [94.27717482457392, 27.212063335987327],
+ [94.27677451013048, 27.17902900903143],
+ [94.24766080616989, 27.118431213596775],
+ [94.26723434521928, 27.118867542279627],
+ [94.25714966829523, 27.10648670516039],
+ [94.26764596046898, 27.09266058565347],
+ [94.26880913772641, 27.093195605235998],
+ [94.27045693362174, 27.094058761682337],
+ [94.27605713800249, 27.09543906081357],
+ [94.27759016513713, 27.09525963771549],
+ [94.28023262422404, 27.094548533829105],
+ [94.2870617679309, 27.09106918979142],
+ [94.29257897696253, 27.08870344631896],
+ [94.29582126811412, 27.087915691692658],
+ [94.29821155662606, 27.086924223238086],
+ [94.30071456484156, 27.0830809130005],
+ [94.30216375310906, 27.079390441826718],
+ [94.30643210087649, 27.07328711519181],
+ [94.3086509477131, 27.071812566948594],
+ [94.30995669389434, 27.071402517852768],
+ [94.31214448597156, 27.071101267845577],
+ [94.31517976395921, 27.072228060995847],
+ [94.31683515600861, 27.075633797823713],
+ [94.31771492557368, 27.08069711984821],
+ [94.31847980780043, 27.08349972367494],
+ [94.32043968561202, 27.08599589518509],
+ [94.32163394457825, 27.087192069361244],
+ [94.32646306296687, 27.08877320884728],
+ [94.32711859057916, 27.08851618904377],
+ [94.32919624381266, 27.087095477899783],
+ [94.33101662763364, 27.085692695315913],
+ [94.33550941138996, 27.08284207111529],
+ [94.33807079392926, 27.082003476302013],
+ [94.33878155894837, 27.08187734377534],
+ [94.3417484005827, 27.082751292157806],
+ [94.34233535529779, 27.082947557771156],
+ [94.34898422239847, 27.08524123312679],
+ [94.35163063497097, 27.08694746179266],
+ [94.35475598164224, 27.09000291703369],
+ [94.36575612897741, 27.097639132847387],
+ [94.37035013579828, 27.098823822142002],
+ [94.37026720422958, 27.139139243510666],
+ [94.38510809766365, 27.137410204224288],
+ [94.39440244308896, 27.17026056964011],
+ [94.38226304422564, 27.163805929292412],
+ [94.37780475487789, 27.176409586066143],
+ [94.32578081586477, 27.14126996965304],
+ [94.3049355165963, 27.17884817533477],
+ [94.3191654568225, 27.174608493775875],
+ [94.32377563242015, 27.18477068871826],
+ [94.33636271389183, 27.17216430874104],
+ [94.35092418276356, 27.197698525758575],
+ [94.36637371444704, 27.18944892021259],
+ [94.36601484018595, 27.213193205767052],
+ [94.38098153369246, 27.227356497973965],
+ [94.39558638400585, 27.223427293667683],
+ [94.38646499391714, 27.238809317512267],
+ [94.40637169025764, 27.234729616329044],
+ [94.40711090851505, 27.246411087867994],
+ [94.42345062572934, 27.247885693359503],
+ [94.40719723481723, 27.26338563560831],
+ [94.42607552365081, 27.274978406472158],
+ [94.41879869104739, 27.284280450801383],
+ [94.43025529842953, 27.285051711670157],
+ [94.43914683928143, 27.310003420807213],
+ [94.42678365840275, 27.337856253740405],
+ [94.40608646796844, 27.330800393760445],
+ [94.40399136765548, 27.34068272257033],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Subansiri (Pt-I)',
+ district_3: 'LAKHIMPUR',
+ object_id: 147,
+ district_1: 'Lakhimpur',
+ revenue_cr: 'Subansiri (Pt-I)',
+ area: '279641275.4',
+ are_new: 280,
+ ID_NAM: 'LAKHIMPURSubansiri (Pt-I)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.59238638141764, 27.377717307584746],
+ [94.57259029643473, 27.407905567384315],
+ [94.5494014228457, 27.379318150751494],
+ [94.55906644100499, 27.358496306947487],
+ [94.59238638141764, 27.377717307584746],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dhakuakhana (Pt-II)',
+ district_3: 'DHEMAJI',
+ object_id: 148,
+ district_1: 'Dhemaji',
+ revenue_cr: 'Dhakuakhana (Pt-II)',
+ area: '8932180.563',
+ are_new: 9,
+ ID_NAM: 'DHEMAJIDhakuakhana (Pt-II)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.46347894752857, 27.556479650119616],
+ [94.43160584808557, 27.600429527043936],
+ [94.36672579654623, 27.57436974228037],
+ [94.29818502398582, 27.602029067706226],
+ [94.27756537073697, 27.58942685687877],
+ [94.25418353992322, 27.614327527902958],
+ [94.26733374290716, 27.62958370106525],
+ [94.25138323156949, 27.637731567510663],
+ [94.20910029291737, 27.60732237052617],
+ [94.22656695294376, 27.597837892166616],
+ [94.22487691736545, 27.574191421628893],
+ [94.25862431122461, 27.55555487855935],
+ [94.26817903602992, 27.520937848706453],
+ [94.35514325075113, 27.51898285671467],
+ [94.43896307361871, 27.544290103102437],
+ [94.46347894752857, 27.556479650119616],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Subansiri (Pt-II)',
+ district_3: 'DHEMAJI',
+ object_id: 149,
+ district_1: 'Dhemaji',
+ revenue_cr: 'Subansiri (Pt-II)',
+ area: '155210841',
+ are_new: 155,
+ ID_NAM: 'DHEMAJISubansiri (Pt-II)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.6057969152726, 27.618907861037254],
+ [94.52193268149405, 27.59151925377677],
+ [94.49888166247021, 27.57226496552197],
+ [94.47772734543894, 27.576238195907006],
+ [94.46347894752857, 27.556479650119616],
+ [94.43896307361871, 27.544290103102437],
+ [94.46343362842082, 27.523043591690755],
+ [94.44821826237906, 27.51376761648181],
+ [94.45567657712776, 27.491393248850425],
+ [94.43645558909813, 27.466638218973912],
+ [94.45229701980747, 27.401703806454652],
+ [94.40980636281388, 27.365827844272918],
+ [94.40399136765548, 27.34068272257033],
+ [94.40608646796844, 27.330800393760445],
+ [94.42678365840275, 27.337856253740405],
+ [94.43914683928143, 27.310003420807213],
+ [94.46045977992725, 27.33219163378076],
+ [94.4976631561778, 27.32976686579355],
+ [94.5130475096975, 27.349206182065657],
+ [94.55906644100499, 27.358496306947487],
+ [94.5494014228457, 27.379318150751494],
+ [94.57259029643473, 27.407905567384315],
+ [94.60345806339554, 27.499607873181677],
+ [94.60672259863018, 27.538636260383882],
+ [94.58580619501203, 27.571729776639867],
+ [94.6057969152726, 27.618907861037254],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dhemaji',
+ district_3: 'DHEMAJI',
+ object_id: 150,
+ district_1: 'Dhemaji',
+ revenue_cr: 'Dhemaji',
+ area: '396211702.6',
+ are_new: 396,
+ ID_NAM: 'DHEMAJIDhemaji',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.94415615076309, 27.609106460450047],
+ [94.90308922468013, 27.650571637347685],
+ [94.88144404751635, 27.647391917962803],
+ [94.86784083940603, 27.62723024328257],
+ [94.84253419921275, 27.625492497268084],
+ [94.84086993989321, 27.637070573500647],
+ [94.86770911763925, 27.653825853918846],
+ [94.86100688881407, 27.670190270163932],
+ [94.89503242893295, 27.68757095541208],
+ [94.89060596150586, 27.724715478465097],
+ [94.869099199456, 27.732992924159703],
+ [94.85226768157314, 27.727699479745972],
+ [94.84089199802501, 27.70070584091665],
+ [94.79364942745157, 27.695276445371373],
+ [94.75422881324712, 27.660644607294152],
+ [94.68783277561407, 27.66523806449318],
+ [94.68259975670745, 27.645990126535104],
+ [94.6057969152726, 27.618907861037254],
+ [94.58580619501203, 27.571729776639867],
+ [94.60672259863018, 27.538636260383882],
+ [94.60345806339554, 27.499607873181677],
+ [94.57259029643473, 27.407905567384315],
+ [94.59238638141764, 27.377717307584746],
+ [94.59322010962948, 27.358357307631696],
+ [94.62047959023235, 27.362611296977022],
+ [94.62204758339111, 27.33295766586349],
+ [94.63822059754318, 27.32136074833516],
+ [94.638554979238, 27.33808660254661],
+ [94.66645017151629, 27.352499161592252],
+ [94.66464690688967, 27.376996921759446],
+ [94.69087610250668, 27.39334925847513],
+ [94.69326037589948, 27.421582246236845],
+ [94.7317322398065, 27.44313138651303],
+ [94.74628651586774, 27.437529770889284],
+ [94.77112576890684, 27.48236904013216],
+ [94.79322477944372, 27.48268645011405],
+ [94.82978321742256, 27.51848394480063],
+ [94.94415615076309, 27.609106460450047],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sissibargaon',
+ district_3: 'DHEMAJI',
+ object_id: 151,
+ district_1: 'Dhemaji',
+ revenue_cr: 'Sissiborgaon',
+ area: '745985547',
+ are_new: 746,
+ ID_NAM: 'DHEMAJISissibargaon',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.51451342735096, 27.876484638461125],
+ [95.37949599964901, 27.839274127086973],
+ [95.30868061643241, 27.868106073249628],
+ [94.869099199456, 27.732992924159703],
+ [94.89060596150586, 27.724715478465097],
+ [94.89503242893295, 27.68757095541208],
+ [94.86100688881407, 27.670190270163932],
+ [94.86770911763925, 27.653825853918846],
+ [94.84086993989321, 27.637070573500647],
+ [94.84253419921275, 27.625492497268084],
+ [94.86784083940603, 27.62723024328257],
+ [94.88144404751635, 27.647391917962803],
+ [94.90308922468013, 27.650571637347685],
+ [94.94415615076309, 27.609106460450047],
+ [94.95792186770161, 27.617641809549976],
+ [94.99652408703781, 27.659170022956566],
+ [95.03609325923411, 27.668474794175957],
+ [95.09304997682972, 27.660299959337824],
+ [95.11786093473401, 27.685722577005297],
+ [95.19573352773838, 27.704740754013336],
+ [95.18886937668492, 27.67636103110676],
+ [95.2048146328782, 27.65812284902547],
+ [95.24651666607039, 27.656626361451707],
+ [95.26980925734549, 27.681268837812947],
+ [95.2855487193886, 27.69655635421078],
+ [95.34664320564197, 27.70118534259602],
+ [95.3916450724696, 27.72673674347433],
+ [95.40977270030567, 27.77352606185772],
+ [95.46697596502257, 27.817987432529776],
+ [95.4932663278256, 27.858115933110867],
+ [95.51526270853617, 27.859320525956484],
+ [95.51451342735096, 27.876484638461125],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Jonai',
+ district_3: 'DHEMAJI',
+ object_id: 152,
+ district_1: 'Dhemaji',
+ revenue_cr: 'Jonai',
+ area: '852661889.7',
+ are_new: 853,
+ ID_NAM: 'DHEMAJIJonai',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.43896307361871, 27.544290103102437],
+ [94.35514325075113, 27.51898285671467],
+ [94.26817903602992, 27.520937848706453],
+ [94.27768416574676, 27.466599513092945],
+ [94.30592826907129, 27.438225073371793],
+ [94.30809756034526, 27.412605436533493],
+ [94.29257067563098, 27.383795228513776],
+ [94.26378245914557, 27.400213736622128],
+ [94.24711352015946, 27.391874326080067],
+ [94.29897199129385, 27.35038514164281],
+ [94.30514016180118, 27.32010154174256],
+ [94.32926641121949, 27.319555664849386],
+ [94.35428710597971, 27.340982210659565],
+ [94.39007518290687, 27.350569741866945],
+ [94.40399136765548, 27.34068272257033],
+ [94.40980636281388, 27.365827844272918],
+ [94.45229701980747, 27.401703806454652],
+ [94.43645558909813, 27.466638218973912],
+ [94.45567657712776, 27.491393248850425],
+ [94.44821826237906, 27.51376761648181],
+ [94.46343362842082, 27.523043591690755],
+ [94.43896307361871, 27.544290103102437],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Gogamukh',
+ district_3: 'DHEMAJI',
+ object_id: 153,
+ district_1: 'Dhemaji',
+ revenue_cr: 'Gogamukh',
+ area: '323763379.2',
+ are_new: 324,
+ ID_NAM: 'DHEMAJIGogamukh',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.7778406595464, 27.742840157899604],
+ [95.81158676791638, 27.797717634645956],
+ [95.83798715996865, 27.810329145731348],
+ [95.83767318709874, 27.82421253441565],
+ [95.87032099364278, 27.83276307858358],
+ [95.92500250499918, 27.881772063527837],
+ [95.91541881940736, 27.889481680793274],
+ [95.93766120914844, 27.898294123434155],
+ [95.9297460893997, 27.90283666390705],
+ [95.95260821787211, 27.920187513465606],
+ [95.94821614603892, 27.93720906235515],
+ [95.97165975309642, 27.96254244724398],
+ [95.8237980948845, 27.971569273279467],
+ [95.6051971901679, 27.95471009010859],
+ [95.56851061290368, 27.935997218046886],
+ [95.51451342735096, 27.876484638461125],
+ [95.51526270853617, 27.859320525956484],
+ [95.4932663278256, 27.858115933110867],
+ [95.46697596502257, 27.817987432529776],
+ [95.40977270030567, 27.77352606185772],
+ [95.40783865175345, 27.69719720417132],
+ [95.45871401831901, 27.73092242339605],
+ [95.5318939021107, 27.787785869335433],
+ [95.56744005464701, 27.77009414411521],
+ [95.67615575855255, 27.792012400398328],
+ [95.69492896336249, 27.786337263644008],
+ [95.7196884585808, 27.75063370115739],
+ [95.7778406595464, 27.742840157899604],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sadiya',
+ district_3: 'TINSUKIA',
+ object_id: 154,
+ district_1: 'Tinsukia',
+ revenue_cr: 'Sadiya',
+ area: '851463185',
+ are_new: 851,
+ ID_NAM: 'TINSUKIASadiya',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.7778406595464, 27.742840157899604],
+ [95.7196884585808, 27.75063370115739],
+ [95.69492896336249, 27.786337263644008],
+ [95.67615575855255, 27.792012400398328],
+ [95.56744005464701, 27.77009414411521],
+ [95.5318939021107, 27.787785869335433],
+ [95.45871401831901, 27.73092242339605],
+ [95.46930232223241, 27.690111116539722],
+ [95.4334791651951, 27.637825767410977],
+ [95.35588915163638, 27.58977877885099],
+ [95.37470514589823, 27.55751264770281],
+ [95.39587712829956, 27.552023769444],
+ [95.38287862291935, 27.503371802029477],
+ [95.44067435441391, 27.491089128826175],
+ [95.46707185928085, 27.52090329102067],
+ [95.49645582768287, 27.53264443514896],
+ [95.49645363848852, 27.547489276279165],
+ [95.52037104936623, 27.55627110460935],
+ [95.51609992041469, 27.57809414287533],
+ [95.547052467677, 27.567721691124607],
+ [95.54910987917225, 27.542717971786132],
+ [95.60608669208077, 27.511397745780815],
+ [95.6162592475958, 27.475961224910723],
+ [95.66534181131455, 27.467565288551647],
+ [95.66567953025067, 27.513258516365237],
+ [95.70348374827226, 27.50080786293837],
+ [95.73723572084441, 27.545295551752996],
+ [95.73112567492922, 27.56210078586688],
+ [95.76102624828148, 27.56796730123302],
+ [95.75803806267598, 27.594853280673476],
+ [95.72958348318205, 27.58266566508984],
+ [95.77247328052104, 27.654824186497855],
+ [95.77346865068677, 27.672283728383515],
+ [95.79037478982366, 27.680236267148228],
+ [95.76750436990116, 27.687390359547454],
+ [95.7652727606993, 27.71474998616992],
+ [95.75222127627688, 27.723021997904755],
+ [95.77868749327992, 27.733274839880345],
+ [95.7778406595464, 27.742840157899604],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Doom Dooma',
+ district_3: 'TINSUKIA',
+ object_id: 155,
+ district_1: 'Tinsukia',
+ revenue_cr: 'Doom Dooma',
+ area: '936656924.2',
+ are_new: 937,
+ ID_NAM: 'TINSUKIADoom Dooma',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.45871401831901, 27.73092242339605],
+ [95.40783865175345, 27.69719720417132],
+ [95.40977270030567, 27.77352606185772],
+ [95.3916450724696, 27.72673674347433],
+ [95.34664320564197, 27.70118534259602],
+ [95.2855487193886, 27.69655635421078],
+ [95.26980925734549, 27.681268837812947],
+ [95.28919937748185, 27.663644178977236],
+ [95.31844677231626, 27.587408198249236],
+ [95.28479102637904, 27.56757312791833],
+ [95.27327126473749, 27.574292918310988],
+ [95.28263538949741, 27.547302939267855],
+ [95.26535578656093, 27.544104940274647],
+ [95.26665453217115, 27.50942505339033],
+ [95.22907299483042, 27.49871193269807],
+ [95.2199821079355, 27.443547237511975],
+ [95.25179785982908, 27.434150225587565],
+ [95.2437164825825, 27.41604087877685],
+ [95.25359586122647, 27.403229147830896],
+ [95.29537325408783, 27.415107801364105],
+ [95.30935325784917, 27.38910658286093],
+ [95.34842289937383, 27.393821043212476],
+ [95.36270005505135, 27.382555767768494],
+ [95.39009820678801, 27.391002283792993],
+ [95.43934459626513, 27.364211903918026],
+ [95.45405945247158, 27.37486682965263],
+ [95.47389611166096, 27.36721476088772],
+ [95.46571821942022, 27.342623645404316],
+ [95.44834116903836, 27.335314964632094],
+ [95.46750521645536, 27.316802900150897],
+ [95.48072957985758, 27.320795869880783],
+ [95.44593583194876, 27.2943722337571],
+ [95.45453592518649, 27.26546962721896],
+ [95.52032015800877, 27.318443817372017],
+ [95.5091784981686, 27.348509562338418],
+ [95.59052074322804, 27.376425532857915],
+ [95.58514197356486, 27.41281481485859],
+ [95.6330655767181, 27.416496458787446],
+ [95.6162592475958, 27.475961224910723],
+ [95.60608669208077, 27.511397745780815],
+ [95.54910987917225, 27.542717971786132],
+ [95.547052467677, 27.567721691124607],
+ [95.51609992041469, 27.57809414287533],
+ [95.52037104936623, 27.55627110460935],
+ [95.49645363848852, 27.547489276279165],
+ [95.49645582768287, 27.53264443514896],
+ [95.46707185928085, 27.52090329102067],
+ [95.44067435441391, 27.491089128826175],
+ [95.38287862291935, 27.503371802029477],
+ [95.39587712829956, 27.552023769444],
+ [95.37470514589823, 27.55751264770281],
+ [95.35588915163638, 27.58977877885099],
+ [95.4334791651951, 27.637825767410977],
+ [95.46930232223241, 27.690111116539722],
+ [95.45871401831901, 27.73092242339605],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Tinsukia',
+ district_3: 'TINSUKIA',
+ object_id: 156,
+ district_1: 'Tinsukia',
+ revenue_cr: 'Tinsukia',
+ area: '890346165.2',
+ are_new: 890,
+ ID_NAM: 'TINSUKIATinsukia',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.48417127993426, 27.241345524582425],
+ [95.50871835323227, 27.261970473897094],
+ [95.53442731560362, 27.264683183268577],
+ [95.59886690609115, 27.223003122425354],
+ [95.68143980805556, 27.25183690001588],
+ [95.7201120816109, 27.24957297457762],
+ [95.80079337952198, 27.284362386834783],
+ [95.8050626848935, 27.27304745051588],
+ [95.85921013613539, 27.28731603712927],
+ [95.85633367939168, 27.27115461250882],
+ [95.89233539006644, 27.255379219176614],
+ [95.89711776821247, 27.28225879781536],
+ [95.95994488186672, 27.311045714177702],
+ [95.98910966223774, 27.35659027778418],
+ [96.01765838337678, 27.365013800274617],
+ [95.96926069433232, 27.427980795071182],
+ [95.95465544157369, 27.419714482688526],
+ [95.94121615803638, 27.43738716919905],
+ [95.90788273660624, 27.434443719391943],
+ [95.88607196579964, 27.398357988986042],
+ [95.88312314526821, 27.435413113084902],
+ [95.85286519963805, 27.41120794939541],
+ [95.84217747198568, 27.42689516474413],
+ [95.85322641940031, 27.45700310310754],
+ [95.88676222407742, 27.497176535588824],
+ [95.87644658670058, 27.544725228784507],
+ [95.86065001695823, 27.54319953820278],
+ [95.81424719420733, 27.574343967609334],
+ [95.81798845368516, 27.59671486277529],
+ [95.7924431050698, 27.598033323259187],
+ [95.77823498132857, 27.619473016336922],
+ [95.79569635566789, 27.641827640801072],
+ [95.77247328052104, 27.654824186497855],
+ [95.72958348318205, 27.58266566508984],
+ [95.75803806267598, 27.594853280673476],
+ [95.76102624828148, 27.56796730123302],
+ [95.73112567492922, 27.56210078586688],
+ [95.73723572084441, 27.545295551752996],
+ [95.70348374827226, 27.50080786293837],
+ [95.66567953025067, 27.513258516365237],
+ [95.66534181131455, 27.467565288551647],
+ [95.6162592475958, 27.475961224910723],
+ [95.6330655767181, 27.416496458787446],
+ [95.58514197356486, 27.41281481485859],
+ [95.59052074322804, 27.376425532857915],
+ [95.5091784981686, 27.348509562338418],
+ [95.52032015800877, 27.318443817372017],
+ [95.45453592518649, 27.26546962721896],
+ [95.43986490407096, 27.254976634776263],
+ [95.45025581398042, 27.231741721981187],
+ [95.46728826343279, 27.263602284680324],
+ [95.48417127993426, 27.241345524582425],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Margherita',
+ district_3: 'TINSUKIA',
+ object_id: 157,
+ district_1: 'Tinsukia',
+ revenue_cr: 'Margherita',
+ area: '1132319376',
+ are_new: 1132,
+ ID_NAM: 'TINSUKIAMargherita',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.0037961262309, 27.37971244528741],
+ [94.98023802170391, 27.42809230566423],
+ [94.98946660955208, 27.454660823414766],
+ [94.9172836050958, 27.456540324800315],
+ [94.92342090320174, 27.433743401225428],
+ [94.90799024242746, 27.423813351347917],
+ [94.82978321742256, 27.51848394480063],
+ [94.79322477944372, 27.48268645011405],
+ [94.77112576890684, 27.48236904013216],
+ [94.74628651586774, 27.437529770889284],
+ [94.7317322398065, 27.44313138651303],
+ [94.69326037589948, 27.421582246236845],
+ [94.69087610250668, 27.39334925847513],
+ [94.66464690688967, 27.376996921759446],
+ [94.66645017151629, 27.352499161592252],
+ [94.638554979238, 27.33808660254661],
+ [94.63822059754318, 27.32136074833516],
+ [94.62204758339111, 27.33295766586349],
+ [94.60655267151441, 27.328688879096195],
+ [94.61379517589755, 27.30642505713439],
+ [94.58664099311734, 27.267312284912823],
+ [94.56755479460118, 27.179143785122843],
+ [94.57225435256963, 27.17411264297232],
+ [94.57696782184854, 27.16797036198487],
+ [94.58091007487965, 27.162362677188653],
+ [94.58209057884228, 27.16084047585582],
+ [94.59228292873459, 27.146627225926014],
+ [94.5930818490258, 27.14557460174271],
+ [94.59308581957936, 27.145569370691444],
+ [94.64195504240128, 27.24661073816865],
+ [94.67834731630704, 27.2432145026961],
+ [94.6931044777735, 27.271771296251412],
+ [94.71959947859484, 27.245389603034123],
+ [94.72190174029382, 27.26821901355293],
+ [94.74712959913492, 27.272892016522043],
+ [94.74042789312925, 27.248333965082825],
+ [94.76925861789388, 27.243959385997666],
+ [94.77319105862713, 27.21719148365863],
+ [94.78528893106977, 27.247478503259767],
+ [94.80733702779133, 27.261477090387626],
+ [94.80505083335953, 27.29109123026245],
+ [94.8238192555389, 27.291648279940773],
+ [94.81880143255016, 27.280404508547438],
+ [94.83803414988239, 27.274589869749775],
+ [94.85238942844694, 27.300654202224358],
+ [94.87754860928797, 27.279659324048513],
+ [94.91602442218901, 27.282217777534537],
+ [94.93820816631506, 27.316281899458463],
+ [94.91168904123677, 27.32910985074865],
+ [94.91175332108524, 27.34400959508198],
+ [94.92757417767963, 27.34592330535804],
+ [94.93909432649507, 27.329268296084116],
+ [95.0037961262309, 27.37971244528741],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dibrugarh West',
+ district_3: 'DIBRUGARH',
+ object_id: 158,
+ district_1: 'Dibrugarh',
+ revenue_cr: 'Dibrugarh West',
+ area: '723055766',
+ are_new: 723,
+ ID_NAM: 'DIBRUGARHDibrugarh West',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.12441995772988, 27.44353986717867],
+ [95.07278861842853, 27.448317465856793],
+ [95.07012506150882, 27.46322748692334],
+ [95.09616997223686, 27.482024829556185],
+ [95.1017866238721, 27.509501670959345],
+ [95.07191576768778, 27.500462271755715],
+ [95.04998423366257, 27.54815736314665],
+ [95.01973901985494, 27.542637826535906],
+ [95.01284374666845, 27.56003525834304],
+ [95.02857667077292, 27.577768392032933],
+ [94.97055637213542, 27.5537850709463],
+ [94.95792186770161, 27.617641809549976],
+ [94.94415615076309, 27.609106460450047],
+ [94.82978321742256, 27.51848394480063],
+ [94.90799024242746, 27.423813351347917],
+ [94.92342090320174, 27.433743401225428],
+ [94.9172836050958, 27.456540324800315],
+ [94.98946660955208, 27.454660823414766],
+ [94.98023802170391, 27.42809230566423],
+ [95.0037961262309, 27.37971244528741],
+ [95.00053474318456, 27.35650425424152],
+ [95.02454281743064, 27.350096574266306],
+ [95.06590021016746, 27.346499564235017],
+ [95.0852671663459, 27.402300811150067],
+ [95.12441995772988, 27.44353986717867],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dibrugarh East',
+ district_3: 'DIBRUGARH',
+ object_id: 159,
+ district_1: 'Dibrugarh',
+ revenue_cr: 'Dibrugarh East',
+ area: '392607310.5',
+ are_new: 393,
+ ID_NAM: 'DIBRUGARHDibrugarh East',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.26980925734549, 27.681268837812947],
+ [95.24651666607039, 27.656626361451707],
+ [95.2048146328782, 27.65812284902547],
+ [95.18886937668492, 27.67636103110676],
+ [95.19573352773838, 27.704740754013336],
+ [95.11786093473401, 27.685722577005297],
+ [95.09304997682972, 27.660299959337824],
+ [95.03609325923411, 27.668474794175957],
+ [94.99652408703781, 27.659170022956566],
+ [94.95792186770161, 27.617641809549976],
+ [94.97055637213542, 27.5537850709463],
+ [95.02857667077292, 27.577768392032933],
+ [95.01284374666845, 27.56003525834304],
+ [95.01973901985494, 27.542637826535906],
+ [95.04998423366257, 27.54815736314665],
+ [95.07191576768778, 27.500462271755715],
+ [95.1017866238721, 27.509501670959345],
+ [95.09616997223686, 27.482024829556185],
+ [95.07012506150882, 27.46322748692334],
+ [95.07278861842853, 27.448317465856793],
+ [95.12441995772988, 27.44353986717867],
+ [95.12836972965991, 27.418270257016548],
+ [95.17172779360364, 27.407279101952398],
+ [95.2437164825825, 27.41604087877685],
+ [95.25179785982908, 27.434150225587565],
+ [95.2199821079355, 27.443547237511975],
+ [95.22907299483042, 27.49871193269807],
+ [95.26665453217115, 27.50942505339033],
+ [95.26535578656093, 27.544104940274647],
+ [95.28263538949741, 27.547302939267855],
+ [95.27327126473749, 27.574292918310988],
+ [95.28479102637904, 27.56757312791833],
+ [95.31844677231626, 27.587408198249236],
+ [95.28919937748185, 27.663644178977236],
+ [95.26980925734549, 27.681268837812947],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Chabua',
+ district_3: 'DIBRUGARH',
+ object_id: 160,
+ district_1: 'Dibrugarh',
+ revenue_cr: 'Chabua',
+ area: '658137348.7',
+ are_new: 658,
+ ID_NAM: 'DIBRUGARHChabua',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.2437164825825, 27.41604087877685],
+ [95.17172779360364, 27.407279101952398],
+ [95.12836972965991, 27.418270257016548],
+ [95.12441995772988, 27.44353986717867],
+ [95.0852671663459, 27.402300811150067],
+ [95.06590021016746, 27.346499564235017],
+ [95.02454281743064, 27.350096574266306],
+ [95.01848532475621, 27.334040164517866],
+ [95.03947361425834, 27.33596703759763],
+ [95.06716753540398, 27.30511457328625],
+ [95.08143024796837, 27.292250476289666],
+ [95.08647534740244, 27.321580325897816],
+ [95.10990083184741, 27.306883392845812],
+ [95.11863085111965, 27.31483633477923],
+ [95.1154571598147, 27.33076170811973],
+ [95.13980947835913, 27.331214916464244],
+ [95.15115196646254, 27.35325235670978],
+ [95.16948386310936, 27.33868713683705],
+ [95.19904267061516, 27.3603825755155],
+ [95.22242943677304, 27.340150869180253],
+ [95.23331960696122, 27.361973207718215],
+ [95.2566254385053, 27.346656708833052],
+ [95.24022247001353, 27.34474923353325],
+ [95.2398244525623, 27.33404919563651],
+ [95.28646189190921, 27.30309955536698],
+ [95.32634172488692, 27.32321411811097],
+ [95.3404269016051, 27.282863353195644],
+ [95.36374105065036, 27.323443934688992],
+ [95.42100838141673, 27.291685066450704],
+ [95.43750438842247, 27.30245268126395],
+ [95.44593583194876, 27.2943722337571],
+ [95.48072957985758, 27.320795869880783],
+ [95.46750521645536, 27.316802900150897],
+ [95.44834116903836, 27.335314964632094],
+ [95.46571821942022, 27.342623645404316],
+ [95.47389611166096, 27.36721476088772],
+ [95.45405945247158, 27.37486682965263],
+ [95.43934459626513, 27.364211903918026],
+ [95.39009820678801, 27.391002283792993],
+ [95.36270005505135, 27.382555767768494],
+ [95.34842289937383, 27.393821043212476],
+ [95.30935325784917, 27.38910658286093],
+ [95.29537325408783, 27.415107801364105],
+ [95.25359586122647, 27.403229147830896],
+ [95.2437164825825, 27.41604087877685],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Tengakhat',
+ district_3: 'DIBRUGARH',
+ object_id: 161,
+ district_1: 'Dibrugarh',
+ revenue_cr: 'Tengakhat',
+ area: '355331353.1',
+ are_new: 355,
+ ID_NAM: 'DIBRUGARHTengakhat',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.02454281743064, 27.350096574266306],
+ [95.00053474318456, 27.35650425424152],
+ [95.0037961262309, 27.37971244528741],
+ [94.93909432649507, 27.329268296084116],
+ [94.92757417767963, 27.34592330535804],
+ [94.91175332108524, 27.34400959508198],
+ [94.91168904123677, 27.32910985074865],
+ [94.93820816631506, 27.316281899458463],
+ [94.91602442218901, 27.282217777534537],
+ [94.87754860928797, 27.279659324048513],
+ [94.85238942844694, 27.300654202224358],
+ [94.83803414988239, 27.274589869749775],
+ [94.81880143255016, 27.280404508547438],
+ [94.8238192555389, 27.291648279940773],
+ [94.80505083335953, 27.29109123026245],
+ [94.80733702779133, 27.261477090387626],
+ [94.78528893106977, 27.247478503259767],
+ [94.77319105862713, 27.21719148365863],
+ [94.77862766542157, 27.17111527859468],
+ [94.75349563526169, 27.14045547487649],
+ [94.81757013963798, 27.114568360998835],
+ [94.80840039593248, 27.096713743783603],
+ [94.83683442287101, 27.09187467428834],
+ [94.88947481457816, 27.16020071772757],
+ [94.96785022878308, 27.226941715417777],
+ [95.06716753540398, 27.30511457328625],
+ [95.03947361425834, 27.33596703759763],
+ [95.01848532475621, 27.334040164517866],
+ [95.02454281743064, 27.350096574266306],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Moran',
+ district_3: 'DIBRUGARH',
+ object_id: 162,
+ district_1: 'Dibrugarh',
+ revenue_cr: 'Moran',
+ area: '394752534',
+ are_new: 395,
+ ID_NAM: 'DIBRUGARHMoran',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.11863085111965, 27.31483633477923],
+ [95.10990083184741, 27.306883392845812],
+ [95.08647534740244, 27.321580325897816],
+ [95.08143024796837, 27.292250476289666],
+ [95.06716753540398, 27.30511457328625],
+ [94.96785022878308, 27.226941715417777],
+ [94.98443906858856, 27.168470251270005],
+ [94.97745325779786, 27.14850310868622],
+ [95.04887642406769, 27.155333970037667],
+ [95.0613813114875, 27.136726607131802],
+ [95.10799091743364, 27.13572201738539],
+ [95.11211940379954, 27.136348940907048],
+ [95.11270849291171, 27.136306953132024],
+ [95.11325821335657, 27.1359866737153],
+ [95.11333390360578, 27.135630166093726],
+ [95.11298651340732, 27.1286268926671],
+ [95.11420705977375, 27.127322891049015],
+ [95.11585607378461, 27.127323069336743],
+ [95.11602249208087, 27.127932261646183],
+ [95.11439330837993, 27.1312397022609],
+ [95.11572957122966, 27.135612308265607],
+ [95.11667769719797, 27.13618989060118],
+ [95.11707608655173, 27.13618995215753],
+ [95.11779731963887, 27.135648477999172],
+ [95.1189119725996, 27.132358994967838],
+ [95.11908353015761, 27.132002577310175],
+ [95.12016278230962, 27.13077971990272],
+ [95.12530679344296, 27.131203894059862],
+ [95.1254783447128, 27.131763500820686],
+ [95.12553376717256, 27.132341052673862],
+ [95.12596256539703, 27.134813845865313],
+ [95.12683005589048, 27.136546540335285],
+ [95.12798005037114, 27.137764854708145],
+ [95.12875675173207, 27.138342448305824],
+ [95.12998744007805, 27.138852311778354],
+ [95.13051703376898, 27.138919919006934],
+ [95.13123820936389, 27.138545416287798],
+ [95.13138950631901, 27.138175410644376],
+ [95.13142475171915, 27.137665467339737],
+ [95.13175224782735, 27.13371259016207],
+ [95.13239784995405, 27.133762251238114],
+ [95.13292769607156, 27.13718707505748],
+ [95.13457698856016, 27.138509050835083],
+ [95.13686681398234, 27.13837352726484],
+ [95.14181927195774, 27.136829787824063],
+ [95.1468877859797, 27.136183783731315],
+ [95.14800710479001, 27.13492911828724],
+ [95.14844999758128, 27.13075960519004],
+ [95.14967500498142, 27.128895807061305],
+ [95.150073288334, 27.12818273266966],
+ [95.15229625035292, 27.124297125121647],
+ [95.15280553672852, 27.12411204131169],
+ [95.15347113535344, 27.12417955431544],
+ [95.1540764273784, 27.12454943278027],
+ [95.15420774490327, 27.125298525928233],
+ [95.15123822179781, 27.128453271892987],
+ [95.15070401435959, 27.12962206832826],
+ [95.15066920284569, 27.131557919862047],
+ [95.15136056605127, 27.13352521631492],
+ [95.1542763716994, 27.1361507847239],
+ [95.15666116072516, 27.133826403923717],
+ [95.15765839040355, 27.12938594563111],
+ [95.16294310915144, 27.12802631226693],
+ [95.16398218415237, 27.128549543052557],
+ [95.16388658993142, 27.12936623200764],
+ [95.16064989169075, 27.13216484581109],
+ [95.15959150740281, 27.134317490609256],
+ [95.16040361316574, 27.134673737800867],
+ [95.16239500567409, 27.132538871842065],
+ [95.16302014597525, 27.132028826078116],
+ [95.16375656957383, 27.132114319007393],
+ [95.16402389472763, 27.132434655886215],
+ [95.16428235620457, 27.135809805069233],
+ [95.16515014224376, 27.13645487518912],
+ [95.16631021222861, 27.136675588342147],
+ [95.16782326891618, 27.136675159847865],
+ [95.1682216492868, 27.136675000761347],
+ [95.16948761177902, 27.136891275055003],
+ [95.17018908013328, 27.137910784278247],
+ [95.16964027237672, 27.140045366188467],
+ [95.16895059171566, 27.14328542826183],
+ [95.16923836701693, 27.143795215627687],
+ [95.1703686686299, 27.144927530671367],
+ [95.17097401006222, 27.145265731885676],
+ [95.17182665679394, 27.145757307885727],
+ [95.17309303161288, 27.146672898862075],
+ [95.17438396098183, 27.145977515058043],
+ [95.1721572961073, 27.14075747279197],
+ [95.17206121410112, 27.139994911695293],
+ [95.17232287986864, 27.13872234136116],
+ [95.17243884788027, 27.13855083792893],
+ [95.17279675375745, 27.13818067082082],
+ [95.173724727819, 27.13816227379231],
+ [95.17410312606442, 27.13836517734861],
+ [95.17653017723109, 27.140873205934334],
+ [95.17827555981069, 27.141278655898336],
+ [95.17923900834278, 27.14156710984465],
+ [95.18001984464898, 27.14240744395632],
+ [95.17982978089779, 27.14282126911461],
+ [95.17948700085338, 27.143195995723147],
+ [95.17708158201711, 27.144130978973525],
+ [95.17675887213275, 27.144352158192817],
+ [95.17660766680581, 27.144586879953785],
+ [95.1765523719068, 27.144875642711867],
+ [95.17657258130573, 27.14507871393899],
+ [95.17691081767147, 27.145620120831445],
+ [95.17826902636362, 27.14855717477422],
+ [95.17883971258887, 27.149897114607977],
+ [95.17917779085111, 27.150266967938634],
+ [95.18017178839108, 27.150844196375445],
+ [95.18072160765061, 27.150911625293322],
+ [95.1844694212368, 27.151045410310335],
+ [95.18469643539055, 27.151076958938102],
+ [95.18627059099218, 27.151757637057127],
+ [95.18634657858374, 27.152195275262546],
+ [95.18574151203589, 27.152741542675347],
+ [95.18477320002485, 27.15302624223469],
+ [95.1827864625863, 27.154286075035824],
+ [95.18217155499454, 27.155233898909827],
+ [95.1826741821589, 27.161117835196865],
+ [95.18267432499105, 27.161573531784743],
+ [95.18269468081542, 27.161812728329725],
+ [95.1835276670188, 27.163012638833052],
+ [95.18426431789113, 27.163165785336417],
+ [95.18502578202822, 27.162795372885558],
+ [95.18556203223542, 27.162386298098987],
+ [95.18787531087301, 27.16074034891813],
+ [95.18890326113747, 27.159689202875523],
+ [95.18921091166439, 27.15953555366146],
+ [95.18987172137055, 27.159485629890128],
+ [95.19347241876093, 27.160429393360833],
+ [95.19376159094249, 27.160363726162938],
+ [95.19425566884031, 27.159975340983635],
+ [95.19431081282232, 27.159415840317603],
+ [95.19397245698069, 27.158888067901845],
+ [95.18957307196276, 27.157703425673077],
+ [95.18924999915903, 27.157297475810836],
+ [95.19331461620654, 27.155580766849315],
+ [95.19452492806694, 27.155106375812334],
+ [95.19490323917582, 27.15512427528612],
+ [95.19511520924351, 27.155209864049446],
+ [95.19539778599425, 27.15536311876712],
+ [95.19632678144023, 27.156630679894004],
+ [95.19784085771566, 27.157834720796934],
+ [95.1984229435619, 27.16068170498263],
+ [95.19808020394164, 27.161173671921958],
+ [95.1978810321718, 27.161478304121236],
+ [95.19777788761087, 27.161683722141188],
+ [95.19767774701624, 27.16276680235003],
+ [95.19786455167959, 27.163109582756007],
+ [95.19809178592058, 27.163312563292912],
+ [95.19884862912389, 27.163564814851405],
+ [95.20034676299794, 27.163478290189385],
+ [95.20304715623418, 27.16292146215547],
+ [95.20540613576352, 27.16286632324359],
+ [95.20876543517585, 27.16235890634652],
+ [95.20937604971886, 27.162575181281],
+ [95.20961831007962, 27.162782607379032],
+ [95.209941416121, 27.16312076013435],
+ [95.21378490836976, 27.168578369683903],
+ [95.21386184997219, 27.170207239722302],
+ [95.21382146980183, 27.17022539011873],
+ [95.21342308044807, 27.170410622933307],
+ [95.21316073824912, 27.170325041025226],
+ [95.21042989931128, 27.168481196343098],
+ [95.21012721826449, 27.16848142011969],
+ [95.20993568307289, 27.168630416063845],
+ [95.20984398035372, 27.168767424608497],
+ [95.2097845172718, 27.168851573946945],
+ [95.20965371717655, 27.1693977087407],
+ [95.20971040536256, 27.170940907067767],
+ [95.21051984492571, 27.173706454679955],
+ [95.21171598406586, 27.174296813645096],
+ [95.21385329531573, 27.17210701022502],
+ [95.21423146628739, 27.171804400975407],
+ [95.21582519797569, 27.17127539963443],
+ [95.21935547822758, 27.169797518372548],
+ [95.21935528598812, 27.169630594073364],
+ [95.21927934960053, 27.169341880124254],
+ [95.21668061601004, 27.16851332426229],
+ [95.21609511117583, 27.168256462888202],
+ [95.21623527081803, 27.166952345053314],
+ [95.21666878070617, 27.166491744047566],
+ [95.21750076438973, 27.165967814157455],
+ [95.22051174294891, 27.165185097628672],
+ [95.22153644670193, 27.165811611279377],
+ [95.2217483449044, 27.16591076261687],
+ [95.22269203678847, 27.16621687882848],
+ [95.22407471828392, 27.16665815594791],
+ [95.22519029201779, 27.167437968211953],
+ [95.2256045033987, 27.168064903988093],
+ [95.22598399309719, 27.169269436187065],
+ [95.22694587317083, 27.172865123705737],
+ [95.22724882640712, 27.173085955129668],
+ [95.22831364083589, 27.173441667134366],
+ [95.229998592848, 27.1733366478068],
+ [95.23638680478585, 27.169464562225425],
+ [95.23892566296772, 27.17068538831815],
+ [95.23291764770252, 27.17630352264997],
+ [95.23238885800376, 27.177305672904506],
+ [95.23240173086181, 27.180121376927858],
+ [95.2324573266964, 27.180256670844482],
+ [95.23350247161373, 27.18101849198454],
+ [95.23469304928395, 27.180864087396813],
+ [95.23636191516428, 27.17974375272977],
+ [95.23685115563433, 27.179576356640272],
+ [95.23812293112476, 27.179927349131603],
+ [95.23842608738033, 27.180337639025577],
+ [95.24124385718653, 27.1826095508112],
+ [95.24164301639651, 27.183132713762607],
+ [95.241759571008, 27.18360641596062],
+ [95.24175975695924, 27.18382750980664],
+ [95.24164413030748, 27.184220139868223],
+ [95.23970395793997, 27.1864779720319],
+ [95.24294096160783, 27.188997638744375],
+ [95.24352626342275, 27.188965560670482],
+ [95.24420755471739, 27.18906420001911],
+ [95.24435892802929, 27.18913176486621],
+ [95.24490975430025, 27.18989392812156],
+ [95.24489087800119, 27.1910309878542],
+ [95.24609796490972, 27.19206328039473],
+ [95.24636528916524, 27.191743334260384],
+ [95.25003202800038, 27.191061066135074],
+ [95.2518127601847, 27.191577050057525],
+ [95.25510145560894, 27.19287498090416],
+ [95.25601149570413, 27.191255740965843],
+ [95.25818346575429, 27.184186546944687],
+ [95.25863159572367, 27.18504887797993],
+ [95.25859949622361, 27.186858258313745],
+ [95.25859473155934, 27.191614416202444],
+ [95.25983581880307, 27.19180489113824],
+ [95.26032091264975, 27.191209653187002],
+ [95.2664511410144, 27.186702139009782],
+ [95.26672322005271, 27.187108379879696],
+ [95.2650861293806, 27.18947619265049],
+ [95.26607775985983, 27.191990395759102],
+ [95.22364534603595, 27.2571043793476],
+ [95.1391597197276, 27.27994396292945],
+ [95.15303330456878, 27.296113812942988],
+ [95.13055328707887, 27.320048167068354],
+ [95.11863085111965, 27.31483633477923],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Tingkhong',
+ district_3: 'DIBRUGARH',
+ object_id: 163,
+ district_1: 'Dibrugarh',
+ revenue_cr: 'Tingkhong',
+ area: '391326093.4',
+ are_new: 391,
+ ID_NAM: 'DIBRUGARHTingkhong',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.44593583194876, 27.2943722337571],
+ [95.43750438842247, 27.30245268126395],
+ [95.42100838141673, 27.291685066450704],
+ [95.36374105065036, 27.323443934688992],
+ [95.3404269016051, 27.282863353195644],
+ [95.32634172488692, 27.32321411811097],
+ [95.28646189190921, 27.30309955536698],
+ [95.2398244525623, 27.33404919563651],
+ [95.24022247001353, 27.34474923353325],
+ [95.2566254385053, 27.346656708833052],
+ [95.23331960696122, 27.361973207718215],
+ [95.22242943677304, 27.340150869180253],
+ [95.19904267061516, 27.3603825755155],
+ [95.16948386310936, 27.33868713683705],
+ [95.15115196646254, 27.35325235670978],
+ [95.13980947835913, 27.331214916464244],
+ [95.1154571598147, 27.33076170811973],
+ [95.11863085111965, 27.31483633477923],
+ [95.13055328707887, 27.320048167068354],
+ [95.15303330456878, 27.296113812942988],
+ [95.1391597197276, 27.27994396292945],
+ [95.22364534603595, 27.2571043793476],
+ [95.26607775985983, 27.191990395759102],
+ [95.2693419672094, 27.192719339051546],
+ [95.27048926135433, 27.19074829172945],
+ [95.27198955477832, 27.188921838748282],
+ [95.2728934000913, 27.18824559026574],
+ [95.27407384386684, 27.18857136277883],
+ [95.27561184137991, 27.189840430197737],
+ [95.27869097601805, 27.18854750369715],
+ [95.27905404541148, 27.188791416800623],
+ [95.27974911686256, 27.190357715019985],
+ [95.28038719559876, 27.19383271018391],
+ [95.28149700304687, 27.19423057215195],
+ [95.28618442208088, 27.193033808257205],
+ [95.28596817333747, 27.193953673035235],
+ [95.2827613009609, 27.197141887647508],
+ [95.28388172739395, 27.197429640382225],
+ [95.29009482085198, 27.195553565768886],
+ [95.29356708790287, 27.195018614123253],
+ [95.29732619870204, 27.195589318183444],
+ [95.29784099893683, 27.19542719216563],
+ [95.29968341304188, 27.194728717803788],
+ [95.30315503779731, 27.19510508237141],
+ [95.3036398908955, 27.194405906852587],
+ [95.30246532479687, 27.192379219270205],
+ [95.30231514983757, 27.190515448870208],
+ [95.30487846105974, 27.190570908123018],
+ [95.30708380801428, 27.19038243668332],
+ [95.30951675931571, 27.189038941897813],
+ [95.3125109968713, 27.185335571970548],
+ [95.3136572750216, 27.183770230863587],
+ [95.31399037392222, 27.183580848153227],
+ [95.31468123407124, 27.184285049080593],
+ [95.31633505137393, 27.18676307619346],
+ [95.3171776693138, 27.186871726645926],
+ [95.3192914438049, 27.187766020263833],
+ [95.3201694167394, 27.187982968320714],
+ [95.32336884926879, 27.187298315149665],
+ [95.32460476401312, 27.187984659136806],
+ [95.32617414956057, 27.187876875153815],
+ [95.3283693293827, 27.18723232575274],
+ [95.32948456984164, 27.187124402004848],
+ [95.3329611532974, 27.187233747294368],
+ [95.33492446087673, 27.186124204981525],
+ [95.33573701130574, 27.185370876978965],
+ [95.33856828099405, 27.183706555950437],
+ [95.34237293907306, 27.183193075149152],
+ [95.34406363491311, 27.18195252730414],
+ [95.34457360580495, 27.18036870709929],
+ [95.35431350123814, 27.169197661929946],
+ [95.35884444183446, 27.165768757829856],
+ [95.35934917375158, 27.163995459850472],
+ [95.3590520164455, 27.159126430966356],
+ [95.35902235497312, 27.154532758263926],
+ [95.36149682461034, 27.150336321196917],
+ [95.36312396733899, 27.148468469862074],
+ [95.36481393644198, 27.146122038219133],
+ [95.36608525468993, 27.142146642301213],
+ [95.36695806141324, 27.13854123134347],
+ [95.36720026068858, 27.137219109651525],
+ [95.36586897540383, 27.131948488024005],
+ [95.36445190999257, 27.12989526713115],
+ [95.3617992792817, 27.12830208132978],
+ [95.3634587990898, 27.125490944075352],
+ [95.36373126889524, 27.123248341065562],
+ [95.3649066551557, 27.117941749026407],
+ [95.36499256194465, 27.115644823938176],
+ [95.36752901264154, 27.115184750258013],
+ [95.3716892526561, 27.113876226157664],
+ [95.3720221503341, 27.1125766878747],
+ [95.3709682666057, 27.11060466105271],
+ [95.36966726263084, 27.10987817716134],
+ [95.3745782786273, 27.092771395753307],
+ [95.42055258791967, 27.12588077309633],
+ [95.45317956253226, 27.1295303255516],
+ [95.46650750797495, 27.181735717751636],
+ [95.45580165232013, 27.203677318963994],
+ [95.48417127993426, 27.241345524582425],
+ [95.46728826343279, 27.263602284680324],
+ [95.45025581398042, 27.231741721981187],
+ [95.43986490407096, 27.254976634776263],
+ [95.45453592518649, 27.26546962721896],
+ [95.44593583194876, 27.2943722337571],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Naharkatiya',
+ district_3: 'DIBRUGARH',
+ object_id: 164,
+ district_1: 'Dibrugarh',
+ revenue_cr: 'Naharkatia',
+ area: '464307367.8',
+ are_new: 464,
+ ID_NAM: 'DIBRUGARHNaharkatiya',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.77319105862713, 27.21719148365863],
+ [94.76925861789388, 27.243959385997666],
+ [94.74042789312925, 27.248333965082825],
+ [94.74712959913492, 27.272892016522043],
+ [94.72190174029382, 27.26821901355293],
+ [94.71959947859484, 27.245389603034123],
+ [94.6931044777735, 27.271771296251412],
+ [94.67834731630704, 27.2432145026961],
+ [94.64195504240128, 27.24661073816865],
+ [94.59308581957936, 27.145569370691444],
+ [94.58245975408472, 27.13661706288106],
+ [94.58122396600284, 27.134857538612906],
+ [94.57940827228596, 27.128015981237258],
+ [94.57882983719304, 27.126791499621163],
+ [94.55560992860761, 27.09904241117312],
+ [94.55103329700096, 27.09265518498088],
+ [94.54951064989942, 27.086269422035553],
+ [94.5443659003509, 27.07687734696943],
+ [94.54291313589026, 27.07531282484576],
+ [94.5389758640174, 27.07216602150797],
+ [94.58862506974602, 27.077814526526137],
+ [94.60764912370917, 27.0660980977458],
+ [94.62710197949004, 27.07656162462853],
+ [94.66751143939632, 27.03988171363634],
+ [94.68036333073904, 27.05330334166398],
+ [94.69698847595674, 27.035807116189464],
+ [94.71081105804936, 27.045184839637198],
+ [94.71300531620003, 27.03244910232207],
+ [94.73176207375542, 27.035511650903512],
+ [94.72890971881077, 27.016130569595862],
+ [94.74311646633296, 27.012200119353032],
+ [94.73416093129687, 27.00635155674968],
+ [94.74984375096807, 26.988897281388567],
+ [94.78200691282308, 26.989349308874964],
+ [94.78241649428698, 26.98961228484782],
+ [94.78377623730162, 26.990265824982664],
+ [94.78492614105242, 26.992025707056964],
+ [94.7850161531422, 26.992438488302177],
+ [94.79336243458295, 26.994816780931274],
+ [94.7938345980794, 26.991414834781445],
+ [94.79534054370318, 26.98851316538325],
+ [94.80098288086735, 26.991981519170388],
+ [94.80367814741827, 26.99177292982639],
+ [94.8095066909678, 26.991590107055032],
+ [94.8097442522413, 26.992331009874942],
+ [94.8132749358368, 26.998568545345094],
+ [94.8142064744134, 27.003861457699955],
+ [94.81572951767195, 27.004591360202063],
+ [94.81845643276864, 27.002907752087616],
+ [94.82047073231674, 27.003286517208164],
+ [94.82088480176381, 27.004400920304768],
+ [94.81985728179237, 27.00878160780466],
+ [94.82086625424813, 27.010819291148692],
+ [94.82151624464498, 27.011705924351055],
+ [94.82349124918765, 27.01387053530662],
+ [94.82728577606687, 27.01593314269816],
+ [94.82986333097624, 27.016362945541445],
+ [94.82494318360493, 27.05713099129173],
+ [94.83683442287101, 27.09187467428834],
+ [94.80840039593248, 27.096713743783603],
+ [94.81757013963798, 27.114568360998835],
+ [94.75349563526169, 27.14045547487649],
+ [94.77862766542157, 27.17111527859468],
+ [94.77319105862713, 27.21719148365863],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dimow',
+ district_3: 'SIVSAGAR',
+ object_id: 165,
+ district_1: 'SIVSAGAR',
+ revenue_cr: 'Demow',
+ area: '478427786.7',
+ are_new: 478,
+ ID_NAM: 'SIVSAGARDimow',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.78200691282308, 26.989349308874964],
+ [94.74984375096807, 26.988897281388567],
+ [94.73416093129687, 27.00635155674968],
+ [94.74311646633296, 27.012200119353032],
+ [94.72890971881077, 27.016130569595862],
+ [94.73176207375542, 27.035511650903512],
+ [94.71300531620003, 27.03244910232207],
+ [94.71081105804936, 27.045184839637198],
+ [94.69698847595674, 27.035807116189464],
+ [94.68036333073904, 27.05330334166398],
+ [94.66751143939632, 27.03988171363634],
+ [94.62710197949004, 27.07656162462853],
+ [94.60764912370917, 27.0660980977458],
+ [94.58862506974602, 27.077814526526137],
+ [94.5389758640174, 27.07216602150797],
+ [94.5378408687071, 27.07161630583156],
+ [94.53435248677835, 27.070571658082013],
+ [94.5263626254013, 27.063334398119345],
+ [94.5175915126964, 27.05312781203632],
+ [94.51279958276393, 27.048107373232956],
+ [94.50897242727693, 27.044818101835066],
+ [94.49981456918096, 27.038704601080557],
+ [94.49981303036687, 27.038703663329265],
+ [94.4985147887115, 27.038033237149378],
+ [94.49185998464512, 27.036047980209627],
+ [94.48826048560733, 27.035388924344876],
+ [94.48593275217851, 27.03488468136438],
+ [94.47990050216356, 27.033475842086567],
+ [94.47931788361637, 27.033273795897028],
+ [94.47301365607274, 27.02752039719673],
+ [94.47195939595026, 27.02610992590818],
+ [94.47173636312984, 27.025686814997176],
+ [94.46905794987195, 27.0225948776147],
+ [94.4674394282751, 27.020454200017234],
+ [94.46595830579759, 27.017677119245043],
+ [94.46487818856795, 27.014676182888582],
+ [94.46162992182308, 27.003389023606104],
+ [94.46055780229442, 27.000484314247263],
+ [94.45824770728618, 26.993725265359217],
+ [94.45805866941107, 26.993572160889812],
+ [94.45260612291024, 26.990533291062878],
+ [94.44952385135514, 26.989357180800663],
+ [94.44324975420447, 26.98730937369832],
+ [94.44258097195015, 26.98673352567519],
+ [94.43709184784758, 26.980378068679514],
+ [94.42792167744234, 26.97335281296105],
+ [94.42411050567918, 26.97202040869953],
+ [94.41889361422682, 26.969623677921188],
+ [94.41292900735279, 26.965868985201954],
+ [94.40884262322761, 26.963909078953034],
+ [94.39532404001028, 26.95480960006475],
+ [94.39663572046229, 26.95272537378689],
+ [94.40575638740715, 26.93293444428739],
+ [94.41791053750576, 26.943189915473827],
+ [94.47382095135735, 26.93522510096652],
+ [94.49256506782007, 26.846447057423855],
+ [94.53170340710774, 26.948951637652353],
+ [94.67218440992731, 26.95157967253928],
+ [94.69818930070943, 26.96116649084301],
+ [94.70464922246144, 26.940677943417512],
+ [94.73373862789194, 26.932608435351316],
+ [94.74193871211344, 26.94414073972671],
+ [94.7457852379729, 26.947402354277507],
+ [94.74781302213175, 26.948974393869946],
+ [94.75224767500771, 26.952468490175036],
+ [94.76879511685169, 26.97096726706606],
+ [94.77184416870756, 26.973379391890244],
+ [94.77759405307587, 26.979944264041116],
+ [94.78014146591416, 26.98488278435102],
+ [94.78200691282308, 26.989349308874964],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sibsagar',
+ district_3: 'SIVSAGAR',
+ object_id: 166,
+ district_1: 'SIVSAGAR',
+ revenue_cr: 'Sivsagar',
+ area: '388026773.7',
+ are_new: 388,
+ ID_NAM: 'SIVSAGARSibsagar',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.67218440992731, 26.95157967253928],
+ [94.53170340710774, 26.948951637652353],
+ [94.49256506782007, 26.846447057423855],
+ [94.48627429164952, 26.830037569014852],
+ [94.5256080486475, 26.800669881423417],
+ [94.51533474707334, 26.79495379926858],
+ [94.51788169009274, 26.76481096900549],
+ [94.54959812604514, 26.74874802331527],
+ [94.57266531115084, 26.75223243415965],
+ [94.5903487328587, 26.725069616560354],
+ [94.59205773366926, 26.72497394160236],
+ [94.60914758097672, 26.737292060426547],
+ [94.6192153318442, 26.712057628780997],
+ [94.68232277107104, 26.728452801072066],
+ [94.66650382878653, 26.75391044366515],
+ [94.62690171447046, 26.772916094691897],
+ [94.65295426896327, 26.790140418130985],
+ [94.6342129777021, 26.796891225186236],
+ [94.62536311149287, 26.84419646548017],
+ [94.59922335124728, 26.859669629650224],
+ [94.61944133629159, 26.876601635376897],
+ [94.67864212990857, 26.88484868776865],
+ [94.64386947534092, 26.920576696096727],
+ [94.67218440992731, 26.95157967253928],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Amguri',
+ district_3: 'SIVSAGAR',
+ object_id: 167,
+ district_1: 'SIVSAGAR',
+ revenue_cr: 'Amguri',
+ area: '314868728.7',
+ are_new: 315,
+ ID_NAM: 'SIVSAGARAmguri',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.68232277107104, 26.728452801072066],
+ [94.74009279278219, 26.77608075468502],
+ [94.75823650585171, 26.766103246566413],
+ [94.7701253196665, 26.789136211692057],
+ [94.80212771901826, 26.800794283533882],
+ [94.79515862318004, 26.814518194356996],
+ [94.81436804809533, 26.81964046458717],
+ [94.81740239093676, 26.847611104932508],
+ [94.85003183501809, 26.874682783644886],
+ [94.86620271207808, 26.90919257749362],
+ [94.92373297972809, 26.947077411374217],
+ [94.92530312884351, 26.949816980070043],
+ [94.92775924679782, 26.950764925756143],
+ [94.92937112175989, 26.953237858874672],
+ [94.93475496959937, 26.956631813136507],
+ [94.93966773012407, 26.95852716470414],
+ [94.94182672400994, 26.9594375230341],
+ [94.94104725404128, 26.96089088729514],
+ [94.93878272607584, 26.97016207095954],
+ [94.93693665582761, 26.972505038780064],
+ [94.93720021434547, 26.972873877979616],
+ [94.93847184969871, 26.97432850029075],
+ [94.9401583800508, 26.978041821315507],
+ [94.93848963364641, 26.98187810596936],
+ [94.93461355141747, 26.983166933876777],
+ [94.92660043984424, 26.980537654690732],
+ [94.90845437229035, 26.968658691040766],
+ [94.86987506807868, 26.946742286372892],
+ [94.85596748919052, 26.936335274242325],
+ [94.84804868006088, 26.92922184608042],
+ [94.83984658630807, 26.92758169799139],
+ [94.82688963429796, 26.92551414993018],
+ [94.81734654537051, 26.92418645898063],
+ [94.80175998916513, 26.922705852751225],
+ [94.79416040625318, 26.922833081855075],
+ [94.77239896732873, 26.923116643803755],
+ [94.76146960633965, 26.92276259794085],
+ [94.75546061011416, 26.92276764795458],
+ [94.75320547493332, 26.923021992945195],
+ [94.73777947911027, 26.930437251802015],
+ [94.73650350399588, 26.93121540931456],
+ [94.73375548477823, 26.932602689809983],
+ [94.73373862789194, 26.932608435351316],
+ [94.70464922246144, 26.940677943417512],
+ [94.69818930070943, 26.96116649084301],
+ [94.67218440992731, 26.95157967253928],
+ [94.64386947534092, 26.920576696096727],
+ [94.67864212990857, 26.88484868776865],
+ [94.61944133629159, 26.876601635376897],
+ [94.59922335124728, 26.859669629650224],
+ [94.62536311149287, 26.84419646548017],
+ [94.6342129777021, 26.796891225186236],
+ [94.65295426896327, 26.790140418130985],
+ [94.62690171447046, 26.772916094691897],
+ [94.66650382878653, 26.75391044366515],
+ [94.68232277107104, 26.728452801072066],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Nazira',
+ district_3: 'SIVSAGAR',
+ object_id: 168,
+ district_1: 'SIVSAGAR',
+ revenue_cr: 'Nazira',
+ area: '386224425.1',
+ are_new: 386,
+ ID_NAM: 'SIVSAGARNazira',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.49256506782007, 26.846447057423855],
+ [94.47382095135735, 26.93522510096652],
+ [94.41791053750576, 26.943189915473827],
+ [94.40575638740715, 26.93293444428739],
+ [94.39663572046229, 26.95272537378689],
+ [94.39663568991955, 26.95272533615208],
+ [94.39082055642059, 26.946882617991424],
+ [94.38943065516524, 26.945336965801285],
+ [94.38437868002597, 26.938884103190457],
+ [94.38197046473422, 26.93469656865357],
+ [94.37860954206619, 26.92519692264037],
+ [94.37596522077168, 26.92070707620835],
+ [94.37137680596344, 26.91607697369824],
+ [94.36426968308349, 26.911552940757065],
+ [94.36137504713341, 26.90953235921829],
+ [94.35835101335816, 26.90657221517146],
+ [94.35574792383686, 26.903933563289154],
+ [94.33609277643717, 26.885784422387335],
+ [94.33536581209854, 26.885128231653965],
+ [94.34056558435654, 26.86835832377753],
+ [94.3417309031976, 26.864054342623216],
+ [94.34304534237585, 26.86118312506629],
+ [94.34627694627052, 26.852770301905466],
+ [94.34930720626897, 26.840344463209213],
+ [94.34966454710585, 26.839286872851762],
+ [94.35076252014838, 26.835881048891085],
+ [94.35184484903024, 26.833217209945655],
+ [94.35304482218002, 26.83180924861256],
+ [94.35599493628547, 26.8302213333857],
+ [94.35610732900226, 26.82988166838724],
+ [94.35652020638494, 26.829146361616292],
+ [94.3566500901986, 26.82896015777934],
+ [94.35660546908181, 26.824779745163546],
+ [94.3569388608332, 26.822211425094377],
+ [94.35884455855502, 26.821881599012514],
+ [94.35940710065393, 26.82208180518209],
+ [94.36824442009359, 26.827624855233225],
+ [94.37157489167015, 26.829372543334443],
+ [94.37567170793068, 26.829131834705926],
+ [94.37789876986056, 26.827454913153645],
+ [94.37815749634052, 26.826694977242546],
+ [94.38010655574111, 26.82182773808369],
+ [94.38085652773077, 26.818562209710745],
+ [94.37938386019671, 26.817060053806276],
+ [94.36672501770687, 26.812866222927333],
+ [94.36250782540161, 26.81161918208066],
+ [94.35685139636557, 26.80988749016343],
+ [94.35366461301369, 26.808786819072225],
+ [94.34895904890928, 26.80702082490513],
+ [94.3418926969668, 26.804537321662036],
+ [94.33362142125902, 26.801363062837957],
+ [94.32857787321547, 26.799371141702565],
+ [94.31380688308353, 26.793799372009214],
+ [94.31003870289325, 26.792687692202936],
+ [94.30702444997485, 26.79165219560207],
+ [94.30437878839392, 26.790864772334384],
+ [94.30123329071417, 26.78967554367043],
+ [94.29794392424841, 26.788695585886057],
+ [94.29025118424487, 26.785827499706382],
+ [94.28945645908605, 26.78556657991569],
+ [94.28308587389073, 26.783439681978653],
+ [94.2810424437746, 26.782796200678597],
+ [94.2718070898157, 26.78029088222188],
+ [94.2694579243808, 26.779622198890138],
+ [94.26760180917107, 26.776357983104383],
+ [94.26729503899315, 26.7753853392439],
+ [94.26707648876597, 26.77422795884901],
+ [94.26745018882248, 26.76903373027268],
+ [94.26802384128482, 26.767921815935242],
+ [94.26978398228621, 26.76397559181394],
+ [94.27102356036025, 26.76121258964928],
+ [94.27209996036126, 26.745240944307916],
+ [94.27194785761735, 26.737228746355424],
+ [94.2742786381316, 26.73491153492762],
+ [94.27777801813438, 26.734547236850982],
+ [94.2780516027491, 26.732999899707654],
+ [94.27932978502417, 26.727554681286126],
+ [94.27902769057727, 26.724447794892352],
+ [94.27950534637337, 26.723822043070484],
+ [94.28097299322333, 26.721903520890752],
+ [94.28102183103206, 26.721802865333352],
+ [94.27979799323843, 26.71936237470705],
+ [94.2835010186212, 26.717277720863077],
+ [94.28533600186215, 26.714109924751405],
+ [94.28565956155275, 26.713005727917324],
+ [94.28803576537936, 26.71153475091922],
+ [94.29000552555736, 26.71175775418139],
+ [94.29193425518478, 26.711178412940832],
+ [94.29136428761174, 26.707469089706716],
+ [94.29225394403484, 26.705641414640354],
+ [94.29450697895452, 26.70440550119098],
+ [94.29341187513103, 26.702221958271366],
+ [94.29401519625222, 26.700939931697924],
+ [94.29622090792279, 26.70017391171733],
+ [94.29706617229948, 26.698394976661056],
+ [94.29665177586564, 26.696059536656808],
+ [94.29960391028216, 26.692143461844484],
+ [94.32957159497266, 26.655687845512947],
+ [94.37280460444572, 26.670753865332347],
+ [94.36307326456732, 26.707358220295284],
+ [94.37367561813171, 26.72614945673103],
+ [94.52412367426862, 26.743643922678483],
+ [94.5903487328587, 26.725069616560354],
+ [94.57266531115084, 26.75223243415965],
+ [94.54959812604514, 26.74874802331527],
+ [94.51788169009274, 26.76481096900549],
+ [94.51533474707334, 26.79495379926858],
+ [94.5256080486475, 26.800669881423417],
+ [94.48627429164952, 26.830037569014852],
+ [94.49256506782007, 26.846447057423855],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Teok',
+ district_3: 'JORHAT',
+ object_id: 169,
+ district_1: 'Jorhat',
+ revenue_cr: 'Teok',
+ area: '449551926.2',
+ are_new: 450,
+ ID_NAM: 'JORHATTeok',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.28461376445857, 26.561209277625895],
+ [94.29466474198304, 26.573582903461002],
+ [94.25885823971112, 26.615334872503002],
+ [94.28872882460423, 26.632393832182956],
+ [94.23817421678221, 26.62621721431525],
+ [94.2510285335762, 26.642722583997816],
+ [94.23809867655166, 26.676858491136713],
+ [94.23597733644924, 26.66913669665366],
+ [94.2348137630348, 26.669003956024298],
+ [94.2333135360861, 26.669509619145153],
+ [94.23229498489447, 26.669908281917593],
+ [94.22667617101433, 26.673119928178902],
+ [94.2260193058106, 26.673205226614478],
+ [94.22285389787088, 26.673467626749044],
+ [94.21900214920636, 26.673639732140124],
+ [94.21696368767205, 26.673622225731982],
+ [94.20541661275428, 26.67491429161138],
+ [94.20322112570831, 26.674886294031776],
+ [94.1983956149539, 26.67431916476911],
+ [94.1972850089035, 26.67415241769788],
+ [94.18779098505854, 26.67077325218605],
+ [94.18552918258166, 26.66891807807383],
+ [94.18289479216261, 26.66679948035426],
+ [94.17976543361527, 26.666386446040427],
+ [94.1777880170961, 26.665444393237365],
+ [94.17698068767554, 26.66532642496065],
+ [94.17087448565147, 26.666580716811634],
+ [94.16434149583255, 26.670700921729424],
+ [94.16391891394984, 26.67059902806252],
+ [94.16070521168218, 26.670010925158294],
+ [94.16027000936806, 26.670050355756292],
+ [94.15639513177987, 26.66957474412991],
+ [94.15433213905182, 26.668477330029425],
+ [94.15063908766368, 26.66751381028427],
+ [94.15043113576026, 26.66730317765595],
+ [94.14955339369276, 26.665292731757948],
+ [94.1493453591443, 26.664954760391534],
+ [94.1485786111167, 26.66456543910236],
+ [94.14822631611678, 26.664584578949178],
+ [94.14669633966085, 26.6645956412365],
+ [94.14337035966076, 26.664998045257324],
+ [94.14297298360663, 26.664868310224385],
+ [94.14239333668638, 26.664882505720584],
+ [94.14179066864037, 26.66595653362282],
+ [94.14163516307815, 26.666340160961514],
+ [94.1412816032503, 26.668245439078287],
+ [94.14118965079952, 26.669069387144372],
+ [94.14117439111779, 26.669792967304993],
+ [94.14114552016288, 26.670547441815252],
+ [94.14095343160903, 26.670730516174174],
+ [94.14033027568635, 26.67086332061857],
+ [94.1392060296167, 26.671689352924037],
+ [94.1359450014049, 26.672277455201723],
+ [94.13537237661525, 26.672482185053454],
+ [94.1349428336874, 26.672444607981262],
+ [94.13484871719507, 26.672363849985285],
+ [94.13440210717519, 26.672174875007737],
+ [94.13405155670355, 26.672588881330483],
+ [94.13356662455361, 26.672925398830365],
+ [94.13108936205417, 26.672691772608058],
+ [94.13038014573063, 26.672309917370818],
+ [94.12961481614285, 26.671933039366873],
+ [94.1293017353, 26.671923177064972],
+ [94.12789904472994, 26.672037222019597],
+ [94.12743150216728, 26.67191379077934],
+ [94.12467776427452, 26.672519470724893],
+ [94.12312570543229, 26.67322047022534],
+ [94.12071382501414, 26.674177023200976],
+ [94.11844687968227, 26.674445573865228],
+ [94.1154006853673, 26.675447043809143],
+ [94.11473131291987, 26.67580052274868],
+ [94.11452489533893, 26.675729987909516],
+ [94.11419332267602, 26.675301208001766],
+ [94.11386013933375, 26.67447742937202],
+ [94.11337124291846, 26.67378248283495],
+ [94.10946766236036, 26.672711992357094],
+ [94.1092149590844, 26.67260737203448],
+ [94.10882714379984, 26.672056225754908],
+ [94.10845618360494, 26.671274104721597],
+ [94.1094182657995, 26.669369187851682],
+ [94.10879073597968, 26.6668007479169],
+ [94.10862020070446, 26.666539559070145],
+ [94.10803441200264, 26.665866096055957],
+ [94.10689849322416, 26.665216781329317],
+ [94.10634634822637, 26.664707907336584],
+ [94.10626154367029, 26.66382352713137],
+ [94.10699689917197, 26.663425861831854],
+ [94.11157396017333, 26.66291404806159],
+ [94.11200193823592, 26.662684298890547],
+ [94.1122090466213, 26.66174805186506],
+ [94.11150741297709, 26.65978520878999],
+ [94.11059078823082, 26.658343689232392],
+ [94.11036257213121, 26.658031491238535],
+ [94.11018516204913, 26.656823774911775],
+ [94.11028291222677, 26.656178173237134],
+ [94.10978575400584, 26.655662311148983],
+ [94.10870743969494, 26.65498110310991],
+ [94.10790940604095, 26.654689973894527],
+ [94.10753634288997, 26.654502882030496],
+ [94.10698682366777, 26.654469595888184],
+ [94.10585126780866, 26.65439374664081],
+ [94.10518106531792, 26.65423125285615],
+ [94.10501599988446, 26.65408683506248],
+ [94.10403892031623, 26.65313234960889],
+ [94.10356507697013, 26.65282469279529],
+ [94.10298193829841, 26.65153930231255],
+ [94.10289455018759, 26.650884509144397],
+ [94.10263982390563, 26.650000482671544],
+ [94.10278581630894, 26.648706581067035],
+ [94.10291472904382, 26.6483381470077],
+ [94.10276636868139, 26.64777174729481],
+ [94.1024091221676, 26.64761916629646],
+ [94.10203072482048, 26.64745860427871],
+ [94.10018876705963, 26.646180340209412],
+ [94.0997505787455, 26.64589214968278],
+ [94.09812121717809, 26.64597968691057],
+ [94.09783251212053, 26.646028096715003],
+ [94.09743149878781, 26.646086546871697],
+ [94.09734313420826, 26.6460881422511],
+ [94.09683618524903, 26.645579501726292],
+ [94.09663783992923, 26.64532663067687],
+ [94.09630449938179, 26.644900325121128],
+ [94.06887520754583, 26.594285824906542],
+ [94.08249683650942, 26.584867799646062],
+ [94.07805885088372, 26.57439215762854],
+ [94.08834664048676, 26.576876325120804],
+ [94.10701796825866, 26.569682663904462],
+ [94.11640408287842, 26.54496224218906],
+ [94.09695755033886, 26.492282155765235],
+ [94.10355529162176, 26.462749469250248],
+ [94.12700786835738, 26.450572139304423],
+ [94.11454737028905, 26.423870915027507],
+ [94.12007767496087, 26.38445737340613],
+ [94.13327169686606, 26.351583888308802],
+ [94.16121715976595, 26.347724559608093],
+ [94.17748936589169, 26.382110559061626],
+ [94.17164264133915, 26.429883296508404],
+ [94.18318376491814, 26.455376884475054],
+ [94.28461376445857, 26.561209277625895],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Titabor',
+ district_3: 'JORHAT',
+ object_id: 170,
+ district_1: 'Jorhat',
+ revenue_cr: 'Titabor',
+ area: '419204313.3',
+ are_new: 419,
+ ID_NAM: 'JORHATTitabor',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.5903487328587, 26.725069616560354],
+ [94.52412367426862, 26.743643922678483],
+ [94.37367561813171, 26.72614945673103],
+ [94.36307326456732, 26.707358220295284],
+ [94.37280460444572, 26.670753865332347],
+ [94.32957159497266, 26.655687845512947],
+ [94.29960391028216, 26.692143461844484],
+ [94.3004803390127, 26.690694045192945],
+ [94.286373124824, 26.691581002007347],
+ [94.27959170411661, 26.691126003260095],
+ [94.27783046178067, 26.69142117362418],
+ [94.26439998981797, 26.698335575006926],
+ [94.25592797478016, 26.702286254833844],
+ [94.25542103210915, 26.703093718148473],
+ [94.25007950390271, 26.705237544267998],
+ [94.24619833990421, 26.707068904381085],
+ [94.23636860306114, 26.70886741335936],
+ [94.23417434041892, 26.709641743741724],
+ [94.23389838964171, 26.709757729825103],
+ [94.2337003937666, 26.705828892868414],
+ [94.23809867655166, 26.676858491136713],
+ [94.2510285335762, 26.642722583997816],
+ [94.23817421678221, 26.62621721431525],
+ [94.28872882460423, 26.632393832182956],
+ [94.25885823971112, 26.615334872503002],
+ [94.29466474198304, 26.573582903461002],
+ [94.28461376445857, 26.561209277625895],
+ [94.28965598658877, 26.4798131706019],
+ [94.31568822208813, 26.45820764942436],
+ [94.32543083402672, 26.482047685287],
+ [94.35275547931859, 26.4901569961519],
+ [94.347699921698, 26.504556073461398],
+ [94.37208147591335, 26.506142532861613],
+ [94.37604942794809, 26.52187896724533],
+ [94.40078399491725, 26.534250688209],
+ [94.41329164465658, 26.577286687143296],
+ [94.40335747327185, 26.611306627447732],
+ [94.45118466922884, 26.63638902556681],
+ [94.46540371828053, 26.63315886762524],
+ [94.4530547756991, 26.652647911445904],
+ [94.46019316713743, 26.661727973070857],
+ [94.49258343207941, 26.665987229894217],
+ [94.51748953594536, 26.68203006387576],
+ [94.52060882527668, 26.69931160501475],
+ [94.56226183470889, 26.705166357563762],
+ [94.56700534724415, 26.68362911062173],
+ [94.57723154385975, 26.700758713134043],
+ [94.59378765983611, 26.697292840082596],
+ [94.59327563180226, 26.71506841823643],
+ [94.60325569631819, 26.712606353255417],
+ [94.59205773366926, 26.72497394160236],
+ [94.5903487328587, 26.725069616560354],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Mariani',
+ district_3: 'JORHAT',
+ object_id: 171,
+ district_1: 'Jorhat',
+ revenue_cr: 'Mariani',
+ area: '436514584.8',
+ are_new: 437,
+ ID_NAM: 'JORHATMariani',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.75385634831369, 26.806976338474573],
+ [93.7124091123704, 26.816014832105473],
+ [93.6893787096823, 26.797502803898162],
+ [93.66992444803802, 26.800804651840256],
+ [93.6487205161553, 26.788061512697123],
+ [93.64909474801448, 26.76354995550054],
+ [93.67054101841138, 26.711986471215774],
+ [93.65094777930781, 26.706120422781805],
+ [93.56605494847776, 26.72214914921937],
+ [93.53770654715547, 26.75046103656405],
+ [93.47100836117662, 26.756473272114363],
+ [93.37211346306356, 26.74578054892608],
+ [93.33093646191728, 26.708747052118657],
+ [93.30395902716077, 26.700333453358997],
+ [93.3179579620184, 26.65567256102312],
+ [93.30936870336133, 26.639373218534537],
+ [93.28693855674273, 26.637402686932603],
+ [93.29768419967978, 26.576553817134894],
+ [93.40278075120577, 26.580105178278703],
+ [93.39743360134226, 26.57145047703242],
+ [93.40870987642269, 26.56914215455345],
+ [93.4647154110831, 26.58590086917127],
+ [93.46372861803171, 26.569316893314088],
+ [93.49163517310001, 26.587036517835926],
+ [93.46946158891983, 26.595352085499727],
+ [93.49558390927253, 26.606625967058022],
+ [93.52368743164497, 26.593602272484567],
+ [93.5684096951455, 26.610119773951293],
+ [93.58982788061338, 26.59987944754295],
+ [93.58975599922097, 26.57072870452798],
+ [93.61094686241293, 26.577579928794258],
+ [93.61671591593111, 26.56594252797459],
+ [93.6218916564586, 26.59025285263371],
+ [93.66588281259041, 26.604660735005048],
+ [93.71165709132354, 26.60575473193472],
+ [93.75166301273283, 26.58144725079751],
+ [93.76266267587606, 26.606779082298853],
+ [93.75856249542475, 26.62614998630543],
+ [93.81421935978739, 26.652790444335583],
+ [93.82748273792072, 26.673868064132748],
+ [93.81759212584412, 26.685153854421664],
+ [93.78126202164421, 26.68150244333506],
+ [93.78474712651881, 26.71048479596578],
+ [93.76322926758024, 26.77248153654883],
+ [93.73898333112504, 26.77417744291187],
+ [93.75385634831369, 26.806976338474573],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bokakhat',
+ district_3: 'GOLAGHAT',
+ object_id: 172,
+ district_1: 'Golaghat',
+ revenue_cr: 'Bokakhat',
+ area: '850138736.1',
+ are_new: 850,
+ ID_NAM: 'GOLAGHATBokakhat',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.9623143095803, 26.92680657974927],
+ [93.92617394483975, 26.93026112989718],
+ [93.9085134804773, 26.900532107579956],
+ [93.89171680734596, 26.892187695147435],
+ [93.89123918478752, 26.8647780048228],
+ [93.83517210654699, 26.850964919361694],
+ [93.82388372127821, 26.825194087520494],
+ [93.80017030342847, 26.821799177815933],
+ [93.76995155488743, 26.844776579888407],
+ [93.75385634831369, 26.806976338474573],
+ [93.73898333112504, 26.77417744291187],
+ [93.76322926758024, 26.77248153654883],
+ [93.78474712651881, 26.71048479596578],
+ [93.78126202164421, 26.68150244333506],
+ [93.81759212584412, 26.685153854421664],
+ [93.82748273792072, 26.673868064132748],
+ [93.81421935978739, 26.652790444335583],
+ [93.75856249542475, 26.62614998630543],
+ [93.76266267587606, 26.606779082298853],
+ [93.79979850690205, 26.604959716865718],
+ [93.87247036195953, 26.56078628553324],
+ [93.9183543465484, 26.56187334569902],
+ [93.91321666404622, 26.596302720026426],
+ [93.92754690297052, 26.597945097698695],
+ [93.93592287642633, 26.61779952170487],
+ [93.88772254275824, 26.645628827019888],
+ [93.90301655270984, 26.679568581151145],
+ [93.8739308168973, 26.67826536577301],
+ [93.84836588680535, 26.702683223650304],
+ [93.89425691328776, 26.747788307833513],
+ [93.88928583593145, 26.763795821932906],
+ [93.97980317057062, 26.809883514267394],
+ [93.98016099829438, 26.810646277630838],
+ [93.98242234712203, 26.813974883686903],
+ [93.98488477304625, 26.817145428713825],
+ [93.98640491923804, 26.818434863234696],
+ [93.98936375598488, 26.819862975936605],
+ [93.99341952911843, 26.82166470331866],
+ [93.99870254016896, 26.824428003817168],
+ [93.99946180612855, 26.825211269984663],
+ [94.00165002400723, 26.82757451137367],
+ [94.00287377107102, 26.828881259237058],
+ [94.0061049159266, 26.832358744652186],
+ [94.00709088612119, 26.83309609867116],
+ [94.00838322494683, 26.833959209963865],
+ [94.008388656161, 26.834293261287694],
+ [94.00755197698346, 26.837461008657325],
+ [94.00730565623762, 26.83859752392805],
+ [94.00482163122072, 26.846965464728356],
+ [94.0040963763761, 26.849844624181625],
+ [94.00334192358977, 26.852613393093883],
+ [94.00264431080475, 26.855462889764254],
+ [94.00156360697522, 26.85913421862796],
+ [93.99984536339868, 26.865784659890384],
+ [93.99955761594518, 26.866906347057085],
+ [93.99396794431118, 26.86932880607306],
+ [93.98698452483575, 26.86972957112982],
+ [93.98494260209267, 26.87067439530932],
+ [93.98169340020156, 26.87212996802178],
+ [93.97811114522395, 26.87258383637674],
+ [93.97371387394188, 26.873241350772027],
+ [93.97163311882572, 26.8761083158767],
+ [93.9710501652069, 26.876961647269223],
+ [93.97186429577249, 26.881541347096746],
+ [93.97078451990265, 26.881898562941366],
+ [93.96996285606511, 26.882395526051347],
+ [93.96854446114725, 26.88330359435291],
+ [93.96567784634577, 26.88546248926756],
+ [93.96262995421493, 26.88780191715776],
+ [93.95735870300979, 26.89161380706236],
+ [93.95691644981899, 26.89251659689745],
+ [93.95780308700441, 26.893599067199094],
+ [93.96359023079576, 26.89912352994622],
+ [93.966240489056, 26.90266415218521],
+ [93.96672529184853, 26.904504991137312],
+ [93.96753885018727, 26.90834468437198],
+ [93.96677264833535, 26.913065359353645],
+ [93.96417318890614, 26.916830557188916],
+ [93.9623143095803, 26.92680657974927],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Khumtai',
+ district_3: 'GOLAGHAT',
+ object_id: 173,
+ district_1: 'Golaghat',
+ revenue_cr: 'Khumtai',
+ area: '473079404.2',
+ are_new: 473,
+ ID_NAM: 'GOLAGHATKhumtai',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.97980317057062, 26.809883514267394],
+ [93.88928583593145, 26.763795821932906],
+ [93.89425691328776, 26.747788307833513],
+ [93.84836588680535, 26.702683223650304],
+ [93.8739308168973, 26.67826536577301],
+ [93.90301655270984, 26.679568581151145],
+ [93.88772254275824, 26.645628827019888],
+ [93.93592287642633, 26.61779952170487],
+ [93.96544606393448, 26.632118467827652],
+ [93.98425861944546, 26.588595917802035],
+ [94.03090041292651, 26.58244393427702],
+ [94.04773910745024, 26.595616417229007],
+ [94.07291787156444, 26.570328345950387],
+ [94.08834664048676, 26.576876325120804],
+ [94.07805885088372, 26.57439215762854],
+ [94.08249683650942, 26.584867799646062],
+ [94.06887520754583, 26.594285824906542],
+ [94.09630449938179, 26.644900325121128],
+ [94.09600970913648, 26.645310936116545],
+ [94.0942315829648, 26.646853978001154],
+ [94.09363398141697, 26.646989198867495],
+ [94.09273484237771, 26.647498983666665],
+ [94.09168502083106, 26.648649448992142],
+ [94.09110230885906, 26.648974236243614],
+ [94.0908463177492, 26.64866279383598],
+ [94.09053534704897, 26.64706071335055],
+ [94.08808469534317, 26.647046579066913],
+ [94.08699476940897, 26.647416339669007],
+ [94.08657284958463, 26.647714047103836],
+ [94.08581422861538, 26.648548695812323],
+ [94.08488968072837, 26.64997899917713],
+ [94.08595862291587, 26.652402668006943],
+ [94.08630416977137, 26.655503008060318],
+ [94.08507763074367, 26.659027159612624],
+ [94.08391735863786, 26.659261561240076],
+ [94.0829881143585, 26.65943271906566],
+ [94.08264133860771, 26.66008246088703],
+ [94.08216867924119, 26.661657281814765],
+ [94.0815709447427, 26.661639060682038],
+ [94.08022011571063, 26.660875954108366],
+ [94.0803013305988, 26.658565532934876],
+ [94.07954306985403, 26.65836669330358],
+ [94.07896025367747, 26.658835869692478],
+ [94.07863351934066, 26.659657062217082],
+ [94.078582952275, 26.660604739899092],
+ [94.07831648860554, 26.661073968099963],
+ [94.07694504772923, 26.661948968060305],
+ [94.07587520632813, 26.661849328057805],
+ [94.07383146180163, 26.660842242732556],
+ [94.0723295020028, 26.661279479916637],
+ [94.07210827659273, 26.66178934700789],
+ [94.07325777071176, 26.663373767387903],
+ [94.07299126032989, 26.66419496900116],
+ [94.07217245044002, 26.664447412919497],
+ [94.07146442168926, 26.6640499537011],
+ [94.07116313213285, 26.663725006241883],
+ [94.0699536512141, 26.661648634062484],
+ [94.06957718165158, 26.661237858651678],
+ [94.06757810944586, 26.661336307830883],
+ [94.06718600201086, 26.662107814191373],
+ [94.06711997134587, 26.66358350092583],
+ [94.06800359468353, 26.66434201113694],
+ [94.0685709993631, 26.6646129772354],
+ [94.06992179695413, 26.665502502709828],
+ [94.06997157709559, 26.66626971660397],
+ [94.06857019806584, 26.66642257290538],
+ [94.06701820929219, 26.666295670849664],
+ [94.06665573278686, 26.667938120829128],
+ [94.0664798417559, 26.66810956506695],
+ [94.06574171674819, 26.667698618649606],
+ [94.06572710205681, 26.666818554802518],
+ [94.06567734706817, 26.665843792708984],
+ [94.06513551472986, 26.664584529176917],
+ [94.06437740130873, 26.66398852879912],
+ [94.06389033116844, 26.663717526697933],
+ [94.06192538057046, 26.665756428860128],
+ [94.06045846584747, 26.66608070102528],
+ [94.05912227126969, 26.66645021613467],
+ [94.0583032080549, 26.666946190000992],
+ [94.05764010674645, 26.667225668000405],
+ [94.05673168900863, 26.665997784695787],
+ [94.05739494033574, 26.665573864306168],
+ [94.05792732599055, 26.665533556336825],
+ [94.0587312049821, 26.665222561302397],
+ [94.05839983533842, 26.66483875520045],
+ [94.05791318021977, 26.66395855208625],
+ [94.05777275916783, 26.663520791315126],
+ [94.05752190731965, 26.663024211705032],
+ [94.0571754091483, 26.66289773134834],
+ [94.05665801457891, 26.663037412774614],
+ [94.05606023426637, 26.664070540247817],
+ [94.05593390688291, 26.66442700465788],
+ [94.05624954702598, 26.665898286305286],
+ [94.05640490885773, 26.666448918063054],
+ [94.05613823857576, 26.667166319943675],
+ [94.053415904887, 26.667092784664224],
+ [94.0527973860678, 26.668234171640133],
+ [94.05283245360155, 26.668518494296585],
+ [94.0538060899273, 26.669778048346554],
+ [94.05421775188938, 26.670134775079486],
+ [94.05483051340596, 26.670162101932707],
+ [94.05571021380075, 26.669088518208092],
+ [94.05649916818216, 26.668506742826604],
+ [94.05672010074147, 26.66863324506153],
+ [94.05676453411037, 26.66993744629889],
+ [94.05668891482807, 26.670515040955284],
+ [94.0560805146322, 26.67144438078948],
+ [94.05549784577937, 26.671471182343527],
+ [94.05250842768531, 26.672588818718143],
+ [94.05232223926627, 26.673238630107278],
+ [94.05362754886626, 26.674371984680644],
+ [94.05397369669468, 26.67505358667202],
+ [94.05412854019853, 26.67665565386546],
+ [94.05414283778461, 26.677788369255865],
+ [94.05392127191304, 26.67883519167373],
+ [94.05307186360791, 26.679457581848457],
+ [94.05134547680333, 26.6790221152103],
+ [94.05093227423053, 26.678919461617895],
+ [94.05006334373766, 26.678806197327493],
+ [94.04986750022591, 26.678639082768477],
+ [94.0515364038355, 26.676753601702295],
+ [94.05166234943495, 26.67617601937436],
+ [94.049116479004, 26.674816417649208],
+ [94.04806185865706, 26.674405194378735],
+ [94.046277015782, 26.676836546334428],
+ [94.04506516690414, 26.67868616312787],
+ [94.04490877919633, 26.67956152003606],
+ [94.04499881823558, 26.68017984072899],
+ [94.04544028180723, 26.68114128614802],
+ [94.04492266265905, 26.68141178371793],
+ [94.04405384625221, 26.681054804102573],
+ [94.04339576472961, 26.681027344209337],
+ [94.04336021390225, 26.68159586884229],
+ [94.04358086079725, 26.682146550833732],
+ [94.04430373420807, 26.682968318003926],
+ [94.04745413309602, 26.681936670027945],
+ [94.04903110671266, 26.68257373260588],
+ [94.04897981290993, 26.684193853080696],
+ [94.04853740880218, 26.684730564671433],
+ [94.04805443587787, 26.685799841916122],
+ [94.04833512257325, 26.686734144206433],
+ [94.04866594514293, 26.687853460945234],
+ [94.04665160427233, 26.687685463928535],
+ [94.04507844400405, 26.688632205653775],
+ [94.04495287390037, 26.68861863112293],
+ [94.04382356402745, 26.687228043377168],
+ [94.04342654280786, 26.687399359893174],
+ [94.04391694479956, 26.690179441164553],
+ [94.04424808716946, 26.69073469981862],
+ [94.04623969707015, 26.6951853698366],
+ [94.04564683233882, 26.695176079365922],
+ [94.04463740174225, 26.694534654642837],
+ [94.04278396261377, 26.69389733628116],
+ [94.04223104506481, 26.694267086293024],
+ [94.0419640783388, 26.695354440861355],
+ [94.041189742242, 26.696233994743576],
+ [94.04129905194071, 26.69784963625969],
+ [94.042435309384, 26.696744639727957],
+ [94.04292294725961, 26.696361349828916],
+ [94.04393193139344, 26.6976435467045],
+ [94.04369685306337, 26.698616968771763],
+ [94.04345310060093, 26.699764238921688],
+ [94.04274813780023, 26.702033766288164],
+ [94.04246621322642, 26.70294070075409],
+ [94.04206928094005, 26.702899842633784],
+ [94.04055723934874, 26.702402497187105],
+ [94.04054113435235, 26.703900768068262],
+ [94.04003801580947, 26.704794016357862],
+ [94.04158499467879, 26.70554852725381],
+ [94.04156958677503, 26.706085565992325],
+ [94.04069911567146, 26.707727643344704],
+ [94.04041690812832, 26.709000040162675],
+ [94.04000431820656, 26.709735370065733],
+ [94.03857747104017, 26.709445740008203],
+ [94.03804004224335, 26.709147579816825],
+ [94.03596455305133, 26.70951631015404],
+ [94.03648111128919, 26.71092008620723],
+ [94.03665685858967, 26.711073680275078],
+ [94.03700341604987, 26.71125888023206],
+ [94.03753093463247, 26.711340421143543],
+ [94.0393247723385, 26.711341527721093],
+ [94.04007818307907, 26.711833830079932],
+ [94.04142930406364, 26.712642430165175],
+ [94.04177599357618, 26.712629129719897],
+ [94.04286659324686, 26.712304801391337],
+ [94.04335393288179, 26.712372837258325],
+ [94.04388629967198, 26.712842378801785],
+ [94.04415718484925, 26.713406646667625],
+ [94.04162376776308, 26.71467332212258],
+ [94.04112108041154, 26.71499788523353],
+ [94.04207949119156, 26.716975045962545],
+ [94.04207931063017, 26.71720070577283],
+ [94.04178182723564, 26.71864457518131],
+ [94.04158934342308, 26.72073385781438],
+ [94.04127248336785, 26.721171369173277],
+ [94.04076967743873, 26.7214960292994],
+ [94.03955878436834, 26.72128319761747],
+ [94.03857902871887, 26.72110209006063],
+ [94.03834275832442, 26.721183176996337],
+ [94.03832725340261, 26.72171116019343],
+ [94.03845280284506, 26.7218647308763],
+ [94.04144218770145, 26.72268323637301],
+ [94.04308019914671, 26.723031687982736],
+ [94.04457228286732, 26.723781682685978],
+ [94.04587819074531, 26.72474362990564],
+ [94.04603876370402, 26.725041521382174],
+ [94.04394232130804, 26.726407735264736],
+ [94.04532798700681, 26.728281260674066],
+ [94.04550273088917, 26.730054898060043],
+ [94.04421102627411, 26.73021211684716],
+ [94.04279492924678, 26.728595694909533],
+ [94.04249851305079, 26.728455622861844],
+ [94.04166409672943, 26.728748519765958],
+ [94.0410349014331, 26.730079395212613],
+ [94.04180288644083, 26.731492348797804],
+ [94.04221454480968, 26.732029557987634],
+ [94.04355058218229, 26.7332623209841],
+ [94.04378588958278, 26.73461628313788],
+ [94.04400649335865, 26.735338441791594],
+ [94.04568931007533, 26.736643533784108],
+ [94.0463315237568, 26.738290997111047],
+ [94.04617553310435, 26.73855716475631],
+ [94.0449440120201, 26.73876857381694],
+ [94.04227552604442, 26.73833838976383],
+ [94.04308044887837, 26.73719262027845],
+ [94.04220164769715, 26.736104523616074],
+ [94.04164880560668, 26.73610426608591],
+ [94.03741550022015, 26.7381730721611],
+ [94.03799768218613, 26.739333183254168],
+ [94.03847486906169, 26.73965384769763],
+ [94.03916697786897, 26.74166690685893],
+ [94.03894544703167, 26.74223092831089],
+ [94.03840769933296, 26.74223059538485],
+ [94.03707138617752, 26.741236948769345],
+ [94.03656903030435, 26.740898211095878],
+ [94.0342899029189, 26.737435532826144],
+ [94.03338168101384, 26.737746953329445],
+ [94.0328819320516, 26.738310117354036],
+ [94.03277094609658, 26.738932770606485],
+ [94.03267445535694, 26.740092436725632],
+ [94.03194990389316, 26.741084755206273],
+ [94.03092390117627, 26.741964128279644],
+ [94.02716656185484, 26.739384799327077],
+ [94.02517072627907, 26.739974593066133],
+ [94.02331102858801, 26.740045442718223],
+ [94.02044654728535, 26.739646325804816],
+ [94.02176745702855, 26.74072131524561],
+ [94.02235026871354, 26.74090671003516],
+ [94.02471129370679, 26.74239309607423],
+ [94.02485099969978, 26.743525838021604],
+ [94.02377136396713, 26.744492700323345],
+ [94.02317908942896, 26.744852929806996],
+ [94.0226781978097, 26.745288829027743],
+ [94.02231575094876, 26.745825535850308],
+ [94.02160628758847, 26.74675462388338],
+ [94.01947973096922, 26.747150186181155],
+ [94.01820831839815, 26.746864988035135],
+ [94.01610245896303, 26.74670999671234],
+ [94.0117894379765, 26.74709015216765],
+ [94.0110055689579, 26.746918109624325],
+ [94.00091244607356, 26.746636657974065],
+ [94.0006137930725, 26.749075474149553],
+ [94.00120536692476, 26.752425929637774],
+ [94.00107248183973, 26.758976870887082],
+ [93.99994100612867, 26.76345855833495],
+ [93.99851194910671, 26.765205096118414],
+ [93.9969061683155, 26.76659147567968],
+ [93.99207979338178, 26.76712560114576],
+ [93.98762594530481, 26.767381978777024],
+ [93.98426780741417, 26.767384604701565],
+ [93.98104002674935, 26.767102765012336],
+ [93.97528899613074, 26.767251402717477],
+ [93.9723881519237, 26.767181231718542],
+ [93.97169116795935, 26.76928460320337],
+ [93.97133806717062, 26.773729868176552],
+ [93.97127926614709, 26.775449255211726],
+ [93.97132043503822, 26.776577370613396],
+ [93.9718450466726, 26.778549081928283],
+ [93.97318364604037, 26.779965074758902],
+ [93.98089879990859, 26.78253624267141],
+ [93.98251880192903, 26.783609099805712],
+ [93.98317231462015, 26.788626659062015],
+ [93.98063979225599, 26.79050582903356],
+ [93.98021777990517, 26.790795020882715],
+ [93.9772737590723, 26.79316517418208],
+ [93.97602715976602, 26.794164477645964],
+ [93.97571672176674, 26.80117296784995],
+ [93.97980317057062, 26.809883514267394],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dergaon',
+ district_3: 'GOLAGHAT',
+ object_id: 174,
+ district_1: 'Golaghat',
+ revenue_cr: 'Dergaon',
+ area: '322577977.5',
+ are_new: 323,
+ ID_NAM: 'GOLAGHATDergaon',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.08834664048676, 26.576876325120804],
+ [94.07291787156444, 26.570328345950387],
+ [94.04773910745024, 26.595616417229007],
+ [94.03090041292651, 26.58244393427702],
+ [93.98425861944546, 26.588595917802035],
+ [93.96544606393448, 26.632118467827652],
+ [93.93592287642633, 26.61779952170487],
+ [93.92754690297052, 26.597945097698695],
+ [93.91321666404622, 26.596302720026426],
+ [93.9183543465484, 26.56187334569902],
+ [93.87247036195953, 26.56078628553324],
+ [93.89667613922997, 26.518134367190694],
+ [93.95197295613178, 26.51087666712346],
+ [93.95863038866871, 26.485423265809697],
+ [93.94720807447253, 26.47450420001675],
+ [93.97113354413662, 26.46726777389493],
+ [93.94539308413651, 26.45907816701711],
+ [93.94830291059807, 26.441834667796208],
+ [93.96551178018912, 26.42329186040999],
+ [93.94693904880785, 26.41838832939578],
+ [93.95991248849671, 26.41814370058972],
+ [93.94630767060536, 26.379356909531026],
+ [93.9727949369321, 26.357745899557727],
+ [93.9618250241945, 26.33053100301935],
+ [93.97232219042903, 26.31101166627514],
+ [93.98606069470263, 26.31369844189471],
+ [93.9722307949337, 26.293815416921273],
+ [93.98751605259949, 26.27014858065128],
+ [93.97242433157176, 26.256181481869586],
+ [93.99788706302878, 26.250077173141257],
+ [93.98277824795952, 26.239523049855958],
+ [93.99042960347622, 26.224989770096546],
+ [93.98370870765943, 26.233636375758234],
+ [93.97206697636184, 26.224297078147426],
+ [93.98594299473916, 26.21017225737493],
+ [93.97154559506924, 26.20166590087563],
+ [93.97206846037868, 26.185431109417305],
+ [94.00198466082362, 26.17382786694646],
+ [94.03193991193228, 26.197635514233383],
+ [94.04759460175869, 26.249463403460346],
+ [94.07453087121725, 26.26447850962951],
+ [94.07463389720056, 26.283694200130608],
+ [94.10395075067109, 26.318952170290455],
+ [94.17776153116826, 26.346181160125333],
+ [94.16121715976595, 26.347724559608093],
+ [94.13327169686606, 26.351583888308802],
+ [94.12007767496087, 26.38445737340613],
+ [94.11454737028905, 26.423870915027507],
+ [94.12700786835738, 26.450572139304423],
+ [94.10355529162176, 26.462749469250248],
+ [94.09695755033886, 26.492282155765235],
+ [94.11640408287842, 26.54496224218906],
+ [94.10701796825866, 26.569682663904462],
+ [94.08834664048676, 26.576876325120804],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Golaghat',
+ district_3: 'GOLAGHAT',
+ object_id: 175,
+ district_1: 'Golaghat',
+ revenue_cr: 'Golaghat',
+ area: '658333420.5',
+ are_new: 658,
+ ID_NAM: 'GOLAGHATGolaghat',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.87247036195953, 26.56078628553324],
+ [93.79979850690205, 26.604959716865718],
+ [93.76266267587606, 26.606779082298853],
+ [93.75166301273283, 26.58144725079751],
+ [93.73154560306772, 26.537834481418116],
+ [93.75598025759783, 26.528994002681],
+ [93.75127650270036, 26.51825237393466],
+ [93.79441040553972, 26.440156356527726],
+ [93.78307722218601, 26.438664805043718],
+ [93.79389196712798, 26.428499205803455],
+ [93.78061465702294, 26.414902762012055],
+ [93.79909234035888, 26.408776093132875],
+ [93.77481203885247, 26.38394019087034],
+ [93.79397274274001, 26.375860512226804],
+ [93.82672785124812, 26.417755149745037],
+ [93.8655876633904, 26.38888008763363],
+ [93.88340526645221, 26.39224904393635],
+ [93.8980728820545, 26.419137021098354],
+ [93.91494345778766, 26.406029000513563],
+ [93.91120665844515, 26.42651624261497],
+ [93.93838983704615, 26.429026065442038],
+ [93.93455914219689, 26.445043570967094],
+ [93.94830291059807, 26.441834667796208],
+ [93.94539308413651, 26.45907816701711],
+ [93.97113354413662, 26.46726777389493],
+ [93.94720807447253, 26.47450420001675],
+ [93.95863038866871, 26.485423265809697],
+ [93.95197295613178, 26.51087666712346],
+ [93.89667613922997, 26.518134367190694],
+ [93.87247036195953, 26.56078628553324],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Morangi',
+ district_3: 'GOLAGHAT',
+ object_id: 176,
+ district_1: 'Golaghat',
+ revenue_cr: 'Morangi',
+ area: '318699785.4',
+ are_new: 319,
+ ID_NAM: 'GOLAGHATMorangi',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.94830291059807, 26.441834667796208],
+ [93.93455914219689, 26.445043570967094],
+ [93.93838983704615, 26.429026065442038],
+ [93.91120665844515, 26.42651624261497],
+ [93.91494345778766, 26.406029000513563],
+ [93.8980728820545, 26.419137021098354],
+ [93.88340526645221, 26.39224904393635],
+ [93.89380489540984, 26.31547572809379],
+ [93.87424023351207, 26.310733892210354],
+ [93.88562141205476, 26.30511480443599],
+ [93.86853240197718, 26.29442830782903],
+ [93.8809524444167, 26.273275826506755],
+ [93.87081067326815, 26.275541533693197],
+ [93.86477196885791, 26.24583579437741],
+ [93.84788709194545, 26.24170417962074],
+ [93.86459338827099, 26.23530903523599],
+ [93.8515037191608, 26.21564542140011],
+ [93.8404565899363, 26.217774348941788],
+ [93.82738022397712, 26.186822820292182],
+ [93.83512402601804, 26.175928121919082],
+ [93.82160904055343, 26.172295664349594],
+ [93.83114962767283, 26.13681168468927],
+ [93.81832628299321, 26.136968430951327],
+ [93.82800674139563, 26.127736354179397],
+ [93.80645420299552, 26.102481159083233],
+ [93.81415234816214, 26.090779302157323],
+ [93.8048820730949, 26.09356355208142],
+ [93.80585380229728, 26.071325582190244],
+ [93.79661801445211, 26.07117765055645],
+ [93.80530301734882, 26.064551811260046],
+ [93.78706692692536, 26.054333098114196],
+ [93.79500555019521, 26.041612811927468],
+ [93.78007248691803, 26.039601999577542],
+ [93.79962753145236, 26.031279548218574],
+ [93.78114791584018, 26.00788685399276],
+ [93.80079605099078, 26.00214255176478],
+ [93.80449414821587, 25.98073839389028],
+ [93.78067542356033, 25.98142443781289],
+ [93.77663052004172, 25.968750731750937],
+ [93.79601558445965, 25.903490411551804],
+ [93.77772095981226, 25.842514354311326],
+ [93.7953785432776, 25.80902745413856],
+ [93.83960692830627, 25.85670954957682],
+ [93.88170556320483, 25.843449004988535],
+ [93.91589979525595, 25.883800803923233],
+ [93.97859914961218, 25.916828776536974],
+ [93.95405637475278, 25.969360050719253],
+ [93.9529059472842, 26.003065191382433],
+ [93.98729353541204, 26.066885472403968],
+ [93.98144043551588, 26.081341026313705],
+ [93.99783719215745, 26.10965617441881],
+ [93.98666455481303, 26.114002928365775],
+ [93.99772811602072, 26.128869059127776],
+ [93.98714622518017, 26.131179432145313],
+ [94.00207970437732, 26.13452952789414],
+ [94.00198466082362, 26.17382786694646],
+ [93.97206846037868, 26.185431109417305],
+ [93.97154559506924, 26.20166590087563],
+ [93.98594299473916, 26.21017225737493],
+ [93.97206697636184, 26.224297078147426],
+ [93.98370870765943, 26.233636375758234],
+ [93.99042960347622, 26.224989770096546],
+ [93.98277824795952, 26.239523049855958],
+ [93.99788706302878, 26.250077173141257],
+ [93.97242433157176, 26.256181481869586],
+ [93.98751605259949, 26.27014858065128],
+ [93.9722307949337, 26.293815416921273],
+ [93.98606069470263, 26.31369844189471],
+ [93.97232219042903, 26.31101166627514],
+ [93.9618250241945, 26.33053100301935],
+ [93.9727949369321, 26.357745899557727],
+ [93.94630767060536, 26.379356909531026],
+ [93.95991248849671, 26.41814370058972],
+ [93.94693904880785, 26.41838832939578],
+ [93.96551178018912, 26.42329186040999],
+ [93.94830291059807, 26.441834667796208],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sarupathar',
+ district_3: 'GOLAGHAT',
+ object_id: 177,
+ district_1: 'Golaghat',
+ revenue_cr: 'Sarupathar',
+ area: '900371843.1',
+ are_new: 900,
+ ID_NAM: 'GOLAGHATSarupathar',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.82160904055343, 26.172295664349594],
+ [93.79405263351148, 26.159193360186745],
+ [93.75458883010481, 26.159637477579736],
+ [93.73137828645618, 26.179412858682472],
+ [93.69150659580818, 26.167090528440653],
+ [93.70438569173096, 26.149746486165157],
+ [93.6878005457979, 26.12974974263803],
+ [93.6476259243715, 26.13627618337354],
+ [93.5688381888411, 26.152943342552224],
+ [93.56732879009334, 26.11895422819183],
+ [93.54317538999388, 26.10407758021934],
+ [93.55249807546976, 26.08428259527668],
+ [93.53886936418849, 26.050939339772196],
+ [93.46422615713834, 26.01152520829878],
+ [93.43448073631039, 25.976006367412516],
+ [93.36790567072943, 25.99873113696604],
+ [93.34073771138601, 25.986099101375313],
+ [93.30779268285718, 26.00116012799995],
+ [93.30720390007053, 25.990986301156315],
+ [93.28457614295402, 25.986297830804762],
+ [93.2875692692936, 25.995114119216627],
+ [93.2595966530176, 26.000238752338287],
+ [93.2480554306239, 26.01936633776815],
+ [93.2306316498809, 26.017250229785915],
+ [93.19571385541116, 26.044152065819212],
+ [93.1796502677388, 25.996984707683385],
+ [93.15801939894088, 25.995593620997578],
+ [93.18302660459878, 25.903289293488807],
+ [93.23927226881607, 25.850972780474958],
+ [93.24780055791655, 25.78788341679615],
+ [93.22711653588597, 25.76543267722077],
+ [93.22649619887662, 25.72676440983884],
+ [93.14263543528999, 25.71850185334133],
+ [93.13595693905629, 25.670072797360874],
+ [93.17068130288918, 25.66176127496206],
+ [93.19193865668353, 25.63207740790885],
+ [93.17658152930346, 25.59275832870491],
+ [93.20762432850574, 25.544152225675845],
+ [93.25906190838685, 25.54871164790054],
+ [93.27168406368045, 25.531159189581658],
+ [93.29396154880303, 25.54425769053801],
+ [93.30188016209996, 25.53024750262824],
+ [93.33020077134398, 25.542409031784914],
+ [93.34235534005748, 25.559865723904615],
+ [93.35862160742087, 25.554732117490357],
+ [93.42728431550132, 25.632634228748685],
+ [93.46080121154002, 25.632410641085595],
+ [93.4572176926328, 25.641236374972912],
+ [93.496458001485, 25.654633371363897],
+ [93.52239857648605, 25.69767319647131],
+ [93.54107315705755, 25.69894425132174],
+ [93.54235670586813, 25.73103947312802],
+ [93.5614176078259, 25.73786858526287],
+ [93.56784128345453, 25.758533831513116],
+ [93.61732654844043, 25.776087904534222],
+ [93.64604218644074, 25.822479089600325],
+ [93.66819818699757, 25.821927594774287],
+ [93.68820289223048, 25.84604817230868],
+ [93.7142274058117, 25.84461278054388],
+ [93.68143590026321, 25.904485757041638],
+ [93.751219582749, 25.93290808377815],
+ [93.74528813898034, 25.94287830898646],
+ [93.76745550322549, 25.950612713810997],
+ [93.76445345751345, 25.96897917272477],
+ [93.77663052004172, 25.968750731750937],
+ [93.78067542356033, 25.98142443781289],
+ [93.80449414821587, 25.98073839389028],
+ [93.80079605099078, 26.00214255176478],
+ [93.78114791584018, 26.00788685399276],
+ [93.79962753145236, 26.031279548218574],
+ [93.78007248691803, 26.039601999577542],
+ [93.79500555019521, 26.041612811927468],
+ [93.78706692692536, 26.054333098114196],
+ [93.80530301734882, 26.064551811260046],
+ [93.79661801445211, 26.07117765055645],
+ [93.80585380229728, 26.071325582190244],
+ [93.8048820730949, 26.09356355208142],
+ [93.81415234816214, 26.090779302157323],
+ [93.80645420299552, 26.102481159083233],
+ [93.82800674139563, 26.127736354179397],
+ [93.81832628299321, 26.136968430951327],
+ [93.83114962767283, 26.13681168468927],
+ [93.82160904055343, 26.172295664349594],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Diphu',
+ district_3: 'Karbi Anglong',
+ object_id: 178,
+ district_1: 'Karbi Anglong',
+ revenue_cr: 'Diphu',
+ area: '2467568183',
+ are_new: 2468,
+ ID_NAM: 'K.ANGLONGDiphu',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.75166301273283, 26.58144725079751],
+ [93.71165709132354, 26.60575473193472],
+ [93.66588281259041, 26.604660735005048],
+ [93.6218916564586, 26.59025285263371],
+ [93.61671591593111, 26.56594252797459],
+ [93.61094686241293, 26.577579928794258],
+ [93.58975599922097, 26.57072870452798],
+ [93.58982788061338, 26.59987944754295],
+ [93.5684096951455, 26.610119773951293],
+ [93.52368743164497, 26.593602272484567],
+ [93.49558390927253, 26.606625967058022],
+ [93.49401621615105, 26.557799961925323],
+ [93.4719792235048, 26.540680808786483],
+ [93.48932237146785, 26.50824865131808],
+ [93.47431815084036, 26.49344765713724],
+ [93.44245436692685, 26.4888896953882],
+ [93.4194718013243, 26.46241711403531],
+ [93.42274890668475, 26.41980245496383],
+ [93.47425552658696, 26.38781594994286],
+ [93.52933620523818, 26.40017078510618],
+ [93.48928138673134, 26.339345403392436],
+ [93.48849376005987, 26.252060421755512],
+ [93.58076208276607, 26.236401438007583],
+ [93.56705791120429, 26.190502624417014],
+ [93.61931006901195, 26.191226334007933],
+ [93.6476259243715, 26.13627618337354],
+ [93.6878005457979, 26.12974974263803],
+ [93.70438569173096, 26.149746486165157],
+ [93.69150659580818, 26.167090528440653],
+ [93.73137828645618, 26.179412858682472],
+ [93.75458883010481, 26.159637477579736],
+ [93.79405263351148, 26.159193360186745],
+ [93.82160904055343, 26.172295664349594],
+ [93.83512402601804, 26.175928121919082],
+ [93.82738022397712, 26.186822820292182],
+ [93.8404565899363, 26.217774348941788],
+ [93.8515037191608, 26.21564542140011],
+ [93.86459338827099, 26.23530903523599],
+ [93.84788709194545, 26.24170417962074],
+ [93.86477196885791, 26.24583579437741],
+ [93.87081067326815, 26.275541533693197],
+ [93.8809524444167, 26.273275826506755],
+ [93.86853240197718, 26.29442830782903],
+ [93.88562141205476, 26.30511480443599],
+ [93.87424023351207, 26.310733892210354],
+ [93.89380489540984, 26.31547572809379],
+ [93.88340526645221, 26.39224904393635],
+ [93.8655876633904, 26.38888008763363],
+ [93.82672785124812, 26.417755149745037],
+ [93.79397274274001, 26.375860512226804],
+ [93.77481203885247, 26.38394019087034],
+ [93.79909234035888, 26.408776093132875],
+ [93.78061465702294, 26.414902762012055],
+ [93.79389196712798, 26.428499205803455],
+ [93.78307722218601, 26.438664805043718],
+ [93.79441040553972, 26.440156356527726],
+ [93.75127650270036, 26.51825237393466],
+ [93.75598025759783, 26.528994002681],
+ [93.73154560306772, 26.537834481418116],
+ [93.75166301273283, 26.58144725079751],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Silonijan',
+ district_3: 'Karbi Anglong',
+ object_id: 179,
+ district_1: 'Karbi Anglong',
+ revenue_cr: 'Silonijan',
+ area: '1566331644',
+ are_new: 1566,
+ ID_NAM: 'K.ANGLONGSilonijan',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.06366486744643, 25.776702405823006],
+ [93.01862606009766, 25.801224539836053],
+ [93.002845698658, 25.786719926519215],
+ [93.0060070525008, 25.82666522888454],
+ [92.98094767538615, 25.80861716083088],
+ [92.9835887016602, 25.780166224931286],
+ [92.98062694538869, 25.790474658355727],
+ [92.96741926998949, 25.781727969127186],
+ [92.95674153160307, 25.8028061001013],
+ [92.9658635523091, 25.817849284630842],
+ [92.94428160935483, 25.803170128864725],
+ [92.92854479734179, 25.80681251105136],
+ [92.92277461104806, 25.77222123703376],
+ [92.82061124757095, 25.74108536387924],
+ [92.8137535140819, 25.702290383253573],
+ [92.77640089711991, 25.677929446383985],
+ [92.78880711448723, 25.65733368292451],
+ [92.7586216090016, 25.629126747613746],
+ [92.7686780949954, 25.61801554658573],
+ [92.74866551243574, 25.59916527377671],
+ [92.72002754816477, 25.588534205273632],
+ [92.69664755171084, 25.599321142953816],
+ [92.68191798379496, 25.576042882556973],
+ [92.66134437998419, 25.57245676255394],
+ [92.64275183086944, 25.534908284525915],
+ [92.57356672729848, 25.490577102756134],
+ [92.56457794651205, 25.46558251218155],
+ [92.59852525504776, 25.468237394121367],
+ [92.60654244227742, 25.41333161083706],
+ [92.62754977875854, 25.422066307775466],
+ [92.62555710704919, 25.435015635089474],
+ [92.63947239348254, 25.417664914998003],
+ [92.65353128100392, 25.433622658166716],
+ [92.66155499808738, 25.40645387241895],
+ [92.67344009736846, 25.414123495883715],
+ [92.71785216182161, 25.37272625797815],
+ [92.73792940152217, 25.379432902673415],
+ [92.7322661363068, 25.369015335157048],
+ [92.7498112713598, 25.34419543400325],
+ [92.77418499585912, 25.33654998982487],
+ [92.78910890979515, 25.36438867523439],
+ [92.88619091873167, 25.317751239297984],
+ [92.91284088163445, 25.363674836680715],
+ [92.94710512029403, 25.363198944675077],
+ [92.971375622079, 25.39032479956572],
+ [93.00897110666283, 25.406505134908453],
+ [93.03466928475915, 25.464563983237912],
+ [93.02753090230398, 25.501088709703943],
+ [92.97577762568596, 25.545703603940368],
+ [92.97934681646441, 25.650994753240127],
+ [92.99183898733305, 25.672409902453285],
+ [93.08106877476035, 25.706837728746123],
+ [93.09385837781957, 25.72111449463903],
+ [93.09471146562409, 25.76968035032316],
+ [93.06868881604711, 25.767082064453454],
+ [93.06366486744643, 25.776702405823006],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Umrangso',
+ district_3: 'DIMA HASAO',
+ object_id: 180,
+ district_1: 'Dima Hasao',
+ revenue_cr: 'Umrangso',
+ area: '1459647329',
+ are_new: 1460,
+ ID_NAM: 'DIMA HASAOUmrangso',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.94710512029403, 25.363198944675077],
+ [92.91284088163445, 25.363674836680715],
+ [92.88619091873167, 25.317751239297984],
+ [92.78910890979515, 25.36438867523439],
+ [92.77418499585912, 25.33654998982487],
+ [92.79245271147217, 25.282912660440434],
+ [92.76852705495847, 25.268219129134703],
+ [92.77765326720362, 25.258277387684615],
+ [92.76179590217777, 25.24662830680573],
+ [92.80199392741225, 25.215225000745647],
+ [92.77612126594504, 25.199714584730664],
+ [92.74278245282655, 25.206751865486613],
+ [92.69380820167657, 25.179336314300304],
+ [92.66338339937226, 25.176767745248355],
+ [92.62134064507427, 25.11512635341125],
+ [92.52152670844178, 25.139128500820295],
+ [92.53933182492116, 25.099153949871194],
+ [92.59840110607887, 25.110728456635016],
+ [92.6194809599596, 25.102365968338724],
+ [92.64292256018076, 25.117795044259402],
+ [92.72249959504569, 25.11267179437647],
+ [92.73486213003567, 25.12593485419062],
+ [92.72986191402646, 25.143293914962246],
+ [92.75520549474084, 25.136682565347403],
+ [92.77792821186767, 25.088292895083942],
+ [92.82229999137189, 25.07386086872642],
+ [92.83577494700913, 25.052657130753296],
+ [92.85688937884176, 25.064839571262386],
+ [92.89745825288007, 25.079280204828454],
+ [92.95179051003379, 25.069114400659384],
+ [92.95901229746987, 25.090088697012717],
+ [92.97743260001873, 25.085638085285908],
+ [93.03712771228206, 25.104667989441275],
+ [93.04306728221081, 25.08850639853445],
+ [93.01424679554547, 25.061830342464766],
+ [93.05056564385484, 25.033722004405394],
+ [93.06930751812263, 25.000667276029347],
+ [93.0992147102619, 25.000669539354426],
+ [93.15251431447066, 25.088576426738985],
+ [93.15249028004521, 25.12938418284894],
+ [93.13328441605174, 25.165585329631526],
+ [93.10434702353362, 25.176915079804342],
+ [93.09104768943274, 25.21718479582844],
+ [93.04385995292257, 25.21461647639244],
+ [92.99603278750833, 25.241028493182835],
+ [92.94463642951901, 25.315981515074544],
+ [92.94710512029403, 25.363198944675077],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Haflong',
+ district_3: 'DIMA HASAO',
+ object_id: 181,
+ district_1: 'Dima Hasao',
+ revenue_cr: 'Haflong',
+ area: '1023944193',
+ are_new: 1024,
+ ID_NAM: 'DIMA HASAOHaflong',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.24951757888597, 24.97323566406445],
+ [93.25976949247152, 25.001227842570984],
+ [93.244288126291, 24.9981897641176],
+ [93.24378308625172, 25.01838745875053],
+ [93.26410538636179, 25.049463172134846],
+ [93.29985726477625, 25.046140726109744],
+ [93.31482248774061, 25.08471747009918],
+ [93.33227087423752, 25.093619986529173],
+ [93.34577104827976, 25.16990942128974],
+ [93.38102004710319, 25.239729475655018],
+ [93.46769368557607, 25.310085097728958],
+ [93.4373276250065, 25.307177509628612],
+ [93.32939527358828, 25.2467391995306],
+ [93.27585740113189, 25.248880714482805],
+ [93.2144673071663, 25.224610212871163],
+ [93.16307095007531, 25.232462433518275],
+ [93.09104768943274, 25.21718479582844],
+ [93.10434702353362, 25.176915079804342],
+ [93.13328441605174, 25.165585329631526],
+ [93.15249028004521, 25.12938418284894],
+ [93.15251431447066, 25.088576426738985],
+ [93.0992147102619, 25.000669539354426],
+ [93.17971721019377, 25.00065923226943],
+ [93.20286685165938, 24.981679600735987],
+ [93.2273017846672, 24.98727346894334],
+ [93.24951757888597, 24.97323566406445],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Mahur',
+ district_3: 'DIMA HASAO',
+ object_id: 182,
+ district_1: 'Dima Hasao',
+ revenue_cr: 'Mahur',
+ area: '568176425.1',
+ are_new: 568,
+ ID_NAM: 'DIMA HASAOMahur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.14263543528999, 25.71850185334133],
+ [93.14854091505201, 25.733989459807486],
+ [93.12576913823256, 25.748668827189054],
+ [93.12952245130488, 25.76089589285241],
+ [93.09880223083292, 25.777001745586134],
+ [93.09471146562409, 25.76968035032316],
+ [93.09385837781957, 25.72111449463903],
+ [93.08106877476035, 25.706837728746123],
+ [92.99183898733305, 25.672409902453285],
+ [92.97934681646441, 25.650994753240127],
+ [92.97577762568596, 25.545703603940368],
+ [93.02753090230398, 25.501088709703943],
+ [93.03466928475915, 25.464563983237912],
+ [93.00897110666283, 25.406505134908453],
+ [92.971375622079, 25.39032479956572],
+ [92.94710512029403, 25.363198944675077],
+ [92.94463642951901, 25.315981515074544],
+ [92.99603278750833, 25.241028493182835],
+ [93.04385995292257, 25.21461647639244],
+ [93.09104768943274, 25.21718479582844],
+ [93.16307095007531, 25.232462433518275],
+ [93.2144673071663, 25.224610212871163],
+ [93.27585740113189, 25.248880714482805],
+ [93.32939527358828, 25.2467391995306],
+ [93.4373276250065, 25.307177509628612],
+ [93.46769368557607, 25.310085097728958],
+ [93.44833607457153, 25.340736542104164],
+ [93.47351471561657, 25.379380442098782],
+ [93.45809611741988, 25.43108452218574],
+ [93.39024740695439, 25.460485029977285],
+ [93.38541809183472, 25.49049123972788],
+ [93.33020077134398, 25.542409031784914],
+ [93.30188016209996, 25.53024750262824],
+ [93.29396154880303, 25.54425769053801],
+ [93.27168406368045, 25.531159189581658],
+ [93.25906190838685, 25.54871164790054],
+ [93.20762432850574, 25.544152225675845],
+ [93.17658152930346, 25.59275832870491],
+ [93.19193865668353, 25.63207740790885],
+ [93.17068130288918, 25.66176127496206],
+ [93.13595693905629, 25.670072797360874],
+ [93.14263543528999, 25.71850185334133],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Maibong',
+ district_3: 'DIMA HASAO',
+ object_id: 183,
+ district_1: 'Dima Hasao',
+ revenue_cr: 'Maibong',
+ area: '1831786745',
+ are_new: 1832,
+ ID_NAM: 'DIMA HASAOMaibong',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.82229999137189, 25.07386086872642],
+ [92.77792821186767, 25.088292895083942],
+ [92.75520549474084, 25.136682565347403],
+ [92.72986191402646, 25.143293914962246],
+ [92.73486213003567, 25.12593485419062],
+ [92.72249959504569, 25.11267179437647],
+ [92.64292256018076, 25.117795044259402],
+ [92.6194809599596, 25.102365968338724],
+ [92.59840110607887, 25.110728456635016],
+ [92.53933182492116, 25.099153949871194],
+ [92.48070683612994, 25.10856670276347],
+ [92.4719356201188, 25.06735397195008],
+ [92.45688668045817, 25.054167553793093],
+ [92.46419410429024, 25.037535230107704],
+ [92.43818682668444, 25.043969207125965],
+ [92.41609217477333, 24.992044289454753],
+ [92.41976566893939, 24.965452749346365],
+ [92.46808674785979, 24.963124216888865],
+ [92.44914487716873, 24.93886184746002],
+ [92.48755624493127, 24.946638866747005],
+ [92.49236765752565, 24.87434523311097],
+ [92.5150433397625, 24.879516237410535],
+ [92.52603767320115, 24.86107126348739],
+ [92.55625750600875, 24.877374177163563],
+ [92.5797540346163, 24.873631686045027],
+ [92.59726167578596, 24.87909806393432],
+ [92.60958430222114, 24.862398491562633],
+ [92.64716303771652, 24.851266328689537],
+ [92.63016810370704, 24.848309185970233],
+ [92.6424661845754, 24.82590484676456],
+ [92.66687291497489, 24.844587753914713],
+ [92.69216541568554, 24.835193761725467],
+ [92.6884256779538, 24.86261504209763],
+ [92.72895580855221, 24.869008499910453],
+ [92.68526220588355, 24.891322244843032],
+ [92.66853036596291, 24.915458686431013],
+ [92.6578889976674, 24.952076394746307],
+ [92.68455394536744, 24.970457966865563],
+ [92.64859504660252, 24.98137984830791],
+ [92.70129210583443, 24.990654942153487],
+ [92.71513371244816, 25.009445985989903],
+ [92.78780020546168, 25.01587199611751],
+ [92.82229999137189, 25.07386086872642],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Katigora',
+ district_3: 'CACHAR',
+ object_id: 184,
+ district_1: 'Cachar',
+ revenue_cr: 'Katigorah',
+ area: '744022581.1',
+ are_new: 744,
+ ID_NAM: 'CACHARKatigora',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.85688937884176, 25.064839571262386],
+ [92.83577494700913, 25.052657130753296],
+ [92.82229999137189, 25.07386086872642],
+ [92.78780020546168, 25.01587199611751],
+ [92.71513371244816, 25.009445985989903],
+ [92.70129210583443, 24.990654942153487],
+ [92.64859504660252, 24.98137984830791],
+ [92.68455394536744, 24.970457966865563],
+ [92.6578889976674, 24.952076394746307],
+ [92.66853036596291, 24.915458686431013],
+ [92.68526220588355, 24.891322244843032],
+ [92.72895580855221, 24.869008499910453],
+ [92.6884256779538, 24.86261504209763],
+ [92.69216541568554, 24.835193761725467],
+ [92.66687291497489, 24.844587753914713],
+ [92.6424661845754, 24.82590484676456],
+ [92.63016810370704, 24.848309185970233],
+ [92.64591474149266, 24.815236610006572],
+ [92.68373813585059, 24.814545136680835],
+ [92.65477131452377, 24.740828895052246],
+ [92.65024326829928, 24.684549813865456],
+ [92.66508552178271, 24.673568591676865],
+ [92.66546022076581, 24.62761692111908],
+ [92.69571124397841, 24.61875280607475],
+ [92.66638241686344, 24.609704119194433],
+ [92.66719658875154, 24.594274942734156],
+ [92.7015692010653, 24.566057613748796],
+ [92.71835749111838, 24.561899728876096],
+ [92.7352774445477, 24.590335673582004],
+ [92.75164393065914, 24.584205396192893],
+ [92.7334982296179, 24.6067739227352],
+ [92.75231999465714, 24.615274652654595],
+ [92.80551027030253, 24.62143955347077],
+ [92.83308391421815, 24.611149791198677],
+ [92.8232748143721, 24.672925228179405],
+ [92.85053909467354, 24.67869674481931],
+ [92.84456984620445, 24.705461405060216],
+ [92.83117209627429, 24.707163230425344],
+ [92.82623575856663, 24.75062455848122],
+ [92.83878457989202, 24.759851535392883],
+ [92.84297416607032, 24.783507912996303],
+ [92.81625811860363, 24.786094287076022],
+ [92.8166169641186, 24.80026686189403],
+ [92.83167461923414, 24.793425394532115],
+ [92.84593831635205, 24.81074305216327],
+ [92.86061991423176, 24.80296888693805],
+ [92.86717044455493, 24.810931415878315],
+ [92.87010099784506, 24.844023238541347],
+ [92.83020174508752, 24.842737632504637],
+ [92.83590207299486, 24.860027901577205],
+ [92.8160566561298, 24.860900690768197],
+ [92.81313852833667, 24.87688863968138],
+ [92.8645709213453, 24.897281782337735],
+ [92.8550828766869, 24.909201613944095],
+ [92.88063617269758, 24.94939414114366],
+ [92.8784092401251, 24.972641440603855],
+ [92.86339765331228, 24.97683828770316],
+ [92.85688937884176, 25.064839571262386],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Silchar',
+ district_3: 'CACHAR',
+ object_id: 185,
+ district_1: 'Cachar',
+ revenue_cr: 'Silchar',
+ area: '837931796',
+ are_new: 838,
+ ID_NAM: 'CACHARSilchar',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.06930751812263, 25.000667276029347],
+ [93.05056564385484, 25.033722004405394],
+ [93.01424679554547, 25.061830342464766],
+ [93.04306728221081, 25.08850639853445],
+ [93.03712771228206, 25.104667989441275],
+ [92.97743260001873, 25.085638085285908],
+ [92.95901229746987, 25.090088697012717],
+ [92.95179051003379, 25.069114400659384],
+ [92.89745825288007, 25.079280204828454],
+ [92.85688937884176, 25.064839571262386],
+ [92.86339765331228, 24.97683828770316],
+ [92.8784092401251, 24.972641440603855],
+ [92.88063617269758, 24.94939414114366],
+ [92.8550828766869, 24.909201613944095],
+ [92.8645709213453, 24.897281782337735],
+ [92.81313852833667, 24.87688863968138],
+ [92.8160566561298, 24.860900690768197],
+ [92.83590207299486, 24.860027901577205],
+ [92.83020174508752, 24.842737632504637],
+ [92.87010099784506, 24.844023238541347],
+ [92.86717044455493, 24.810931415878315],
+ [92.90336010704164, 24.835307347262304],
+ [92.94905277742444, 24.844694593399886],
+ [92.95918273123544, 24.860775542501624],
+ [92.95055228841584, 24.888528579876006],
+ [92.96392601380201, 24.902883386030187],
+ [93.02445144966224, 24.917814142868494],
+ [93.03777911123728, 24.961810507974555],
+ [93.05603402945077, 24.965875880350737],
+ [93.06930751812263, 25.000667276029347],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Udarbond',
+ district_3: 'CACHAR',
+ object_id: 186,
+ district_1: 'Cachar',
+ revenue_cr: 'Udharbond',
+ area: '447088875.6',
+ are_new: 447,
+ ID_NAM: 'CACHARUdarbond',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.07588274672621, 24.7118054671338],
+ [93.03189176756253, 24.740324941139612],
+ [93.0122817506244, 24.724310143548976],
+ [93.00469045646756, 24.693597829635404],
+ [92.97389478469822, 24.706551453850754],
+ [92.94644112516185, 24.680192572401186],
+ [92.94352854895718, 24.71025246480664],
+ [92.95580351347833, 24.71840748196392],
+ [92.89990568951546, 24.733815460019073],
+ [92.91370672731263, 24.74788846928563],
+ [92.90955162027159, 24.762625234876115],
+ [92.89175645982051, 24.7577630155494],
+ [92.86885048817231, 24.77140316676498],
+ [92.85567878401208, 24.75735015341585],
+ [92.83878457989202, 24.759851535392883],
+ [92.82623575856663, 24.75062455848122],
+ [92.83117209627429, 24.707163230425344],
+ [92.84456984620445, 24.705461405060216],
+ [92.85053909467354, 24.67869674481931],
+ [92.8232748143721, 24.672925228179405],
+ [92.83308391421815, 24.611149791198677],
+ [92.80551027030253, 24.62143955347077],
+ [92.75231999465714, 24.615274652654595],
+ [92.7334982296179, 24.6067739227352],
+ [92.75164393065914, 24.584205396192893],
+ [92.76178988885526, 24.568219907936864],
+ [92.78052622860255, 24.5683185338708],
+ [92.76335590392374, 24.521235434764975],
+ [92.79926578431856, 24.41923133305943],
+ [92.82984331639085, 24.400392441941197],
+ [92.82949260062921, 24.373695630951975],
+ [92.86083887858227, 24.398601777284274],
+ [92.88358270252505, 24.402515945654816],
+ [92.90277664946798, 24.391168932669277],
+ [92.90924175988907, 24.413011961675988],
+ [92.93109770427637, 24.393111775972425],
+ [92.95106636550683, 24.40309727013069],
+ [92.95781716084953, 24.392002519518027],
+ [92.97355352639988, 24.408401981544934],
+ [92.99304624312485, 24.39898498565299],
+ [93.01294070171622, 24.41713505441447],
+ [93.01966322797527, 24.40740288895504],
+ [93.03980742630047, 24.411920643767953],
+ [93.03561866657223, 24.459858237577627],
+ [93.0462625950663, 24.473668239989042],
+ [93.03245185995564, 24.495400311090727],
+ [93.05002893910016, 24.51953719915351],
+ [93.04989126419804, 24.544310247663084],
+ [93.070705947085, 24.55815023357092],
+ [93.05807787908016, 24.573939849339425],
+ [93.10425843168031, 24.582484698809814],
+ [93.07115284187084, 24.599729216308663],
+ [93.0841083098641, 24.613704184068755],
+ [93.08308465264842, 24.649915259553428],
+ [93.1041557686164, 24.675455195770425],
+ [93.09000696422663, 24.67727629542721],
+ [93.07588274672621, 24.7118054671338],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sonai',
+ district_3: 'CACHAR',
+ object_id: 187,
+ district_1: 'Cachar',
+ revenue_cr: 'Sonai',
+ area: '999733880.6',
+ are_new: 1000,
+ ID_NAM: 'CACHARSonai',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.0992147102619, 25.000669539354426],
+ [93.06930751812263, 25.000667276029347],
+ [93.05603402945077, 24.965875880350737],
+ [93.03777911123728, 24.961810507974555],
+ [93.02445144966224, 24.917814142868494],
+ [92.96392601380201, 24.902883386030187],
+ [92.95055228841584, 24.888528579876006],
+ [92.95918273123544, 24.860775542501624],
+ [92.94905277742444, 24.844694593399886],
+ [92.90336010704164, 24.835307347262304],
+ [92.86717044455493, 24.810931415878315],
+ [92.86061991423176, 24.80296888693805],
+ [92.84593831635205, 24.81074305216327],
+ [92.83167461923414, 24.793425394532115],
+ [92.8166169641186, 24.80026686189403],
+ [92.81625811860363, 24.786094287076022],
+ [92.84297416607032, 24.783507912996303],
+ [92.83878457989202, 24.759851535392883],
+ [92.85567878401208, 24.75735015341585],
+ [92.86885048817231, 24.77140316676498],
+ [92.89175645982051, 24.7577630155494],
+ [92.90955162027159, 24.762625234876115],
+ [92.91370672731263, 24.74788846928563],
+ [92.89990568951546, 24.733815460019073],
+ [92.95580351347833, 24.71840748196392],
+ [92.94352854895718, 24.71025246480664],
+ [92.94644112516185, 24.680192572401186],
+ [92.97389478469822, 24.706551453850754],
+ [93.00469045646756, 24.693597829635404],
+ [93.0122817506244, 24.724310143548976],
+ [93.03189176756253, 24.740324941139612],
+ [93.07588274672621, 24.7118054671338],
+ [93.08652177131715, 24.70963421488743],
+ [93.10765904551086, 24.741543586369637],
+ [93.09814943409906, 24.754472034354393],
+ [93.11018354322458, 24.812664850413448],
+ [93.13846642502327, 24.81009642463785],
+ [93.14936122153519, 24.787475881866655],
+ [93.19685238649045, 24.811460882334284],
+ [93.19472560080078, 24.853951158245444],
+ [93.22634368919587, 24.872936261054463],
+ [93.23509666401691, 24.911509953133848],
+ [93.24873580923018, 24.914947760724495],
+ [93.23671400971904, 24.93726464262329],
+ [93.26290499908866, 24.9614373976323],
+ [93.24951757888597, 24.97323566406445],
+ [93.2273017846672, 24.98727346894334],
+ [93.20286685165938, 24.981679600735987],
+ [93.17971721019377, 25.00065923226943],
+ [93.0992147102619, 25.000669539354426],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Lakhipur',
+ district_3: 'CACHAR',
+ object_id: 188,
+ district_1: 'Cachar',
+ revenue_cr: 'Lakhipur',
+ area: '754436388.7',
+ are_new: 754,
+ ID_NAM: 'CACHARLakhipur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.42234585142096, 24.854031663888822],
+ [92.38590699088452, 24.85171754387331],
+ [92.37436242855459, 24.874145262746893],
+ [92.3476029520355, 24.891336276067694],
+ [92.33986270103489, 24.877967992031074],
+ [92.2994689400865, 24.915618299310108],
+ [92.23653376179854, 24.90344667603534],
+ [92.24705736275692, 24.885001145161578],
+ [92.2346945843235, 24.86158661542266],
+ [92.24136996879305, 24.84208159674275],
+ [92.24885287851589, 24.82970463896295],
+ [92.27301335284824, 24.827553746488206],
+ [92.27343232619846, 24.79937993465498],
+ [92.28862430550008, 24.781526459880606],
+ [92.3276716822804, 24.777816625455756],
+ [92.3450421201635, 24.799622630218305],
+ [92.40918411766201, 24.791895809395097],
+ [92.40660572013294, 24.808320816767615],
+ [92.4253995215157, 24.814781510320195],
+ [92.43825955967972, 24.83110435863326],
+ [92.42326233423337, 24.832660497059035],
+ [92.42234585142096, 24.854031663888822],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Karimganj',
+ district_3: 'KARIMGANJ',
+ object_id: 189,
+ district_1: 'Karimganj',
+ revenue_cr: 'Karimganj',
+ area: '178166572.6',
+ are_new: 178,
+ ID_NAM: 'KARIMGANJKarimganj',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.5797540346163, 24.873631686045027],
+ [92.55625750600875, 24.877374177163563],
+ [92.52603767320115, 24.86107126348739],
+ [92.5150433397625, 24.879516237410535],
+ [92.49236765752565, 24.87434523311097],
+ [92.44460870298755, 24.872012279729518],
+ [92.43878924320217, 24.856404982024138],
+ [92.42234585142096, 24.854031663888822],
+ [92.42326233423337, 24.832660497059035],
+ [92.43825955967972, 24.83110435863326],
+ [92.4253995215157, 24.814781510320195],
+ [92.45786512277068, 24.800075872470387],
+ [92.46034506224967, 24.783251484967064],
+ [92.5057100011657, 24.782885445377016],
+ [92.53894951810591, 24.75977314331001],
+ [92.54464874557704, 24.807583771782607],
+ [92.58289361239831, 24.844495879367006],
+ [92.5797540346163, 24.873631686045027],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Badarpur',
+ district_3: 'KARIMGANJ',
+ object_id: 190,
+ district_1: 'Karimganj',
+ revenue_cr: 'Badarpur',
+ area: '134391085.3',
+ are_new: 134,
+ ID_NAM: 'KARIMGANJBadarpur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.53894951810591, 24.75977314331001],
+ [92.5057100011657, 24.782885445377016],
+ [92.46034506224967, 24.783251484967064],
+ [92.45786512277068, 24.800075872470387],
+ [92.4253995215157, 24.814781510320195],
+ [92.40660572013294, 24.808320816767615],
+ [92.40918411766201, 24.791895809395097],
+ [92.3450421201635, 24.799622630218305],
+ [92.3276716822804, 24.777816625455756],
+ [92.28862430550008, 24.781526459880606],
+ [92.27897171283782, 24.745653940518633],
+ [92.29564042275352, 24.735290606868105],
+ [92.25477727769614, 24.677006504624025],
+ [92.38275142039552, 24.643457475523554],
+ [92.39957842693903, 24.680624714985978],
+ [92.40693189122608, 24.702851013534495],
+ [92.39120192976542, 24.714419088494395],
+ [92.39736766673663, 24.72219441256568],
+ [92.41428616130193, 24.71339379274406],
+ [92.42221657217348, 24.72549451872971],
+ [92.43671127286338, 24.71226646810269],
+ [92.45841934287678, 24.72985671443206],
+ [92.50467487875201, 24.70249785531042],
+ [92.53424687083123, 24.75483721712959],
+ [92.53894951810591, 24.75977314331001],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Nilambazar',
+ district_3: 'KARIMGANJ',
+ object_id: 191,
+ district_1: 'Karimganj',
+ revenue_cr: 'Nilambazar',
+ area: '280417099',
+ are_new: 280,
+ ID_NAM: 'KARIMGANJNilambazar',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.36852892899965, 24.25396020721507],
+ [92.37280138116964, 24.300475813115618],
+ [92.3594447632997, 24.319092756162508],
+ [92.37541356433654, 24.32479365819949],
+ [92.39213672653152, 24.49956962362591],
+ [92.37008503026067, 24.521855528898083],
+ [92.40994783118062, 24.657581596563592],
+ [92.39957842693903, 24.680624714985978],
+ [92.38275142039552, 24.643457475523554],
+ [92.25477727769614, 24.677006504624025],
+ [92.23121547121187, 24.54700029127551],
+ [92.21169868233224, 24.504481309345095],
+ [92.22976598739866, 24.502442227945476],
+ [92.23648263508247, 24.488815106074185],
+ [92.22997949807706, 24.451691476701864],
+ [92.24662051742415, 24.441955323548626],
+ [92.25983908220122, 24.35854994347347],
+ [92.20972433625472, 24.24831057185597],
+ [92.19229319202135, 24.243267844701144],
+ [92.21992383134679, 24.234332688729847],
+ [92.26651993741085, 24.251040618342625],
+ [92.36852892899965, 24.25396020721507],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Patharkandi',
+ district_3: 'KARIMGANJ',
+ object_id: 192,
+ district_1: 'Karimganj',
+ revenue_cr: 'Patherkandi',
+ area: '672170922.1',
+ are_new: 672,
+ ID_NAM: 'KARIMGANJPatharkandi',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.50467487875201, 24.70249785531042],
+ [92.45841934287678, 24.72985671443206],
+ [92.43671127286338, 24.71226646810269],
+ [92.42221657217348, 24.72549451872971],
+ [92.41428616130193, 24.71339379274406],
+ [92.39736766673663, 24.72219441256568],
+ [92.39120192976542, 24.714419088494395],
+ [92.40693189122608, 24.702851013534495],
+ [92.39957842693903, 24.680624714985978],
+ [92.40994783118062, 24.657581596563592],
+ [92.37008503026067, 24.521855528898083],
+ [92.39213672653152, 24.49956962362591],
+ [92.37541356433654, 24.32479365819949],
+ [92.3594447632997, 24.319092756162508],
+ [92.37280138116964, 24.300475813115618],
+ [92.36852892899965, 24.25396020721507],
+ [92.42243290805344, 24.254958510347983],
+ [92.46373071913072, 24.30061192352183],
+ [92.4914309141103, 24.36898749042007],
+ [92.50729596332509, 24.51321304575555],
+ [92.5172064542206, 24.57398627418797],
+ [92.50457297027292, 24.589577593719454],
+ [92.50703687572239, 24.62892868225867],
+ [92.50636156720759, 24.663977528135813],
+ [92.49339040115471, 24.67455942230858],
+ [92.50467487875201, 24.70249785531042],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Ramkrishna\nNagar',
+ district_3: 'KARIMGANJ',
+ object_id: 193,
+ district_1: 'Karimganj',
+ revenue_cr: 'RK Nagar',
+ area: '575000985.9',
+ are_new: 575,
+ ID_NAM: 'KARIMGANJRamkrishna\nNagar',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.63016810370704, 24.848309185970233],
+ [92.64716303771652, 24.851266328689537],
+ [92.60958430222114, 24.862398491562633],
+ [92.59726167578596, 24.87909806393432],
+ [92.5797540346163, 24.873631686045027],
+ [92.58289361239831, 24.844495879367006],
+ [92.54464874557704, 24.807583771782607],
+ [92.53894951810591, 24.75977314331001],
+ [92.53424687083123, 24.75483721712959],
+ [92.5361295321559, 24.73202397245789],
+ [92.56355763462244, 24.743928202275494],
+ [92.59710029254686, 24.713478340884993],
+ [92.61934494694074, 24.715303843061932],
+ [92.63945347136938, 24.72599199039618],
+ [92.63906895649518, 24.739917612200507],
+ [92.65477131452377, 24.740828895052246],
+ [92.68373813585059, 24.814545136680835],
+ [92.64591474149266, 24.815236610006572],
+ [92.63016810370704, 24.848309185970233],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Algapur',
+ district_3: 'HAILAKANDI',
+ object_id: 194,
+ district_1: 'Hailakandi',
+ revenue_cr: 'Algapur',
+ area: '156280173',
+ are_new: 156,
+ ID_NAM: 'HAILAKANDIAlgapur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.53424687083123, 24.75483721712959],
+ [92.50467487875201, 24.70249785531042],
+ [92.49339040115471, 24.67455942230858],
+ [92.50636156720759, 24.663977528135813],
+ [92.50703687572239, 24.62892868225867],
+ [92.52749906508177, 24.625509177812397],
+ [92.52671142224067, 24.64454189617547],
+ [92.55487771080034, 24.660182792462955],
+ [92.59077639639011, 24.658204647137968],
+ [92.58386629920479, 24.645935293455764],
+ [92.60250262501995, 24.62297394416248],
+ [92.62949117822468, 24.636106636331192],
+ [92.66546022076581, 24.62761692111908],
+ [92.66508552178271, 24.673568591676865],
+ [92.65024326829928, 24.684549813865456],
+ [92.65477131452377, 24.740828895052246],
+ [92.63906895649518, 24.739917612200507],
+ [92.63945347136938, 24.72599199039618],
+ [92.61934494694074, 24.715303843061932],
+ [92.59710029254686, 24.713478340884993],
+ [92.56355763462244, 24.743928202275494],
+ [92.5361295321559, 24.73202397245789],
+ [92.53424687083123, 24.75483721712959],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Hailakandi',
+ district_3: 'HAILAKANDI',
+ object_id: 195,
+ district_1: 'Hailakandi',
+ revenue_cr: 'Hailakandi',
+ area: '160989094.7',
+ are_new: 161,
+ ID_NAM: 'HAILAKANDIHailakandi',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.66546022076581, 24.62761692111908],
+ [92.62949117822468, 24.636106636331192],
+ [92.60250262501995, 24.62297394416248],
+ [92.58386629920479, 24.645935293455764],
+ [92.59077639639011, 24.658204647137968],
+ [92.55487771080034, 24.660182792462955],
+ [92.52671142224067, 24.64454189617547],
+ [92.52749906508177, 24.625509177812397],
+ [92.50703687572239, 24.62892868225867],
+ [92.50457297027292, 24.589577593719454],
+ [92.5172064542206, 24.57398627418797],
+ [92.50729596332509, 24.51321304575555],
+ [92.53283818759989, 24.51842161449819],
+ [92.54078236245819, 24.505017201682477],
+ [92.54442301062423, 24.53074763611701],
+ [92.57571222040394, 24.522071003941505],
+ [92.57135821647753, 24.51428994133113],
+ [92.60999147799672, 24.514682394299804],
+ [92.62827243387873, 24.55198226587648],
+ [92.64319203140981, 24.533490441340092],
+ [92.67346627607247, 24.54151782711502],
+ [92.7521067471851, 24.505277337167346],
+ [92.76335590392374, 24.521235434764975],
+ [92.78052622860255, 24.5683185338708],
+ [92.76178988885526, 24.568219907936864],
+ [92.75164393065914, 24.584205396192893],
+ [92.7352774445477, 24.590335673582004],
+ [92.71835749111838, 24.561899728876096],
+ [92.7015692010653, 24.566057613748796],
+ [92.66719658875154, 24.594274942734156],
+ [92.66638241686344, 24.609704119194433],
+ [92.69571124397841, 24.61875280607475],
+ [92.66546022076581, 24.62761692111908],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Lala',
+ district_3: 'HAILAKANDI',
+ object_id: 196,
+ district_1: 'Hailakandi',
+ revenue_cr: 'Lala',
+ area: '270081600.3',
+ are_new: 270,
+ ID_NAM: 'HAILAKANDILala',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.7521067471851, 24.505277337167346],
+ [92.67346627607247, 24.54151782711502],
+ [92.64319203140981, 24.533490441340092],
+ [92.62827243387873, 24.55198226587648],
+ [92.60999147799672, 24.514682394299804],
+ [92.57135821647753, 24.51428994133113],
+ [92.57571222040394, 24.522071003941505],
+ [92.54442301062423, 24.53074763611701],
+ [92.54078236245819, 24.505017201682477],
+ [92.53283818759989, 24.51842161449819],
+ [92.50729596332509, 24.51321304575555],
+ [92.4914309141103, 24.36898749042007],
+ [92.46373071913072, 24.30061192352183],
+ [92.42243290805344, 24.254958510347983],
+ [92.41906711382164, 24.19204140484268],
+ [92.4356259355236, 24.179395720796567],
+ [92.4363215603369, 24.15313582386648],
+ [92.46537553980583, 24.136368814368137],
+ [92.48382085684213, 24.163270964845964],
+ [92.50140623102997, 24.160490703577356],
+ [92.51541425324501, 24.17895806813277],
+ [92.52393781091887, 24.17154246999525],
+ [92.53411109137436, 24.18024950323598],
+ [92.55079536460238, 24.247325060330713],
+ [92.61220191660226, 24.25357050340129],
+ [92.6246695248361, 24.33417789268783],
+ [92.64566361745497, 24.327884376493813],
+ [92.66126692185048, 24.348258446238408],
+ [92.68473480677686, 24.346639422753285],
+ [92.7521067471851, 24.505277337167346],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Katlichara',
+ district_3: 'HAILAKANDI',
+ object_id: 197,
+ district_1: 'Hailakandi',
+ revenue_cr: 'Katlicherra',
+ area: '741771269.3',
+ are_new: 742,
+ ID_NAM: 'HAILAKANDIKatlichara',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.62409364263436, 26.493914850824865],
+ [90.62360756872572, 26.50778360036034],
+ [90.60116958340794, 26.51636140435214],
+ [90.58895095852648, 26.51161881133372],
+ [90.60097284966578, 26.49061078929643],
+ [90.5429175391901, 26.500527641976344],
+ [90.53522191469617, 26.502133821645447],
+ [90.49734189683092, 26.379741509454536],
+ [90.55929620016859, 26.377000431443506],
+ [90.55828221241859, 26.34472286897324],
+ [90.59201560513571, 26.307998225030513],
+ [90.59525038098164, 26.322325934077412],
+ [90.61086507062505, 26.31835395982639],
+ [90.62326582264218, 26.330662063632392],
+ [90.60365820510418, 26.355757457085513],
+ [90.58366123346752, 26.347505132074616],
+ [90.59596121337438, 26.400651344768715],
+ [90.62844628291819, 26.39247580169913],
+ [90.65385574966874, 26.42928247693679],
+ [90.64132719972602, 26.45576437717542],
+ [90.62409364263436, 26.493914850824865],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bongaigaon\n(Pt)',
+ district_3: 'BONGAIGAON',
+ object_id: 198,
+ district_1: 'Bongaigaon',
+ revenue_cr: 'Bongaigaon\n(Pt)',
+ area: '189396060.5',
+ are_new: 189,
+ ID_NAM: 'BONGAIGAONBongaigaon\n(Pt)',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.62326582264218, 26.330662063632392],
+ [90.61086507062505, 26.31835395982639],
+ [90.59525038098164, 26.322325934077412],
+ [90.59201560513571, 26.307998225030513],
+ [90.55828221241859, 26.34472286897324],
+ [90.55929620016859, 26.377000431443506],
+ [90.49734189683092, 26.379741509454536],
+ [90.47294229725816, 26.372572541275005],
+ [90.45390985752185, 26.349730151864772],
+ [90.46241825792188, 26.32826848143998],
+ [90.47415185094043, 26.3326055426293],
+ [90.46584855298771, 26.32526817989973],
+ [90.48359218068424, 26.296056654161244],
+ [90.46390913161181, 26.28977277916436],
+ [90.46599584076172, 26.276213078872633],
+ [90.45523717674462, 26.285225041234423],
+ [90.47319509755212, 26.270761984055348],
+ [90.44487270515229, 26.267487538694297],
+ [90.45032461205264, 26.250799052346597],
+ [90.43192858288106, 26.260776816045755],
+ [90.44107450865509, 26.235048268798963],
+ [90.39016840533375, 26.20402451189191],
+ [90.39114440782197, 26.19147836321792],
+ [90.43023000522271, 26.192131401364954],
+ [90.44842997708353, 26.184041460125627],
+ [90.44477461541148, 26.16572309783875],
+ [90.4700242979241, 26.178229801493412],
+ [90.46927861628824, 26.168240320321132],
+ [90.51685902168046, 26.198390790472835],
+ [90.60474712223032, 26.21357664073773],
+ [90.63822125217331, 26.225976144630888],
+ [90.59784717870266, 26.254965304479715],
+ [90.59949180713834, 26.273943380614234],
+ [90.6184054788143, 26.281174076063945],
+ [90.62326582264218, 26.330662063632392],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Boitamari',
+ district_3: 'BONGAIGAON',
+ object_id: 199,
+ district_1: 'Bongaigaon',
+ revenue_cr: 'Boitamari',
+ area: '297089853',
+ are_new: 297,
+ ID_NAM: 'BONGAIGAONBoitamari',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.84496410408536, 26.403304597629205],
+ [90.82475095736717, 26.396361223070944],
+ [90.8004977472531, 26.415688621940024],
+ [90.75562306929328, 26.382119055677677],
+ [90.75959939811806, 26.40449682095864],
+ [90.74061537577892, 26.403815005551156],
+ [90.75439253545751, 26.42173321990729],
+ [90.73698131226391, 26.403230085223402],
+ [90.73065702623835, 26.413609380025843],
+ [90.71065576334958, 26.406644155845147],
+ [90.71266100608295, 26.426689027163206],
+ [90.69634719987475, 26.41149412190319],
+ [90.69696724762655, 26.428182184840416],
+ [90.66730134656585, 26.43081416637078],
+ [90.68795130268424, 26.447125372269163],
+ [90.64132719972602, 26.45576437717542],
+ [90.65385574966874, 26.42928247693679],
+ [90.62844628291819, 26.39247580169913],
+ [90.59596121337438, 26.400651344768715],
+ [90.58366123346752, 26.347505132074616],
+ [90.60365820510418, 26.355757457085513],
+ [90.62326582264218, 26.330662063632392],
+ [90.6184054788143, 26.281174076063945],
+ [90.59949180713834, 26.273943380614234],
+ [90.59784717870266, 26.254965304479715],
+ [90.63822125217331, 26.225976144630888],
+ [90.60474712223032, 26.21357664073773],
+ [90.6224089807781, 26.202049451089223],
+ [90.64037412044723, 26.20868744049815],
+ [90.66893873997022, 26.20136271924837],
+ [90.65333357067217, 26.237371158142075],
+ [90.66044355288967, 26.24676328899694],
+ [90.71734107150807, 26.263678692663966],
+ [90.73330289173681, 26.257781266735304],
+ [90.72036408210218, 26.282487066983972],
+ [90.7515285859575, 26.309637804985915],
+ [90.80428732172021, 26.307069305552186],
+ [90.78947424192393, 26.329405053517597],
+ [90.81792188193228, 26.366867802063435],
+ [90.85895050924141, 26.361674649612254],
+ [90.84496410408536, 26.403304597629205],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Srijangram',
+ district_3: 'BONGAIGAON',
+ object_id: 200,
+ district_1: 'Bongaigaon',
+ revenue_cr: 'Srijangram',
+ area: '347583760.8',
+ are_new: 348,
+ ID_NAM: 'BONGAIGAONSrijangram',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.53522191469617, 26.502133821645447],
+ [90.51963781538312, 26.509256235707145],
+ [90.51014878347618, 26.500530154256072],
+ [90.49824623531902, 26.45948410885487],
+ [90.5097954724817, 26.44891742452575],
+ [90.50416352433379, 26.426274476385487],
+ [90.48093208138006, 26.420607990656112],
+ [90.47752635972883, 26.385992550998914],
+ [90.4562595691324, 26.432692200065183],
+ [90.47712769998216, 26.46264155123829],
+ [90.46323320595441, 26.46470366492033],
+ [90.4598252663627, 26.45302003202647],
+ [90.43722893321319, 26.461075837635374],
+ [90.41671997486516, 26.44791346966373],
+ [90.40393125215496, 26.44214277051467],
+ [90.39778639742083, 26.434547305378644],
+ [90.4156351693281, 26.42908151150978],
+ [90.40359884765205, 26.406701878385082],
+ [90.41695433633966, 26.40776487729925],
+ [90.42089273200494, 26.379607792362393],
+ [90.43364839132282, 26.376608963935944],
+ [90.42643694080074, 26.367436307174632],
+ [90.43730823558816, 26.364875631331227],
+ [90.42500503701763, 26.363027777589576],
+ [90.43411737657982, 26.34266961823437],
+ [90.43738328623687, 26.359647423986736],
+ [90.44521205003905, 26.34594812422486],
+ [90.45709275116853, 26.357475320177166],
+ [90.45390985752185, 26.349730151864772],
+ [90.47294229725816, 26.372572541275005],
+ [90.49734189683092, 26.379741509454536],
+ [90.53522191469617, 26.502133821645447],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sidli (Pt-II)',
+ district_3: 'BONGAIGAON',
+ object_id: 201,
+ district_1: 'Bongaigaon',
+ revenue_cr: 'Sidli (Pt-II)',
+ area: '85041947.25',
+ are_new: 85,
+ ID_NAM: 'BONGAIGAONSidli (Pt-II)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.85160956836776, 26.52733578583181],
+ [90.78758576221115, 26.517570959477034],
+ [90.77468778010784, 26.53054145112441],
+ [90.75752585377866, 26.51469733401075],
+ [90.77747231943509, 26.504853101760055],
+ [90.76634571625739, 26.48555035314562],
+ [90.73107751863965, 26.482910428261743],
+ [90.74478548738017, 26.465632853347653],
+ [90.73573475158517, 26.44185577125526],
+ [90.71015729538493, 26.45161423528474],
+ [90.71704283173204, 26.479221355857057],
+ [90.68568284369111, 26.48180893747805],
+ [90.68233874557004, 26.499085327084046],
+ [90.62409364263436, 26.493914850824865],
+ [90.64132719972602, 26.45576437717542],
+ [90.68795130268424, 26.447125372269163],
+ [90.66730134656585, 26.43081416637078],
+ [90.69696724762655, 26.428182184840416],
+ [90.69634719987475, 26.41149412190319],
+ [90.71266100608295, 26.426689027163206],
+ [90.71065576334958, 26.406644155845147],
+ [90.73065702623835, 26.413609380025843],
+ [90.73698131226391, 26.403230085223402],
+ [90.75439253545751, 26.42173321990729],
+ [90.74061537577892, 26.403815005551156],
+ [90.75959939811806, 26.40449682095864],
+ [90.75562306929328, 26.382119055677677],
+ [90.8004977472531, 26.415688621940024],
+ [90.82475095736717, 26.396361223070944],
+ [90.84496410408536, 26.403304597629205],
+ [90.85155296821665, 26.41462043441125],
+ [90.86164073983684, 26.4310748887692],
+ [90.84977897429526, 26.442369863740048],
+ [90.81282401995001, 26.428195213468964],
+ [90.79707005640329, 26.43563850268989],
+ [90.82767095006282, 26.448758407385153],
+ [90.81847767229353, 26.47569707072405],
+ [90.80386788304268, 26.477874806719253],
+ [90.8049322599919, 26.49675122148069],
+ [90.84211539450413, 26.499605780332846],
+ [90.85160956836776, 26.52733578583181],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Manikpur',
+ district_3: 'BONGAIGAON',
+ object_id: 202,
+ district_1: 'Bongaigaon',
+ revenue_cr: 'Manikpur',
+ area: '169010249.7',
+ are_new: 169,
+ ID_NAM: 'BONGAIGAONManikpur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.40164976938682, 26.49056884225476],
+ [90.38628568904645, 26.4852550301729],
+ [90.40508978512234, 26.475280377279088],
+ [90.40393125215496, 26.44214277051467],
+ [90.41671997486516, 26.44791346966373],
+ [90.41489076150327, 26.45773075244303],
+ [90.4456407296859, 26.468058519825135],
+ [90.42349586284872, 26.481596310736087],
+ [90.4048028802886, 26.47699512311117],
+ [90.40164976938682, 26.49056884225476],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Kokrajhar (Pt)',
+ district_3: 'CHIRANG',
+ object_id: 203,
+ district_1: 'Chirang',
+ revenue_cr: 'Kokrajhar (Pt)',
+ area: '12538462.77',
+ are_new: 13,
+ ID_NAM: 'CHIRANGKokrajhar (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.90101932097089, 26.638841035039924],
+ [90.84893480137164, 26.64133705252599],
+ [90.84228073302546, 26.628436928229306],
+ [90.86328682264495, 26.622188923850253],
+ [90.8434381682516, 26.60845592634615],
+ [90.86176294125823, 26.599543654581108],
+ [90.84656029985246, 26.571988042977253],
+ [90.81814581666124, 26.569095921682376],
+ [90.8231550930784, 26.560902190630586],
+ [90.87635361615642, 26.56328814922648],
+ [90.86999988335583, 26.57976962374883],
+ [90.90099906665615, 26.599247314873267],
+ [90.90101932097089, 26.638841035039924],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Barnagar (Pt)',
+ district_3: 'CHIRANG',
+ object_id: 204,
+ district_1: 'Chirang',
+ revenue_cr: 'Barnagar (Pt)',
+ area: '34321102.47',
+ are_new: 34,
+ ID_NAM: 'CHIRANGBarnagar (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.6950957604457, 26.770557917165007],
+ [90.6757919190008, 26.784429184049305],
+ [90.64638157157046, 26.77681026156228],
+ [90.63420624997725, 26.79413582781737],
+ [90.54638448551951, 26.81683569704217],
+ [90.41753437762029, 26.904594528993666],
+ [90.35566535674246, 26.900804704691573],
+ [90.33640989227058, 26.86900109814437],
+ [90.37705506920908, 26.71760109460609],
+ [90.34693539675904, 26.641460283182063],
+ [90.3615654591892, 26.595861598595977],
+ [90.39324826042075, 26.602719423423245],
+ [90.39702612444978, 26.587052038846327],
+ [90.4254839477602, 26.580324096948953],
+ [90.45876267077269, 26.592243611594036],
+ [90.48813705325233, 26.569805161102117],
+ [90.50294406582715, 26.573607824674582],
+ [90.50411839207558, 26.588677073217916],
+ [90.52355202390936, 26.573533465940308],
+ [90.53023453291743, 26.58619134378691],
+ [90.5571776313688, 26.577392390157893],
+ [90.55911754681814, 26.67612333354614],
+ [90.57496289687705, 26.675452183510345],
+ [90.5831194550281, 26.736112731687914],
+ [90.6950957604457, 26.770557917165007],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bengtal',
+ district_3: 'CHIRANG',
+ object_id: 205,
+ district_1: 'Chirang',
+ revenue_cr: 'Bengtal',
+ area: '715955682.4',
+ are_new: 716,
+ ID_NAM: 'CHIRANGBengtal',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.5571776313688, 26.577392390157893],
+ [90.53023453291743, 26.58619134378691],
+ [90.52355202390936, 26.573533465940308],
+ [90.50411839207558, 26.588677073217916],
+ [90.50294406582715, 26.573607824674582],
+ [90.48813705325233, 26.569805161102117],
+ [90.45876267077269, 26.592243611594036],
+ [90.4254839477602, 26.580324096948953],
+ [90.39702612444978, 26.587052038846327],
+ [90.39324826042075, 26.602719423423245],
+ [90.3615654591892, 26.595861598595977],
+ [90.35501713423007, 26.56996083555663],
+ [90.37137578972717, 26.544397169269853],
+ [90.38875244125705, 26.542004656815823],
+ [90.3812992289392, 26.53113728216301],
+ [90.40363992042349, 26.51177970378984],
+ [90.39327488289248, 26.503173071860417],
+ [90.40791065860789, 26.50313398168063],
+ [90.40164976938682, 26.49056884225476],
+ [90.4048028802886, 26.47699512311117],
+ [90.42349586284872, 26.481596310736087],
+ [90.4456407296859, 26.468058519825135],
+ [90.41489076150327, 26.45773075244303],
+ [90.41671997486516, 26.44791346966373],
+ [90.43722893321319, 26.461075837635374],
+ [90.4598252663627, 26.45302003202647],
+ [90.46323320595441, 26.46470366492033],
+ [90.47712769998216, 26.46264155123829],
+ [90.4562595691324, 26.432692200065183],
+ [90.47752635972883, 26.385992550998914],
+ [90.48093208138006, 26.420607990656112],
+ [90.50416352433379, 26.426274476385487],
+ [90.5097954724817, 26.44891742452575],
+ [90.49824623531902, 26.45948410885487],
+ [90.51014878347618, 26.500530154256072],
+ [90.51963781538312, 26.509256235707145],
+ [90.53522191469617, 26.502133821645447],
+ [90.5429175391901, 26.500527641976344],
+ [90.5571776313688, 26.577392390157893],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sidli (Pt)',
+ district_3: 'CHIRANG',
+ object_id: 206,
+ district_1: 'Chirang',
+ revenue_cr: 'Sidli (Pt)',
+ area: '228893704.6',
+ are_new: 229,
+ ID_NAM: 'CHIRANGSidli (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.95713775589617, 26.78168434571891],
+ [90.6950957604457, 26.770557917165007],
+ [90.5831194550281, 26.736112731687914],
+ [90.57496289687705, 26.675452183510345],
+ [90.55911754681814, 26.67612333354614],
+ [90.5571776313688, 26.577392390157893],
+ [90.5429175391901, 26.500527641976344],
+ [90.60097284966578, 26.49061078929643],
+ [90.58895095852648, 26.51161881133372],
+ [90.60116958340794, 26.51636140435214],
+ [90.62360756872572, 26.50778360036034],
+ [90.62409364263436, 26.493914850824865],
+ [90.68233874557004, 26.499085327084046],
+ [90.68568284369111, 26.48180893747805],
+ [90.71704283173204, 26.479221355857057],
+ [90.71015729538493, 26.45161423528474],
+ [90.73573475158517, 26.44185577125526],
+ [90.74478548738017, 26.465632853347653],
+ [90.73107751863965, 26.482910428261743],
+ [90.76634571625739, 26.48555035314562],
+ [90.77747231943509, 26.504853101760055],
+ [90.75752585377866, 26.51469733401075],
+ [90.77468778010784, 26.53054145112441],
+ [90.78758576221115, 26.517570959477034],
+ [90.85160956836776, 26.52733578583181],
+ [90.8231550930784, 26.560902190630586],
+ [90.81814581666124, 26.569095921682376],
+ [90.84656029985246, 26.571988042977253],
+ [90.86176294125823, 26.599543654581108],
+ [90.8434381682516, 26.60845592634615],
+ [90.86328682264495, 26.622188923850253],
+ [90.84228073302546, 26.628436928229306],
+ [90.84893480137164, 26.64133705252599],
+ [90.90101932097089, 26.638841035039924],
+ [90.8989164798751, 26.68884737936943],
+ [90.94027519044045, 26.771235879592233],
+ [90.95713775589617, 26.78168434571891],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bijni (Pt)',
+ district_3: 'CHIRANG',
+ object_id: 207,
+ district_1: 'Chirang',
+ revenue_cr: 'Bijni (Pt)',
+ area: '934195919.7',
+ are_new: 934,
+ ID_NAM: 'CHIRANGBijni (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.61433942631938, 26.512768845966924],
+ [91.58960233777921, 26.514492577333343],
+ [91.57811019663768, 26.528932899874107],
+ [91.55616376764672, 26.525191947480103],
+ [91.56206518792202, 26.48364099629563],
+ [91.54963231304865, 26.469518715706045],
+ [91.56445731887862, 26.433909904519926],
+ [91.55470507161029, 26.4205856701386],
+ [91.57614989751625, 26.40556428556146],
+ [91.59215848853026, 26.410692596030426],
+ [91.59980669724857, 26.386132296161787],
+ [91.60117417565611, 26.371173132888018],
+ [91.57401360675254, 26.358295376899356],
+ [91.5748857801636, 26.330284484516074],
+ [91.59722346588494, 26.32158989474442],
+ [91.61432146989517, 26.34265464707516],
+ [91.60483927506587, 26.36199115058571],
+ [91.6315196899585, 26.36711562215092],
+ [91.65212604095463, 26.40401134186983],
+ [91.66789855201706, 26.398411496468842],
+ [91.66065456990526, 26.36175027383169],
+ [91.69488734147873, 26.357191145705343],
+ [91.69607161477228, 26.38446110096124],
+ [91.72326977637388, 26.382184075934752],
+ [91.71917845151464, 26.410144060630042],
+ [91.71301034119446, 26.456954723818633],
+ [91.68757147348296, 26.459889006196153],
+ [91.67671346927017, 26.448434642657652],
+ [91.62442975364657, 26.44762037049803],
+ [91.629267407827, 26.464858553902435],
+ [91.618015879536, 26.468746987545636],
+ [91.62946064891932, 26.48674734168693],
+ [91.61461925961521, 26.487632445374704],
+ [91.61747602349129, 26.51271744496313],
+ [91.61433942631938, 26.512768845966924],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Rangia\n(Pt)',
+ district_3: 'KAMRUP',
+ object_id: 208,
+ district_1: 'Kamrup',
+ revenue_cr: 'Rangia\n(Pt)',
+ area: '186407362.6',
+ are_new: 186,
+ ID_NAM: 'KAMRUPRangia\n(Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.5748857801636, 26.330284484516074],
+ [91.57401360675254, 26.358295376899356],
+ [91.60117417565611, 26.371173132888018],
+ [91.59980669724857, 26.386132296161787],
+ [91.59215848853026, 26.410692596030426],
+ [91.57614989751625, 26.40556428556146],
+ [91.55470507161029, 26.4205856701386],
+ [91.54852688039598, 26.41144263864634],
+ [91.52869513588954, 26.392714551198168],
+ [91.53645917248222, 26.376450366986756],
+ [91.51957399553251, 26.354772337841176],
+ [91.52482098324182, 26.336584539373423],
+ [91.55379210121063, 26.32503987886674],
+ [91.5748857801636, 26.330284484516074],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Koya',
+ district_3: 'KAMRUP',
+ object_id: 209,
+ district_1: 'Kamrup',
+ revenue_cr: 'Kayan',
+ area: '53612722.14',
+ are_new: 54,
+ ID_NAM: 'KAMRUPKoya',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.78210376630078, 26.41519542627178],
+ [91.75458138025527, 26.400139846259524],
+ [91.71917845151464, 26.410144060630042],
+ [91.72326977637388, 26.382184075934752],
+ [91.69607161477228, 26.38446110096124],
+ [91.69488734147873, 26.357191145705343],
+ [91.66065456990526, 26.36175027383169],
+ [91.66789855201706, 26.398411496468842],
+ [91.65212604095463, 26.40401134186983],
+ [91.6315196899585, 26.36711562215092],
+ [91.60483927506587, 26.36199115058571],
+ [91.61432146989517, 26.34265464707516],
+ [91.59722346588494, 26.32158989474442],
+ [91.61489123355064, 26.300748761154452],
+ [91.61408019498626, 26.26829597616971],
+ [91.64220491220954, 26.25427560848097],
+ [91.66454855286291, 26.280733543559375],
+ [91.67945345665088, 26.268356852995314],
+ [91.69762588347017, 26.27847277463041],
+ [91.7229372784462, 26.25136887401086],
+ [91.74198241497074, 26.28858135832664],
+ [91.78292489114916, 26.29904756901669],
+ [91.79279810106208, 26.321414237103888],
+ [91.81407166226079, 26.311040426614607],
+ [91.80852213184525, 26.32251456244587],
+ [91.82172380919326, 26.33179871124076],
+ [91.82150564524171, 26.372171554582508],
+ [91.7946566740624, 26.403395042833544],
+ [91.78210376630078, 26.41519542627178],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Kamalpur',
+ district_3: 'KAMRUP',
+ object_id: 210,
+ district_1: 'Kamrup',
+ revenue_cr: 'Kamalpur',
+ area: '250170012.1',
+ are_new: 250,
+ ID_NAM: 'KAMRUPKamalpur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.5748857801636, 26.330284484516074],
+ [91.55379210121063, 26.32503987886674],
+ [91.52482098324182, 26.336584539373423],
+ [91.45526711765348, 26.32053871554579],
+ [91.45139068957313, 26.26961220283962],
+ [91.41247532022378, 26.26497024549809],
+ [91.42228559237127, 26.232358372959478],
+ [91.41386488191596, 26.136041105250175],
+ [91.47117062913546, 26.1543511841794],
+ [91.5177296787957, 26.13870887500188],
+ [91.56192360714503, 26.14182417049682],
+ [91.56368907605436, 26.147484454757567],
+ [91.56476603301084, 26.149288238164672],
+ [91.57913397961754, 26.15245938616529],
+ [91.60436858031485, 26.15470229890954],
+ [91.64089705139412, 26.164928269028994],
+ [91.64827052206087, 26.165111718831714],
+ [91.64900405667747, 26.16563173103004],
+ [91.65735351635766, 26.182264326802134],
+ [91.64349852754117, 26.195526923398365],
+ [91.66669141210795, 26.218635908558156],
+ [91.6634604675767, 26.24024008443261],
+ [91.64220491220954, 26.25427560848097],
+ [91.61408019498626, 26.26829597616971],
+ [91.61489123355064, 26.300748761154452],
+ [91.59722346588494, 26.32158989474442],
+ [91.5748857801636, 26.330284484516074],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Hajo',
+ district_3: 'KAMRUP',
+ object_id: 211,
+ district_1: 'Kamrup',
+ revenue_cr: 'Hajo',
+ area: '412841145.7',
+ are_new: 413,
+ ID_NAM: 'KAMRUPHajo',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.42810114718009, 25.98930985358987],
+ [91.42504438328749, 26.021863008074995],
+ [91.44748478776833, 26.05692781577011],
+ [91.42972965894123, 26.072277918826213],
+ [91.40499025634088, 26.065239620014598],
+ [91.3961897696245, 26.089417288591505],
+ [91.37150636440573, 26.085670175123745],
+ [91.37526576176747, 26.071127633385295],
+ [91.33419023790893, 26.081252704672018],
+ [91.30500415848252, 26.05799808123844],
+ [91.29988557146832, 26.077689561593846],
+ [91.27263478835404, 26.062930908180505],
+ [91.22408186683522, 26.064140614683595],
+ [91.22015294300631, 26.050045326722447],
+ [91.2209096631404, 26.022699821539153],
+ [91.24218022037283, 26.02170703110601],
+ [91.25479055024404, 26.000399532778545],
+ [91.28480425832149, 25.99759247946491],
+ [91.25204991787298, 25.93549437068027],
+ [91.24152819888506, 25.928991497248653],
+ [91.2390378218808, 25.93778537574956],
+ [91.24349286202218, 25.91666125247391],
+ [91.22759544201612, 25.89992630551851],
+ [91.26650339397617, 25.80674819890546],
+ [91.26445726891417, 25.745949444677258],
+ [91.33498358235715, 25.84036884942386],
+ [91.35873127542654, 25.84117829673861],
+ [91.35873130417264, 25.84117835009888],
+ [91.3609106350182, 25.845627287134334],
+ [91.3616405350512, 25.849369866109882],
+ [91.36408191165165, 25.852342670237785],
+ [91.3699821066249, 25.854571653761603],
+ [91.37292510517497, 25.855077572807563],
+ [91.37873215383637, 25.857636051191804],
+ [91.38305894869114, 25.86226998700948],
+ [91.38417553302975, 25.86387376195692],
+ [91.38858255013432, 25.865354099546707],
+ [91.39049087722499, 25.867247073230242],
+ [91.39068926835887, 25.868248860944238],
+ [91.38950834398464, 25.87043380398831],
+ [91.38508906128321, 25.875235007823694],
+ [91.38374162069636, 25.877989443548163],
+ [91.3868298840144, 25.882943467424624],
+ [91.39092340705115, 25.887790986525744],
+ [91.39193056041847, 25.890554728611946],
+ [91.39298419980508, 25.895034847834463],
+ [91.39503999343448, 25.89937585475986],
+ [91.39578140717445, 25.90037067091855],
+ [91.40017374940055, 25.90980921263202],
+ [91.40019122612442, 25.919302742286256],
+ [91.40250956048041, 25.922951452516234],
+ [91.41056738120533, 25.93929750047796],
+ [91.41224828181552, 25.950761005817416],
+ [91.41382732964216, 25.960268663385197],
+ [91.4145148992623, 25.962677106009547],
+ [91.41636474512966, 25.964705129242326],
+ [91.42338455535723, 25.97633584711946],
+ [91.42494346565014, 25.981171893639708],
+ [91.4272114674008, 25.987037716381167],
+ [91.42810114718009, 25.98930985358987],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Chhaygaon',
+ district_3: 'KAMRUP',
+ object_id: 212,
+ district_1: 'Kamrup',
+ revenue_cr: 'Chhaygaon',
+ area: '470741379.3',
+ are_new: 471,
+ ID_NAM: 'KAMRUPChhaygaon',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.22210213805252, 26.179396358129598],
+ [91.22004828119088, 26.179533712181893],
+ [91.19904187266947, 26.1351860536081],
+ [91.18286153185794, 26.127657930520385],
+ [91.17074466723352, 26.137729947820922],
+ [91.14398357015365, 26.12713493110999],
+ [91.14209973562922, 26.114091209149006],
+ [91.17014501483192, 26.113463069994115],
+ [91.15676621396437, 26.098225378655204],
+ [91.17746156285236, 26.062382352234735],
+ [91.20647103259562, 26.058391618034886],
+ [91.21339687455288, 26.074239438448586],
+ [91.22408186683522, 26.064140614683595],
+ [91.27263478835404, 26.062930908180505],
+ [91.29988557146832, 26.077689561593846],
+ [91.30500415848252, 26.05799808123844],
+ [91.33419023790893, 26.081252704672018],
+ [91.37526576176747, 26.071127633385295],
+ [91.37150636440573, 26.085670175123745],
+ [91.31806762283755, 26.120011447184552],
+ [91.31999833594512, 26.13480305760466],
+ [91.33884908692366, 26.139856790183696],
+ [91.32263599892674, 26.160443659596652],
+ [91.25568671855464, 26.163081418297427],
+ [91.22210213805252, 26.179396358129598],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Goroimari',
+ district_3: 'KAMRUP',
+ object_id: 213,
+ district_1: 'Kamrup',
+ revenue_cr: 'Goroimari',
+ area: '176568213.2',
+ are_new: 177,
+ ID_NAM: 'KAMRUPGoroimari',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.22004828119088, 26.179533712181893],
+ [91.11699313408008, 26.15468248888887],
+ [91.0813764179799, 26.161775959363926],
+ [91.08574886431911, 26.14289717533394],
+ [91.07316270451891, 26.128714576363368],
+ [91.08292350913862, 26.10693436506869],
+ [91.10334793242512, 26.10951451128873],
+ [91.09527687771948, 26.08153817683078],
+ [91.11264826871508, 26.07169692865275],
+ [91.09732344475259, 26.02814911342608],
+ [91.11764472796975, 26.02182189562718],
+ [91.13953814647743, 26.03318322527618],
+ [91.17934775365782, 26.016949210150724],
+ [91.17952836533557, 26.04740118158302],
+ [91.22015294300631, 26.050045326722447],
+ [91.22408186683522, 26.064140614683595],
+ [91.21339687455288, 26.074239438448586],
+ [91.20647103259562, 26.058391618034886],
+ [91.17746156285236, 26.062382352234735],
+ [91.15676621396437, 26.098225378655204],
+ [91.17014501483192, 26.113463069994115],
+ [91.14209973562922, 26.114091209149006],
+ [91.14398357015365, 26.12713493110999],
+ [91.17074466723352, 26.137729947820922],
+ [91.18286153185794, 26.127657930520385],
+ [91.19904187266947, 26.1351860536081],
+ [91.22004828119088, 26.179533712181893],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Chamaria',
+ district_3: 'KAMRUP',
+ object_id: 214,
+ district_1: 'Kamrup',
+ revenue_cr: 'Chamaria',
+ area: '140144616.8',
+ are_new: 140,
+ ID_NAM: 'KAMRUPChamaria',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.09732344475259, 26.02814911342608],
+ [91.11264826871508, 26.07169692865275],
+ [91.09527687771948, 26.08153817683078],
+ [91.10334793242512, 26.10951451128873],
+ [91.08292350913862, 26.10693436506869],
+ [91.07316270451891, 26.128714576363368],
+ [91.08574886431911, 26.14289717533394],
+ [91.0813764179799, 26.161775959363926],
+ [91.02972701176157, 26.11918213794883],
+ [91.00638658699424, 26.128110144373093],
+ [90.9977993145122, 26.1282863909853],
+ [91.00871235670583, 26.115166309449155],
+ [90.9952772781824, 26.119581650630845],
+ [90.94025562154027, 26.09299630825888],
+ [90.98125894420617, 26.062809619301138],
+ [91.02622656545857, 26.046746585144632],
+ [91.06510169567306, 26.04749651962463],
+ [91.0894685318908, 26.031141803576634],
+ [91.09732344475259, 26.02814911342608],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Nagarbera',
+ district_3: 'KAMRUP',
+ object_id: 215,
+ district_1: 'Kamrup',
+ revenue_cr: 'Nagarbera',
+ area: '114577593',
+ are_new: 115,
+ ID_NAM: 'KAMRUPNagarbera',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.22015294300631, 26.050045326722447],
+ [91.17952836533557, 26.04740118158302],
+ [91.17934775365782, 26.016949210150724],
+ [91.13953814647743, 26.03318322527618],
+ [91.11764472796975, 26.02182189562718],
+ [91.09732344475259, 26.02814911342608],
+ [91.0894685318908, 26.031141803576634],
+ [91.09972757091317, 26.009372305925904],
+ [91.04756561563812, 25.941508979432786],
+ [91.0304077209479, 25.885954467928055],
+ [91.00594513150742, 25.82047794052967],
+ [91.04815006944345, 25.849297943853045],
+ [91.07843386768914, 25.852831918914173],
+ [91.0488146008698, 25.829367572941532],
+ [91.06206445666317, 25.820872830446785],
+ [91.14747965603428, 25.85058657565265],
+ [91.18015726778113, 25.844067164555277],
+ [91.19575907827834, 25.861488648931356],
+ [91.20357237488797, 25.843309151944407],
+ [91.1781430724376, 25.779831394244002],
+ [91.19040807554057, 25.747923276541872],
+ [91.22238172790492, 25.72265861284828],
+ [91.26445726891417, 25.745949444677258],
+ [91.26650339397617, 25.80674819890546],
+ [91.22759544201612, 25.89992630551851],
+ [91.24349286202218, 25.91666125247391],
+ [91.2390378218808, 25.93778537574956],
+ [91.24152819888506, 25.928991497248653],
+ [91.25204991787298, 25.93549437068027],
+ [91.28480425832149, 25.99759247946491],
+ [91.25479055024404, 26.000399532778545],
+ [91.24218022037283, 26.02170703110601],
+ [91.2209096631404, 26.022699821539153],
+ [91.22015294300631, 26.050045326722447],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Boko',
+ district_3: 'KAMRUP',
+ object_id: 216,
+ district_1: 'Kamrup',
+ revenue_cr: 'Boko',
+ area: '514044709.4',
+ are_new: 514,
+ ID_NAM: 'KAMRUPBoko',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.78292489114916, 26.29904756901669],
+ [91.74198241497074, 26.28858135832664],
+ [91.7229372784462, 26.25136887401086],
+ [91.69762588347017, 26.27847277463041],
+ [91.67945345665088, 26.268356852995314],
+ [91.66454855286291, 26.280733543559375],
+ [91.64220491220954, 26.25427560848097],
+ [91.6634604675767, 26.24024008443261],
+ [91.66669141210795, 26.218635908558156],
+ [91.68228882984339, 26.215836565976264],
+ [91.67186824408851, 26.201853841960013],
+ [91.69475950223067, 26.204030617289085],
+ [91.71182218897549, 26.191380294691555],
+ [91.73142722565369, 26.21089906286072],
+ [91.7487331501263, 26.208966411392193],
+ [91.74719069247783, 26.222065385636327],
+ [91.78228577036722, 26.24538127688291],
+ [91.78292489114916, 26.29904756901669],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'North\nGuwahati',
+ district_3: 'KAMRUP',
+ object_id: 217,
+ district_1: 'Kamrup',
+ revenue_cr: 'North\nGuwahati',
+ area: '90721866.31',
+ are_new: 91,
+ ID_NAM: 'KAMRUPNorth\nGuwahati',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.77987784972287, 26.481756852039407],
+ [91.752251163883, 26.481591983274722],
+ [91.75425395870727, 26.494443076974736],
+ [91.72487169800259, 26.503059258101953],
+ [91.7201433247748, 26.476967804815402],
+ [91.68757147348296, 26.459889006196153],
+ [91.71301034119446, 26.456954723818633],
+ [91.71917845151464, 26.410144060630042],
+ [91.75458138025527, 26.400139846259524],
+ [91.78210376630078, 26.41519542627178],
+ [91.76456988713826, 26.459834087238843],
+ [91.7791240212657, 26.479611962067548],
+ [91.77987784972287, 26.481756852039407],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Jalah (Pt)',
+ district_3: 'KAMRUP',
+ object_id: 218,
+ district_1: 'Kamrup',
+ revenue_cr: 'Jalah (Pt)',
+ area: '55787602.64',
+ are_new: 56,
+ ID_NAM: 'KAMRUPJalah (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.85393489796532, 26.157107167529826],
+ [91.858006971928, 26.169174638206236],
+ [91.83701844527062, 26.182901669474784],
+ [91.85258820567513, 26.200606585339177],
+ [91.82395126458526, 26.20953876729002],
+ [91.82115516214368, 26.207688447846664],
+ [91.82679997596311, 26.19477508979443],
+ [91.80206731791391, 26.17581741297894],
+ [91.77485878256745, 26.18119588089202],
+ [91.76062845876062, 26.158383523400506],
+ [91.73792702811274, 26.16514194882501],
+ [91.70639469199637, 26.110051253283512],
+ [91.70623161094136, 26.10932863403038],
+ [91.70898114292194, 26.104462048298448],
+ [91.70898760899539, 26.104420207354796],
+ [91.71115504434994, 26.098740865368914],
+ [91.71283895072307, 26.097925442270085],
+ [91.71412426472315, 26.097655379873455],
+ [91.7150849006301, 26.098561686943448],
+ [91.7154994884051, 26.098937259716223],
+ [91.71625813183222, 26.105711610032266],
+ [91.71701608355657, 26.10665651333626],
+ [91.71912326171854, 26.10852488120453],
+ [91.71990248824373, 26.10858272305646],
+ [91.72461400728018, 26.10848433800673],
+ [91.73093176614694, 26.107495375990162],
+ [91.73104270988115, 26.107021027376586],
+ [91.7313563503744, 26.10594891831979],
+ [91.73156546829108, 26.105420646127477],
+ [91.7321405832107, 26.10503355869276],
+ [91.73217375889246, 26.105025316065102],
+ [91.73438161933315, 26.107421777904584],
+ [91.73662176432681, 26.110724585730665],
+ [91.73730711061664, 26.11116217387753],
+ [91.7400662491809, 26.11138873884576],
+ [91.74993530079236, 26.10976776728698],
+ [91.75016123606943, 26.10886534639037],
+ [91.74679239115896, 26.10449109930191],
+ [91.74505858157517, 26.10303754563785],
+ [91.7407640793582, 26.097326896684024],
+ [91.73838096569044, 26.093592262920676],
+ [91.73904015393751, 26.09207468517283],
+ [91.7410366201306, 26.09441712939028],
+ [91.74302439781822, 26.09638753772471],
+ [91.74489489595398, 26.098203560798876],
+ [91.74862298702807, 26.10141723192319],
+ [91.7526182559323, 26.102556868977416],
+ [91.75751985578789, 26.103398288397937],
+ [91.7616483987477, 26.103412675685668],
+ [91.76410544286504, 26.10417426203581],
+ [91.76488042664715, 26.104465199194873],
+ [91.76586003766786, 26.103901905336226],
+ [91.77505474825007, 26.108281434662832],
+ [91.77815913363249, 26.108931999115146],
+ [91.78436730791604, 26.109114605235785],
+ [91.78554552207302, 26.10874589184159],
+ [91.79084020223907, 26.10930775073033],
+ [91.79033523316674, 26.113873745629874],
+ [91.79170832334988, 26.11364975132922],
+ [91.79984069166694, 26.110095145923243],
+ [91.79923505109566, 26.104305698066533],
+ [91.7976470102347, 26.103286596681137],
+ [91.79781867109898, 26.101564363810382],
+ [91.79810371911505, 26.100703242704064],
+ [91.79626950303533, 26.097393873030644],
+ [91.79540751921455, 26.097759029863237],
+ [91.79372645780593, 26.09716679287235],
+ [91.7952306103924, 26.096213218711082],
+ [91.79646069866375, 26.093927225956158],
+ [91.82532618283999, 26.119502083417235],
+ [91.8496778842418, 26.10850863682355],
+ [91.85393489796532, 26.157107167529826],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Guwahati',
+ district_3: 'KAMRUP METRO',
+ object_id: 219,
+ district_1: 'KAMRUP METRO',
+ revenue_cr: 'Guwahati',
+ area: '101319635.1',
+ are_new: 101,
+ ID_NAM: 'KAMRUP METROGuwahati',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.05125330055117, 26.20987970504238],
+ [92.04132462236441, 26.19986354921166],
+ [92.03069334304786, 26.209609811383917],
+ [91.99829124909022, 26.20541756178974],
+ [91.95992396165865, 26.22997234148131],
+ [91.96050435867217, 26.212653464731055],
+ [91.98987022961448, 26.198192851402958],
+ [91.96014895460304, 26.178588429578685],
+ [91.93799451082661, 26.191151092712037],
+ [91.9504320012439, 26.15991604264475],
+ [91.85393489796532, 26.157107167529826],
+ [91.8496778842418, 26.10850863682355],
+ [91.87960145626195, 26.096768282997658],
+ [91.86736398652246, 26.041798414957235],
+ [91.8829691728885, 26.026197178975956],
+ [91.91461713026679, 26.02059552008099],
+ [91.91890894741935, 25.997929141986823],
+ [91.93107164498785, 26.01245281507831],
+ [91.98349329692336, 26.02589916901058],
+ [91.98898056061495, 26.038626473922886],
+ [92.05135072194541, 26.03288550507361],
+ [92.09721119403004, 26.04932030880871],
+ [92.13253907930849, 26.044335723764902],
+ [92.17611706969842, 26.07805343568472],
+ [92.16699648000862, 26.163954302650332],
+ [92.1547055479333, 26.17083981833732],
+ [92.14972204957155, 26.161489706760143],
+ [92.12971415352276, 26.180554991479916],
+ [92.07998237914478, 26.177307822982655],
+ [92.0934338582104, 26.189063397810347],
+ [92.08097973818055, 26.185449668756426],
+ [92.05125330055117, 26.20987970504238],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sonapur',
+ district_3: 'KAMRUP METRO',
+ object_id: 220,
+ district_1: 'KAMRUP METRO',
+ revenue_cr: 'Sonapur',
+ area: '493242088.4',
+ are_new: 493,
+ ID_NAM: 'KAMRUP METROSonapur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.97864382001548, 26.27422162623736],
+ [91.94166610236094, 26.2479980806678],
+ [91.91906140859106, 26.246405966691004],
+ [91.88290554791185, 26.217357661139634],
+ [91.82395126458526, 26.20953876729002],
+ [91.85258820567513, 26.200606585339177],
+ [91.83701844527062, 26.182901669474784],
+ [91.858006971928, 26.169174638206236],
+ [91.85393489796532, 26.157107167529826],
+ [91.9504320012439, 26.15991604264475],
+ [91.93799451082661, 26.191151092712037],
+ [91.96014895460304, 26.178588429578685],
+ [91.98987022961448, 26.198192851402958],
+ [91.96050435867217, 26.212653464731055],
+ [91.95992396165865, 26.22997234148131],
+ [91.99829124909022, 26.20541756178974],
+ [92.03069334304786, 26.209609811383917],
+ [92.04132462236441, 26.19986354921166],
+ [92.05125330055117, 26.20987970504238],
+ [92.05615318013302, 26.220039104503083],
+ [92.01364153939268, 26.22799195860151],
+ [92.01039004500099, 26.24284566099988],
+ [91.98005007779551, 26.239231048340766],
+ [91.97864382001548, 26.27422162623736],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Chandrapur',
+ district_3: 'KAMRUP METRO',
+ object_id: 221,
+ district_1: 'KAMRUP METRO',
+ revenue_cr: 'Chandrapur',
+ area: '124600101.5',
+ are_new: 125,
+ ID_NAM: 'KAMRUP METROChandrapur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.32255408425094, 26.490477689615318],
+ [91.29680443807871, 26.484938057705605],
+ [91.30166497324774, 26.50143866657638],
+ [91.2841941863609, 26.50262935822087],
+ [91.28943507630606, 26.515371752945494],
+ [91.31147961839403, 26.516905907452337],
+ [91.2966510372692, 26.54638048412639],
+ [91.24956358328747, 26.523283313596426],
+ [91.26587995059258, 26.491039667231814],
+ [91.230497357015, 26.433277836522024],
+ [91.23663129901504, 26.414196325040173],
+ [91.2461104773016, 26.423412322358256],
+ [91.25319957638366, 26.41181730090585],
+ [91.30040035283851, 26.407211918874044],
+ [91.3040632971899, 26.417220312557006],
+ [91.28675147617574, 26.42839802661601],
+ [91.31397483821598, 26.439812050971803],
+ [91.32007283412993, 26.455824478197027],
+ [91.35972714864883, 26.457276489398872],
+ [91.37091560173214, 26.47206795922632],
+ [91.32798073232213, 26.490446373014063],
+ [91.32255408425094, 26.490477689615318],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Tihu\n(Pt)',
+ district_3: 'NALBARI',
+ object_id: 222,
+ district_1: 'Nalbari',
+ revenue_cr: 'Tihu\n(Pt)',
+ area: '94935581.15',
+ are_new: 95,
+ ID_NAM: 'NALBARITihu\n(Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.39310350775291, 26.441977658395174],
+ [91.34967957933253, 26.426285002591218],
+ [91.33702486460143, 26.44798800547593],
+ [91.32794484372823, 26.425214235179165],
+ [91.28675147617574, 26.42839802661601],
+ [91.3040632971899, 26.417220312557006],
+ [91.30040035283851, 26.407211918874044],
+ [91.25319957638366, 26.41181730090585],
+ [91.2461104773016, 26.423412322358256],
+ [91.23663129901504, 26.414196325040173],
+ [91.23686685614715, 26.376595850612606],
+ [91.26532749298102, 26.3607847398763],
+ [91.28250876991979, 26.375527119414997],
+ [91.27094479409826, 26.36459790924434],
+ [91.27551496861463, 26.34062668313566],
+ [91.3050926955386, 26.32587500596363],
+ [91.31620492477344, 26.365817884876204],
+ [91.32757729713141, 26.36652843616249],
+ [91.36336748150622, 26.343916975378708],
+ [91.33997795841869, 26.31197559355527],
+ [91.35530795218563, 26.3071130700063],
+ [91.3498649161487, 26.3236450524369],
+ [91.41159986706366, 26.321022551652252],
+ [91.41126252452163, 26.335880592536355],
+ [91.42424885952639, 26.332045992979392],
+ [91.42687545885698, 26.341210427870752],
+ [91.40013474544922, 26.343132733830736],
+ [91.39683974654666, 26.33447359496263],
+ [91.3778181126449, 26.34340972417684],
+ [91.41813493468582, 26.420715676131366],
+ [91.41557423037457, 26.434088116492134],
+ [91.39310350775291, 26.441977658395174],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Pachim\nNalbari',
+ district_3: 'NALBARI',
+ object_id: 223,
+ district_1: 'Nalbari',
+ revenue_cr: 'Pachim Nalbari',
+ area: '148606921.2',
+ are_new: 149,
+ ID_NAM: 'NALBARIPachim\nNalbari',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.41159986706366, 26.321022551652252],
+ [91.3498649161487, 26.3236450524369],
+ [91.35530795218563, 26.3071130700063],
+ [91.33997795841869, 26.31197559355527],
+ [91.36336748150622, 26.343916975378708],
+ [91.32757729713141, 26.36652843616249],
+ [91.31620492477344, 26.365817884876204],
+ [91.3050926955386, 26.32587500596363],
+ [91.27551496861463, 26.34062668313566],
+ [91.25015563684009, 26.301905283516206],
+ [91.26108294068716, 26.289336643783614],
+ [91.21881198825584, 26.273461104019674],
+ [91.21823866367858, 26.260340835923177],
+ [91.24086584407664, 26.260273391645253],
+ [91.21564214802855, 26.239204784944114],
+ [91.21534882024051, 26.220613008026792],
+ [91.24845588867692, 26.200753667981246],
+ [91.23733391541619, 26.18027876117714],
+ [91.22210213805252, 26.179396358129598],
+ [91.25568671855464, 26.163081418297427],
+ [91.32263599892674, 26.160443659596652],
+ [91.35364515622166, 26.167290791547092],
+ [91.39066002190818, 26.13901364296463],
+ [91.41386488191596, 26.136041105250175],
+ [91.42228559237127, 26.232358372959478],
+ [91.41247532022378, 26.26497024549809],
+ [91.45139068957313, 26.26961220283962],
+ [91.45526711765348, 26.32053871554579],
+ [91.42071621490865, 26.31314453738977],
+ [91.41159986706366, 26.321022551652252],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Barkhetri',
+ district_3: 'NALBARI',
+ object_id: 224,
+ district_1: 'Nalbari',
+ revenue_cr: 'Barkhetri',
+ area: '370577388.2',
+ are_new: 371,
+ ID_NAM: 'NALBARIBarkhetri',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.54852688039598, 26.41144263864634],
+ [91.51969706831969, 26.410160396432083],
+ [91.50898415460169, 26.425087910625056],
+ [91.48899948898612, 26.417890516944205],
+ [91.48621764999464, 26.40164226605183],
+ [91.46722288470302, 26.403533099787477],
+ [91.47894323655427, 26.394554812871117],
+ [91.44454320765807, 26.378734044672594],
+ [91.44630173528523, 26.361093632932032],
+ [91.42687545885698, 26.341210427870752],
+ [91.42424885952639, 26.332045992979392],
+ [91.41126252452163, 26.335880592536355],
+ [91.41159986706366, 26.321022551652252],
+ [91.42071621490865, 26.31314453738977],
+ [91.45526711765348, 26.32053871554579],
+ [91.52482098324182, 26.336584539373423],
+ [91.51957399553251, 26.354772337841176],
+ [91.53645917248222, 26.376450366986756],
+ [91.52869513588954, 26.392714551198168],
+ [91.54852688039598, 26.41144263864634],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Barbhag',
+ district_3: 'NALBARI',
+ object_id: 225,
+ district_1: 'Nalbari',
+ revenue_cr: 'Barbhag',
+ area: '82281261.7',
+ are_new: 82,
+ ID_NAM: 'NALBARIBarbhag',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.48899948898612, 26.417890516944205],
+ [91.50393648868086, 26.45867034025967],
+ [91.48633765323851, 26.500499667637296],
+ [91.43235578216473, 26.50646609742335],
+ [91.42677237717815, 26.475691314953494],
+ [91.39843217208451, 26.467376578579927],
+ [91.39310350775291, 26.441977658395174],
+ [91.41557423037457, 26.434088116492134],
+ [91.41813493468582, 26.420715676131366],
+ [91.3778181126449, 26.34340972417684],
+ [91.39683974654666, 26.33447359496263],
+ [91.40013474544922, 26.343132733830736],
+ [91.42687545885698, 26.341210427870752],
+ [91.44630173528523, 26.361093632932032],
+ [91.44454320765807, 26.378734044672594],
+ [91.47894323655427, 26.394554812871117],
+ [91.46722288470302, 26.403533099787477],
+ [91.48621764999464, 26.40164226605183],
+ [91.48899948898612, 26.417890516944205],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Nalbari',
+ district_3: 'NALBARI',
+ object_id: 226,
+ district_1: 'Nalbari',
+ revenue_cr: 'Nalbari',
+ area: '128136913.3',
+ are_new: 128,
+ ID_NAM: 'NALBARINalbari',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.42832407130436, 26.534499242198574],
+ [91.38525963698258, 26.526449414245906],
+ [91.37459400968284, 26.514388694887092],
+ [91.38588079954368, 26.488006910515853],
+ [91.37091560173214, 26.47206795922632],
+ [91.35972714864883, 26.457276489398872],
+ [91.32007283412993, 26.455824478197027],
+ [91.31397483821598, 26.439812050971803],
+ [91.28675147617574, 26.42839802661601],
+ [91.32794484372823, 26.425214235179165],
+ [91.33702486460143, 26.44798800547593],
+ [91.34967957933253, 26.426285002591218],
+ [91.39310350775291, 26.441977658395174],
+ [91.39843217208451, 26.467376578579927],
+ [91.42677237717815, 26.475691314953494],
+ [91.43235578216473, 26.50646609742335],
+ [91.42114381567882, 26.519238718605944],
+ [91.42832407130436, 26.534499242198574],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Banekuchi',
+ district_3: 'NALBARI',
+ object_id: 227,
+ district_1: 'Nalbari',
+ revenue_cr: 'Banekuchi',
+ area: '61110319.4',
+ are_new: 61,
+ ID_NAM: 'NALBARIBanekuchi',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.58480058566741, 26.55588255825995],
+ [91.577401732204, 26.572283910134466],
+ [91.55997811405612, 26.566166612705654],
+ [91.52879032676694, 26.55876170109595],
+ [91.51207069764595, 26.533476867834064],
+ [91.49435422332556, 26.533842981024243],
+ [91.4947023294813, 26.5538607398351],
+ [91.4598365654328, 26.542696042365616],
+ [91.42832407130436, 26.534499242198574],
+ [91.42114381567882, 26.519238718605944],
+ [91.43235578216473, 26.50646609742335],
+ [91.48633765323851, 26.500499667637296],
+ [91.50393648868086, 26.45867034025967],
+ [91.48899948898612, 26.417890516944205],
+ [91.50898415460169, 26.425087910625056],
+ [91.51969706831969, 26.410160396432083],
+ [91.54852688039598, 26.41144263864634],
+ [91.55470507161029, 26.4205856701386],
+ [91.56445731887862, 26.433909904519926],
+ [91.54963231304865, 26.469518715706045],
+ [91.56206518792202, 26.48364099629563],
+ [91.55616376764672, 26.525191947480103],
+ [91.57811019663768, 26.528932899874107],
+ [91.57409015848613, 26.555367340504013],
+ [91.58480058566741, 26.55588255825995],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Ghograpar (Pt)',
+ district_3: 'NALBARI',
+ object_id: 228,
+ district_1: 'Nalbari',
+ revenue_cr: 'Ghograpar (Pt)',
+ area: '131160984.6',
+ are_new: 131,
+ ID_NAM: 'NALBARIGhograpar (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.4598365654328, 26.542696042365616],
+ [91.4947023294813, 26.5538607398351],
+ [91.49435422332556, 26.533842981024243],
+ [91.51207069764595, 26.533476867834064],
+ [91.52879032676694, 26.55876170109595],
+ [91.50065199827048, 26.57253609270481],
+ [91.50229189707615, 26.601619000614058],
+ [91.48788890988517, 26.61346017607371],
+ [91.49124540565549, 26.627929999874016],
+ [91.5094452068364, 26.629931613629985],
+ [91.49000972896474, 26.696197813921707],
+ [91.46014398599098, 26.72559187221311],
+ [91.40686119644774, 26.83835115189944],
+ [91.35932893626315, 26.78893273172281],
+ [91.41358484200762, 26.75856055969904],
+ [91.4146461718714, 26.727778911222792],
+ [91.38672206731569, 26.718114416089346],
+ [91.38954476977113, 26.671487294739933],
+ [91.4196566394546, 26.679565473201023],
+ [91.4236743644443, 26.614099286532625],
+ [91.44634392825579, 26.578624320262662],
+ [91.4262862628453, 26.552560509644085],
+ [91.4598365654328, 26.542696042365616],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Baganpara (Pt)',
+ district_3: 'BAKSA',
+ object_id: 260,
+ district_1: 'Baksa',
+ revenue_cr: 'Baganpara (Pt)',
+ area: '211742690.1',
+ are_new: 212,
+ ID_NAM: 'BAKSABaganpara (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.37091560173214, 26.47206795922632],
+ [91.38588079954368, 26.488006910515853],
+ [91.37459400968284, 26.514388694887092],
+ [91.38525963698258, 26.526449414245906],
+ [91.35270414670704, 26.523991827664645],
+ [91.35538488480489, 26.510807568349325],
+ [91.32798073232213, 26.490446373014063],
+ [91.37091560173214, 26.47206795922632],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Baganpara (Pt)',
+ district_3: 'NALBARI',
+ object_id: 230,
+ district_1: 'Nalbari',
+ revenue_cr: 'Baganpara (Pt)',
+ area: '18943498.07',
+ are_new: 19,
+ ID_NAM: 'NALBARIBaganpara (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.97736678752352, 26.503868298435144],
+ [90.99565234637308, 26.50289004338387],
+ [90.99066528349624, 26.523286521443488],
+ [91.00187310335878, 26.530942332821965],
+ [91.0278799560615, 26.530712564473287],
+ [91.04118971331464, 26.557055124788423],
+ [91.06030504239884, 26.557397926204768],
+ [91.06281371988207, 26.575390228930427],
+ [91.02518069649913, 26.59820426821196],
+ [91.02875255527397, 26.63520136130574],
+ [91.04754050862424, 26.65173361762841],
+ [91.03242048347856, 26.66402841264239],
+ [91.06025646060995, 26.669783674764844],
+ [91.10362679015057, 26.70888785138179],
+ [91.15247212227753, 26.74413714422282],
+ [91.13281775910708, 26.778249849399355],
+ [91.14338301135196, 26.811782766056513],
+ [91.097619491741, 26.822082401622584],
+ [91.05411452270556, 26.780804668125985],
+ [90.99172400105918, 26.790829739443787],
+ [90.95713775589617, 26.78168434571891],
+ [90.94027519044045, 26.771235879592233],
+ [90.8989164798751, 26.68884737936943],
+ [90.90101932097089, 26.638841035039924],
+ [90.90099906665615, 26.599247314873267],
+ [90.86999988335583, 26.57976962374883],
+ [90.87635361615642, 26.56328814922648],
+ [90.89129903935361, 26.552068128042137],
+ [90.91293477432542, 26.578609831259737],
+ [90.93290956476109, 26.55515889257517],
+ [90.93496025146808, 26.58414076383598],
+ [90.96350780479729, 26.583182450296466],
+ [90.96339314652937, 26.5985726879975],
+ [90.98908598683629, 26.59057465610156],
+ [90.99491439204525, 26.600849673707806],
+ [90.97736678752352, 26.503868298435144],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Barnagar (Pt)',
+ district_3: 'BAKSA',
+ object_id: 231,
+ district_1: 'Baksa',
+ revenue_cr: 'Barnagar (Pt)',
+ area: '460073385.7',
+ are_new: 460,
+ ID_NAM: 'BAKSABarnagar (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.32478657649672, 26.560251568513383],
+ [91.33511434562148, 26.58263035681528],
+ [91.28992953958117, 26.563533938154016],
+ [91.2479279065636, 26.538419684704223],
+ [91.24956358328747, 26.523283313596426],
+ [91.2966510372692, 26.54638048412639],
+ [91.31147961839403, 26.516905907452337],
+ [91.28943507630606, 26.515371752945494],
+ [91.2841941863609, 26.50262935822087],
+ [91.30166497324774, 26.50143866657638],
+ [91.29680443807871, 26.484938057705605],
+ [91.32255408425094, 26.490477689615318],
+ [91.32478657649672, 26.560251568513383],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Ghograpar (Pt)',
+ district_3: 'BAKSA',
+ object_id: 232,
+ district_1: 'Baksa',
+ revenue_cr: 'Ghograpar (Pt)',
+ area: '35444716.72',
+ are_new: 35,
+ ID_NAM: 'BAKSAGhograpar (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.29664325336728, 26.787207311616395],
+ [91.23677430182512, 26.8119614569636],
+ [91.14338301135196, 26.811782766056513],
+ [91.13281775910708, 26.778249849399355],
+ [91.15247212227753, 26.74413714422282],
+ [91.10362679015057, 26.70888785138179],
+ [91.15039297155244, 26.694972959279145],
+ [91.14506146315468, 26.66310106512519],
+ [91.15768559114865, 26.65150980405196],
+ [91.15137182798829, 26.63889794076979],
+ [91.18635233115313, 26.627744014921745],
+ [91.17657146086489, 26.622865226371836],
+ [91.18676243992809, 26.62199120782995],
+ [91.18618217047536, 26.603952749230007],
+ [91.19857321709418, 26.60391771022429],
+ [91.19777522116938, 26.62300759485799],
+ [91.23569084465925, 26.616826675799484],
+ [91.25337748503075, 26.65911683029009],
+ [91.27822512204642, 26.66922004739549],
+ [91.29170224801341, 26.69707857394617],
+ [91.29664325336728, 26.787207311616395],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Jalah (Pt)',
+ district_3: 'BAKSA',
+ object_id: 233,
+ district_1: 'Baksa',
+ revenue_cr: 'Jalah (Pt)',
+ area: '291646466.4',
+ are_new: 292,
+ ID_NAM: 'BAKSAJalah (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.4236743644443, 26.614099286532625],
+ [91.37494763329109, 26.61673378435448],
+ [91.35825231168334, 26.57464406320148],
+ [91.32478657649672, 26.560251568513383],
+ [91.32255408425094, 26.490477689615318],
+ [91.32798073232213, 26.490446373014063],
+ [91.35538488480489, 26.510807568349325],
+ [91.35270414670704, 26.523991827664645],
+ [91.38525963698258, 26.526449414245906],
+ [91.42832407130436, 26.534499242198574],
+ [91.4598365654328, 26.542696042365616],
+ [91.4262862628453, 26.552560509644085],
+ [91.44634392825579, 26.578624320262662],
+ [91.4236743644443, 26.614099286532625],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Barama',
+ district_3: 'BAKSA',
+ object_id: 234,
+ district_1: 'Baksa',
+ revenue_cr: 'Barama',
+ area: '95546762.3',
+ are_new: 96,
+ ID_NAM: 'BAKSABarama',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.50229189707615, 26.601619000614058],
+ [91.50065199827048, 26.57253609270481],
+ [91.52879032676694, 26.55876170109595],
+ [91.55997811405612, 26.566166612705654],
+ [91.55619490736417, 26.58751768535087],
+ [91.53159361383264, 26.609196545081335],
+ [91.50229189707615, 26.601619000614058],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Rangia (Pt)',
+ district_3: 'TAMULPUR',
+ object_id: 235,
+ district_1: 'Baksa',
+ revenue_cr: 'Rangia (Pt)',
+ area: '23451991.6',
+ are_new: 23,
+ ID_NAM: 'TAMULPURRangia (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.7791240212657, 26.479611962067548],
+ [91.79980874038893, 26.47709587283971],
+ [91.801654966944, 26.489842041580545],
+ [91.78487557021222, 26.493421857446684],
+ [91.77987784972287, 26.481756852039407],
+ [91.7791240212657, 26.479611962067548],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Pathorighat (Pt)',
+ district_3: 'TAMULPUR',
+ object_id: 236,
+ district_1: 'Baksa',
+ revenue_cr: 'Pathorighat (Pt)',
+ area: '3754506.217',
+ are_new: 4,
+ ID_NAM: 'TAMULPURPathorighat (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.01241251652324, 26.53624318934938],
+ [91.98014413140575, 26.556472857899884],
+ [91.9588280035373, 26.55174834183555],
+ [91.96503515463974, 26.539857046106683],
+ [91.92786391202523, 26.537301226934034],
+ [91.9219347284178, 26.56761494463241],
+ [91.8966673059749, 26.569603494],
+ [91.86994462444986, 26.531833008942687],
+ [91.89979720440974, 26.52585142169324],
+ [91.89346072734743, 26.50023494694248],
+ [91.93795955288734, 26.502250426718145],
+ [91.94295273957944, 26.516820800301822],
+ [92.00816299564754, 26.51878041665822],
+ [92.01241251652324, 26.53624318934938],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Khoirabari (Pt)',
+ district_3: 'DARRANG',
+ object_id: 237,
+ district_1: 'Darrang',
+ revenue_cr: 'Khoirabari (Pt)',
+ area: '52738276.5',
+ are_new: 53,
+ ID_NAM: 'DARRANGKhoirabari (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.8628183270302, 26.53806821446016],
+ [91.83266517436951, 26.525550589679266],
+ [91.81817629566096, 26.511824276503685],
+ [91.78057055950309, 26.511804056446966],
+ [91.78487557021222, 26.493421857446684],
+ [91.801654966944, 26.489842041580545],
+ [91.79980874038893, 26.47709587283971],
+ [91.7791240212657, 26.479611962067548],
+ [91.76456988713826, 26.459834087238843],
+ [91.78210376630078, 26.41519542627178],
+ [91.7946566740624, 26.403395042833544],
+ [91.82640411536686, 26.397198967672264],
+ [91.86008619990821, 26.423813516429412],
+ [91.86638984893679, 26.407903526825493],
+ [91.88109967637429, 26.42091290965102],
+ [91.90330977707077, 26.414908430713705],
+ [91.92328812034337, 26.433707680236516],
+ [91.91464498432883, 26.45742353425664],
+ [91.93432209823216, 26.46017897872482],
+ [91.94596662868017, 26.479280910721616],
+ [91.93795955288734, 26.502250426718145],
+ [91.89346072734743, 26.50023494694248],
+ [91.89979720440974, 26.52585142169324],
+ [91.86994462444986, 26.531833008942687],
+ [91.8628183270302, 26.53806821446016],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Pathorighat (Pt)',
+ district_3: 'DARRANG',
+ object_id: 238,
+ district_1: 'Darrang',
+ revenue_cr: 'Patharighat (Pt)',
+ area: '176482635.2',
+ are_new: 176,
+ ID_NAM: 'DARRANGPathorighat (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.94166610236094, 26.2479980806678],
+ [91.90887864372282, 26.32410591804348],
+ [91.91991469402492, 26.36225829859724],
+ [91.94841217705682, 26.365828985638753],
+ [91.93481789011553, 26.401397017580102],
+ [91.95105386628757, 26.436224987273707],
+ [91.92328812034337, 26.433707680236516],
+ [91.90330977707077, 26.414908430713705],
+ [91.88109967637429, 26.42091290965102],
+ [91.86638984893679, 26.407903526825493],
+ [91.86008619990821, 26.423813516429412],
+ [91.82640411536686, 26.397198967672264],
+ [91.7946566740624, 26.403395042833544],
+ [91.82150564524171, 26.372171554582508],
+ [91.82172380919326, 26.33179871124076],
+ [91.80852213184525, 26.32251456244587],
+ [91.81407166226079, 26.311040426614607],
+ [91.79279810106208, 26.321414237103888],
+ [91.78292489114916, 26.29904756901669],
+ [91.78228577036722, 26.24538127688291],
+ [91.74719069247783, 26.222065385636327],
+ [91.7487331501263, 26.208966411392193],
+ [91.76969055554898, 26.19847761863056],
+ [91.82115516214368, 26.207688447846664],
+ [91.82395126458526, 26.20953876729002],
+ [91.88290554791185, 26.217357661139634],
+ [91.91906140859106, 26.246405966691004],
+ [91.94166610236094, 26.2479980806678],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sipajhar',
+ district_3: 'DARRANG',
+ object_id: 239,
+ district_1: 'Darrang',
+ revenue_cr: 'Sipajhar',
+ area: '293007191.6',
+ are_new: 293,
+ ID_NAM: 'DARRANGSipajhar',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.3605866262304, 26.582343836122135],
+ [92.35742515291165, 26.6118407639239],
+ [92.3758144806512, 26.61362465297574],
+ [92.37578360196164, 26.629357760493004],
+ [92.39535449906577, 26.627024009182563],
+ [92.40033558545099, 26.64202478072793],
+ [92.36306279278519, 26.643166930670404],
+ [92.3640673895472, 26.69816294190874],
+ [92.34449493835764, 26.692761932593534],
+ [92.3488504918779, 26.66415011760386],
+ [92.33148510881493, 26.662735627786194],
+ [92.33281671300162, 26.623556208972595],
+ [92.34427240949208, 26.59779021232468],
+ [92.32531342140328, 26.589427785801284],
+ [92.3605866262304, 26.582343836122135],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dhekiajuli (Pt)',
+ district_3: 'UDALGURI',
+ object_id: 240,
+ district_1: 'Udalguri',
+ revenue_cr: 'Dhekiajuli (Pt)',
+ area: '41104085.9',
+ are_new: 41,
+ ID_NAM: 'UDALGURIDhekiajuli (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.0563656316977, 26.64648407908395],
+ [92.00617845638648, 26.64445378117745],
+ [92.01988566425392, 26.678426231204874],
+ [91.9839432531677, 26.66867679825561],
+ [91.9781456323252, 26.67706335163043],
+ [91.9681059565053, 26.642481891145728],
+ [91.90111337284492, 26.642867937128695],
+ [91.8628183270302, 26.53806821446016],
+ [91.86994462444986, 26.531833008942687],
+ [91.8966673059749, 26.569603494],
+ [91.9219347284178, 26.56761494463241],
+ [91.92786391202523, 26.537301226934034],
+ [91.96503515463974, 26.539857046106683],
+ [91.9588280035373, 26.55174834183555],
+ [91.98014413140575, 26.556472857899884],
+ [92.01241251652324, 26.53624318934938],
+ [92.00303351566221, 26.543182144455656],
+ [92.02821193931496, 26.54219148106679],
+ [92.01941161878692, 26.521872411614662],
+ [92.0331047599353, 26.525192743199426],
+ [92.02846679944591, 26.545865922815054],
+ [92.00586116154666, 26.559595742348286],
+ [91.99836258430693, 26.5896960947187],
+ [92.03319093891376, 26.59268471162544],
+ [92.02594503530558, 26.615222063137768],
+ [92.0563656316977, 26.64648407908395],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Khoirabari (Pt)',
+ district_3: 'UDALGURI',
+ object_id: 241,
+ district_1: 'Udalguri',
+ revenue_cr: 'Khoirabari (Pt)',
+ area: '162764836.4',
+ are_new: 163,
+ ID_NAM: 'UDALGURIKhoirabari (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.83266517436951, 26.525550589679266],
+ [91.81361225663797, 26.52566889101198],
+ [91.81817629566096, 26.511824276503685],
+ [91.83266517436951, 26.525550589679266],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Pathorighat (Pt)',
+ district_3: 'UDALGURI',
+ object_id: 242,
+ district_1: 'Udalguri',
+ revenue_cr: 'Pathorighat (Pt)',
+ area: '2314177.101',
+ are_new: 2,
+ ID_NAM: 'UDALGURIPathorighat (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.0408596229323, 26.50999551979134],
+ [92.05449296772383, 26.54415032513857],
+ [92.02846679944591, 26.545865922815054],
+ [92.0331047599353, 26.525192743199426],
+ [92.02550065670084, 26.508063194678552],
+ [92.0408596229323, 26.50999551979134],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Mangaldoi (Pt)',
+ district_3: 'UDALGURI',
+ object_id: 243,
+ district_1: 'Udalguri',
+ revenue_cr: 'Mangaldoi (Pt)',
+ area: '6293734.554',
+ are_new: 6,
+ ID_NAM: 'UDALGURIMangaldoi (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.27583788427359, 26.65752108391362],
+ [92.226421255067, 26.68126095014422],
+ [92.18124812173546, 26.670228766197976],
+ [92.17689210198958, 26.651444256884066],
+ [92.20210076383307, 26.651311355170773],
+ [92.19371328745007, 26.634945453668482],
+ [92.2203185205399, 26.628191297933704],
+ [92.23458194007843, 26.596964499390534],
+ [92.23055264838115, 26.548747836450254],
+ [92.2646924030002, 26.570619861953617],
+ [92.24223720865655, 26.603222234663242],
+ [92.2731733814279, 26.616261805598548],
+ [92.27583788427359, 26.65752108391362],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dalgaon (Pt)',
+ district_3: 'UDALGURI',
+ object_id: 244,
+ district_1: 'Udalguri',
+ revenue_cr: 'Dalgaon (Pt)',
+ area: '62698740.91',
+ are_new: 63,
+ ID_NAM: 'UDALGURIDalgaon (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.96663835007955, 26.877872353745097],
+ [91.89299124801703, 26.91870491374793],
+ [91.8593657483554, 26.913178333128734],
+ [91.8241559906385, 26.863912833383736],
+ [91.70433787788079, 26.81280527600726],
+ [91.70538223138234, 26.809625947422656],
+ [91.7443335144784, 26.683693989960858],
+ [91.79330094292384, 26.679263183711868],
+ [91.82177661126735, 26.64106350029274],
+ [91.88037547525349, 26.651852126637923],
+ [91.90111337284492, 26.642867937128695],
+ [91.9681059565053, 26.642481891145728],
+ [91.9781456323252, 26.67706335163043],
+ [91.98194508646378, 26.708304245655153],
+ [92.00106615578265, 26.72042260658203],
+ [92.00214713090337, 26.7644477701321],
+ [91.95971856636054, 26.85482286673314],
+ [91.96663835007955, 26.877872353745097],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Harisinga',
+ district_3: 'UDALGURI',
+ object_id: 245,
+ district_1: 'Udalguri',
+ revenue_cr: 'Harisinga',
+ area: '625700293.5',
+ are_new: 626,
+ ID_NAM: 'UDALGURIHarisinga',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.226421255067, 26.68126095014422],
+ [92.23450456189481, 26.696777833278148],
+ [92.20889636714216, 26.709474976125072],
+ [92.21476269473088, 26.78938487427689],
+ [92.23509875433612, 26.82693513952532],
+ [92.24931462874163, 26.908338290341618],
+ [92.19473385356288, 26.89005985049362],
+ [92.11400321837979, 26.89391618861188],
+ [92.10237426292215, 26.86733540263912],
+ [92.0561884381096, 26.846669817478254],
+ [91.98359411484768, 26.85785898129719],
+ [91.96663835007955, 26.877872353745097],
+ [91.95971856636054, 26.85482286673314],
+ [92.00214713090337, 26.7644477701321],
+ [92.00106615578265, 26.72042260658203],
+ [91.98194508646378, 26.708304245655153],
+ [91.9781456323252, 26.67706335163043],
+ [91.9839432531677, 26.66867679825561],
+ [92.01988566425392, 26.678426231204874],
+ [92.00617845638648, 26.64445378117745],
+ [92.0563656316977, 26.64648407908395],
+ [92.12152982844626, 26.64368805619227],
+ [92.11858787104359, 26.6526219292074],
+ [92.18124812173546, 26.670228766197976],
+ [92.226421255067, 26.68126095014422],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Udalguri',
+ district_3: 'UDALGURI',
+ object_id: 246,
+ district_1: 'Udalguri',
+ revenue_cr: 'Udalguri',
+ area: '569395304.7',
+ are_new: 569,
+ ID_NAM: 'UDALGURIUdalguri',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.36484227361635, 26.93206189642904],
+ [92.30259430023251, 26.922739347049987],
+ [92.302897111535, 26.907236120554764],
+ [92.24931462874163, 26.908338290341618],
+ [92.23509875433612, 26.82693513952532],
+ [92.21476269473088, 26.78938487427689],
+ [92.20889636714216, 26.709474976125072],
+ [92.23450456189481, 26.696777833278148],
+ [92.226421255067, 26.68126095014422],
+ [92.27583788427359, 26.65752108391362],
+ [92.28961750892933, 26.65094808397123],
+ [92.29419317933865, 26.62202087111727],
+ [92.31427558884366, 26.624072824808454],
+ [92.31190467339908, 26.60715085265598],
+ [92.33281671300162, 26.623556208972595],
+ [92.33148510881493, 26.662735627786194],
+ [92.3324159997062, 26.694446076017194],
+ [92.34631510568462, 26.70477012606739],
+ [92.33182333260423, 26.721892358251846],
+ [92.34191711485201, 26.729201117689854],
+ [92.33196285893418, 26.72515507830122],
+ [92.33738782535916, 26.733126080027787],
+ [92.32351918933686, 26.73912817481816],
+ [92.33417838559748, 26.742114502005197],
+ [92.32869857073618, 26.77164287774775],
+ [92.34032211384425, 26.771235565197756],
+ [92.32790812694803, 26.812631344722664],
+ [92.34954744170626, 26.911448638953],
+ [92.36484227361635, 26.93206189642904],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Mazbat',
+ district_3: 'UDALGURI',
+ object_id: 247,
+ district_1: 'Udalguri',
+ revenue_cr: 'Mazbat',
+ area: '325141745.3',
+ are_new: 325,
+ ID_NAM: 'UDALGURIMazbat',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.10799091743364, 27.13572201738539],
+ [95.0613813114875, 27.136726607131802],
+ [95.04887642406769, 27.155333970037667],
+ [94.97745325779786, 27.14850310868622],
+ [94.98443906858856, 27.168470251270005],
+ [94.96785022878308, 27.226941715417777],
+ [94.88947481457816, 27.16020071772757],
+ [94.83683442287101, 27.09187467428834],
+ [94.82494318360493, 27.05713099129173],
+ [94.82986333097624, 27.016362945541445],
+ [94.83473628894734, 27.017715366968797],
+ [94.83696993373162, 27.022745044880445],
+ [94.83969010517548, 27.02652680714538],
+ [94.84130744908099, 27.017493812008563],
+ [94.85496054423236, 27.029581252033367],
+ [94.86782017725615, 27.031772791890308],
+ [94.86988771635788, 27.038219944235557],
+ [94.88446568009485, 27.04421399083488],
+ [94.8929810738794, 27.046543304186336],
+ [94.89512913706488, 27.042333207115774],
+ [94.89397888297111, 27.040806710975666],
+ [94.89383130773624, 27.038617337366723],
+ [94.89577509043283, 27.03803204815044],
+ [94.90520460176569, 27.03737088436536],
+ [94.9071389395754, 27.04049046782575],
+ [94.90649827189456, 27.04388973876153],
+ [94.9062185679561, 27.045373750253948],
+ [94.91001418808504, 27.047127451327896],
+ [94.91260655711179, 27.04698096018774],
+ [94.91912868629889, 27.046612331282535],
+ [94.92215672476365, 27.04577175572151],
+ [94.9238661396976, 27.042270547813445],
+ [94.92416102606266, 27.041382041158606],
+ [94.92539568316556, 27.041023241649786],
+ [94.9260511910149, 27.041802206145594],
+ [94.92658094101267, 27.044281031141743],
+ [94.92999828506706, 27.048697339854566],
+ [94.93230217541162, 27.048945223909648],
+ [94.93807255124989, 27.036344578691097],
+ [94.93948497686266, 27.037544399088763],
+ [94.93831814795361, 27.041528293973286],
+ [94.938353647577, 27.044963526885592],
+ [94.94116825621175, 27.048567848814095],
+ [94.94340743371984, 27.045449953196304],
+ [94.94597609620621, 27.04353584384824],
+ [94.94680524301008, 27.04392411791545],
+ [94.94848454731402, 27.048638165159005],
+ [94.94986055881844, 27.05017624987539],
+ [94.95835029761678, 27.04694826371807],
+ [94.95301297622083, 27.05755400289248],
+ [94.9532634489799, 27.05903238497498],
+ [94.95552426420828, 27.05891692320078],
+ [94.9574574386997, 27.056362197241157],
+ [94.96222393642816, 27.053804070608823],
+ [94.96116488918352, 27.056809615744303],
+ [94.95741744211, 27.063543620157464],
+ [94.96084187926186, 27.064118257796522],
+ [94.96863256437747, 27.057832815902497],
+ [94.96892702404278, 27.05873946079009],
+ [94.96579292957725, 27.064046316059926],
+ [94.96666160494857, 27.064764674624065],
+ [94.97158411219411, 27.063827256375472],
+ [94.97498233381106, 27.06060950267199],
+ [94.97612754206784, 27.065029166757675],
+ [94.97696681019005, 27.06675177691573],
+ [94.98038472557296, 27.067894156246474],
+ [94.99240778003056, 27.06177055175592],
+ [95.00255012610087, 27.064788433736847],
+ [95.0063867273731, 27.07044207630736],
+ [95.007960635938, 27.07171812914221],
+ [95.00982369781984, 27.06459904464614],
+ [95.01189094407079, 27.062434577235635],
+ [95.0127779863964, 27.061968437233464],
+ [95.01461309719814, 27.0628679826724],
+ [95.01504419421143, 27.064926246251034],
+ [95.01563152711722, 27.065623887207504],
+ [95.01621895793939, 27.066321424631973],
+ [95.02694052872177, 27.065465793117575],
+ [95.0296445529484, 27.065746411113818],
+ [95.03260249676984, 27.067429374012644],
+ [95.03260166223498, 27.067431025856227],
+ [95.03387844583312, 27.07197286778976],
+ [95.03572030208434, 27.072605973202723],
+ [95.04067914169157, 27.072713330829608],
+ [95.04144505428596, 27.074370517170326],
+ [95.03961060105098, 27.077556077843447],
+ [95.03988773041782, 27.078992826799002],
+ [95.05246356677875, 27.080408140244952],
+ [95.05101881529048, 27.082012203140586],
+ [95.05695148525952, 27.086965705686204],
+ [95.07017278630492, 27.0919334126963],
+ [95.0712685207458, 27.093524753893053],
+ [95.0728251448263, 27.096004550865484],
+ [95.08083490388688, 27.101435398916735],
+ [95.09099839989227, 27.10462229311596],
+ [95.09212994028202, 27.10572874587574],
+ [95.08822405195193, 27.10985318099974],
+ [95.08703956485934, 27.115067384163336],
+ [95.08915029585825, 27.11613678284128],
+ [95.09063296613299, 27.11449031961377],
+ [95.09239042476496, 27.111544843213014],
+ [95.09626548560946, 27.118286884112973],
+ [95.0964373818323, 27.121323537645093],
+ [95.09829299308717, 27.123007570850774],
+ [95.10001347975697, 27.122263497017045],
+ [95.10667110992324, 27.11599266068649],
+ [95.10788675058991, 27.11857477371857],
+ [95.10771885366667, 27.120403322360726],
+ [95.10935789278463, 27.12363873037319],
+ [95.10662396094723, 27.12957041390757],
+ [95.10799091743364, 27.13572201738539],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Mahmora',
+ district_3: 'CHARAIDEO',
+ object_id: 248,
+ district_1: 'Charaideo',
+ revenue_cr: 'Mahmora',
+ area: '294481483.3',
+ are_new: 294,
+ ID_NAM: 'CHARAIDEOMahmora',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.40706259256707, 26.956095517352075],
+ [93.32263978903978, 26.960107140849498],
+ [93.08815154071969, 26.91448958065668],
+ [93.06168219129127, 26.92216650650882],
+ [93.06120602849512, 26.872435458556726],
+ [93.04330102025448, 26.850790419116663],
+ [93.06415768051635, 26.82227059848148],
+ [93.06808309732239, 26.74661348240313],
+ [93.08408765849408, 26.70170554607145],
+ [93.10372355769215, 26.695323044635643],
+ [93.12338462229461, 26.65953848263524],
+ [93.145180305896, 26.59168327827554],
+ [93.21982406900334, 26.630970755743547],
+ [93.24171646792318, 26.68378537174747],
+ [93.30395902716077, 26.700333453358997],
+ [93.33093646191728, 26.708747052118657],
+ [93.37211346306356, 26.74578054892608],
+ [93.47100836117662, 26.756473272114363],
+ [93.46525429694731, 26.77711909925215],
+ [93.42924839024187, 26.78232131027366],
+ [93.43606388135302, 26.80770273151082],
+ [93.42180407034701, 26.817344075925245],
+ [93.43159213164905, 26.83969496461622],
+ [93.41718660851406, 26.840709009357223],
+ [93.42331254742324, 26.8621474654178],
+ [93.40769336800004, 26.864532793263276],
+ [93.40384227330901, 26.87943103467872],
+ [93.42270476796325, 26.904655662806647],
+ [93.40151576518222, 26.92339772530075],
+ [93.40706259256707, 26.956095517352075],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Biswanath',
+ district_3: 'BISWANATH',
+ object_id: 249,
+ district_1: 'Biswanath',
+ revenue_cr: 'Biswanath',
+ area: '1042300607',
+ are_new: 1042,
+ ID_NAM: 'BISWANATHBiswanath',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.53444493593706, 26.9487501602851],
+ [93.47057035162725, 26.936694671261687],
+ [93.40706259256707, 26.956095517352075],
+ [93.40151576518222, 26.92339772530075],
+ [93.42270476796325, 26.904655662806647],
+ [93.40384227330901, 26.87943103467872],
+ [93.40769336800004, 26.864532793263276],
+ [93.42331254742324, 26.8621474654178],
+ [93.41718660851406, 26.840709009357223],
+ [93.43159213164905, 26.83969496461622],
+ [93.42180407034701, 26.817344075925245],
+ [93.43606388135302, 26.80770273151082],
+ [93.42924839024187, 26.78232131027366],
+ [93.46525429694731, 26.77711909925215],
+ [93.47100836117662, 26.756473272114363],
+ [93.53770654715547, 26.75046103656405],
+ [93.56605494847776, 26.72214914921937],
+ [93.65094777930781, 26.706120422781805],
+ [93.67054101841138, 26.711986471215774],
+ [93.64909474801448, 26.76354995550054],
+ [93.64902419073877, 26.798407674802945],
+ [93.62465143641997, 26.80369687358011],
+ [93.62466841368051, 26.868085171592273],
+ [93.60076700539128, 26.899887038679513],
+ [93.54208926393333, 26.87553559294025],
+ [93.53444493593706, 26.9487501602851],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Helem',
+ district_3: 'BISWANATH',
+ object_id: 250,
+ district_1: 'Biswanath',
+ revenue_cr: 'Halem',
+ area: '427087304.2',
+ are_new: 427,
+ ID_NAM: 'BISWANATHHelem',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.76995155488743, 26.844776579888407],
+ [93.78915808453253, 26.85925251235973],
+ [93.7809008054752, 26.88536185378208],
+ [93.73956199349173, 26.89852698120609],
+ [93.7441939029294, 26.95779751266577],
+ [93.69768446273068, 26.99427884202052],
+ [93.66004233402401, 26.967052589908352],
+ [93.53444493593706, 26.9487501602851],
+ [93.54208926393333, 26.87553559294025],
+ [93.60076700539128, 26.899887038679513],
+ [93.62466841368051, 26.868085171592273],
+ [93.62465143641997, 26.80369687358011],
+ [93.64902419073877, 26.798407674802945],
+ [93.64909474801448, 26.76354995550054],
+ [93.6487205161553, 26.788061512697123],
+ [93.66992444803802, 26.800804651840256],
+ [93.6893787096823, 26.797502803898162],
+ [93.7124091123704, 26.816014832105473],
+ [93.75385634831369, 26.806976338474573],
+ [93.76995155488743, 26.844776579888407],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Gohpur',
+ district_3: 'BISWANATH',
+ object_id: 251,
+ district_1: 'Biswanath',
+ revenue_cr: 'Gohpur',
+ area: '313635939.7',
+ are_new: 314,
+ ID_NAM: 'BISWANATHGohpur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.9093788293267, 26.05743551598887],
+ [92.88614224082305, 26.06970344062506],
+ [92.86954007720526, 26.11056694518452],
+ [92.86403733464296, 26.095487900095165],
+ [92.82686577312651, 26.094387878230574],
+ [92.81776924481161, 26.076849358003862],
+ [92.7605818182915, 26.10291826018714],
+ [92.7406532695334, 26.094098339921256],
+ [92.73205257262778, 26.07203676270031],
+ [92.75092707236747, 26.075492193056117],
+ [92.75359088530703, 26.05645072735771],
+ [92.74567310025682, 26.03989654364003],
+ [92.76503569511456, 26.029162271515514],
+ [92.7587007137472, 26.014570818700346],
+ [92.78263409756896, 26.009876263353085],
+ [92.75709902747707, 26.002650231567966],
+ [92.77907900045903, 25.996004847969232],
+ [92.75926259917762, 25.9912154942819],
+ [92.77052525849331, 25.989175088543004],
+ [92.76274196920743, 25.960438269811934],
+ [92.77695532114362, 25.948375767675795],
+ [92.79810624254308, 25.96421178441378],
+ [92.807143461388, 25.95410218103941],
+ [92.79462089781832, 25.957403917902237],
+ [92.79007682385253, 25.93736729678139],
+ [92.80059052807145, 25.918480611215532],
+ [92.81777593726049, 25.923881728483707],
+ [92.83426931938895, 25.91351578460956],
+ [92.8532661849417, 25.925272309061647],
+ [92.84801097585091, 25.91015347926184],
+ [92.87086834145569, 25.910163201321403],
+ [92.8557081499387, 25.93180661024354],
+ [92.90023633871029, 25.931916281579927],
+ [92.90557821725973, 25.94473318900593],
+ [92.92390091246308, 26.001260725019836],
+ [92.9093788293267, 26.05743551598887],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Hojai',
+ district_3: 'HOJAI',
+ object_id: 252,
+ district_1: 'Hojai',
+ revenue_cr: 'Hojai',
+ area: '264542999.3',
+ are_new: 265,
+ ID_NAM: 'HOJAIHojai',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.03513014295781, 26.108459858494466],
+ [92.95461763759029, 26.14069630156794],
+ [92.9315461252999, 26.138748599655294],
+ [92.95604146821394, 26.174272768666366],
+ [92.93942737766415, 26.202505870038035],
+ [92.80197654501153, 26.201766714066615],
+ [92.77623692134291, 26.19952035427366],
+ [92.77845175899841, 26.18689878101677],
+ [92.75423973125025, 26.17863492698262],
+ [92.76171272626728, 26.157100731502616],
+ [92.75178409838617, 26.14223848741936],
+ [92.72254578551927, 26.150878429272275],
+ [92.7058733466968, 26.142229087783598],
+ [92.7027835643276, 26.1263274237514],
+ [92.7308455998053, 26.116514147243826],
+ [92.7230294600278, 26.100853277211087],
+ [92.73886487741461, 26.10358186311888],
+ [92.7406532695334, 26.094098339921256],
+ [92.7605818182915, 26.10291826018714],
+ [92.81776924481161, 26.076849358003862],
+ [92.82686577312651, 26.094387878230574],
+ [92.86403733464296, 26.095487900095165],
+ [92.86954007720526, 26.11056694518452],
+ [92.88614224082305, 26.06970344062506],
+ [92.9093788293267, 26.05743551598887],
+ [92.96983766588836, 26.052427198028507],
+ [92.98320874483774, 26.089290414339487],
+ [93.0263847139852, 26.090878746875145],
+ [93.03513014295781, 26.108459858494466],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Doboka',
+ district_3: 'HOJAI',
+ object_id: 253,
+ district_1: 'Hojai',
+ revenue_cr: 'Doboka',
+ area: '317748519.3',
+ are_new: 318,
+ ID_NAM: 'HOJAIDoboka',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [93.15801939894088, 25.995593620997578],
+ [93.12720343872084, 26.03103553503432],
+ [93.09340379165825, 26.033063076014717],
+ [93.10825983248465, 26.07834592888338],
+ [93.04054834237375, 26.086906338151742],
+ [93.03513014295781, 26.108459858494466],
+ [93.0263847139852, 26.090878746875145],
+ [92.98320874483774, 26.089290414339487],
+ [92.96983766588836, 26.052427198028507],
+ [92.9093788293267, 26.05743551598887],
+ [92.92390091246308, 26.001260725019836],
+ [92.90557821725973, 25.94473318900593],
+ [92.90023633871029, 25.931916281579927],
+ [92.8557081499387, 25.93180661024354],
+ [92.87086834145569, 25.910163201321403],
+ [92.84801097585091, 25.91015347926184],
+ [92.86807670364108, 25.868316574961007],
+ [92.98231696030575, 25.875407654418005],
+ [93.02892304036438, 25.81214483640207],
+ [93.07538655060094, 25.782844989285834],
+ [93.06366486744643, 25.776702405823006],
+ [93.06868881604711, 25.767082064453454],
+ [93.09471146562409, 25.76968035032316],
+ [93.09880223083292, 25.777001745586134],
+ [93.12952245130488, 25.76089589285241],
+ [93.12576913823256, 25.748668827189054],
+ [93.14854091505201, 25.733989459807486],
+ [93.14263543528999, 25.71850185334133],
+ [93.22649619887662, 25.72676440983884],
+ [93.22711653588597, 25.76543267722077],
+ [93.24780055791655, 25.78788341679615],
+ [93.23927226881607, 25.850972780474958],
+ [93.18302660459878, 25.903289293488807],
+ [93.15801939894088, 25.995593620997578],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Lanka',
+ district_3: 'HOJAI',
+ object_id: 254,
+ district_1: 'Hojai',
+ revenue_cr: 'Lanka',
+ area: '873440623.1',
+ are_new: 873,
+ ID_NAM: 'HOJAILanka',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.56377673012697, 26.115804302590682],
+ [92.53639844912439, 26.096413381535637],
+ [92.51967414517067, 26.10238207030111],
+ [92.52150287613729, 26.155349110201396],
+ [92.50877420849874, 26.1412219441978],
+ [92.48664574669529, 26.149357882042228],
+ [92.44145000186975, 26.095549160916846],
+ [92.41444685732984, 26.11557026331179],
+ [92.39541667416155, 26.113571331121232],
+ [92.3629048788397, 26.0775387421555],
+ [92.35964001931322, 26.091569760360482],
+ [92.32987722147442, 26.076769555963214],
+ [92.30379014382696, 26.086322461210916],
+ [92.27750319013045, 26.067635691156735],
+ [92.27481511189843, 26.06574799513614],
+ [92.26338736019984, 26.033227006289486],
+ [92.1808065090435, 25.98510766982106],
+ [92.15235833992743, 25.944415855474304],
+ [92.15466060521965, 25.911089749838403],
+ [92.19444854323875, 25.918554443375754],
+ [92.20219599423635, 25.906423448381055],
+ [92.2254826683087, 25.90926606807184],
+ [92.17716479367891, 25.872847173115062],
+ [92.1774244535084, 25.851598655061895],
+ [92.15102035680391, 25.816736230039556],
+ [92.14773520343685, 25.773047970615067],
+ [92.16262847763514, 25.740954515078013],
+ [92.14416619591474, 25.716911084453535],
+ [92.15606641833367, 25.672280830582597],
+ [92.17011417842359, 25.667226686485108],
+ [92.22495289046313, 25.716187355167815],
+ [92.26428867945026, 25.709189049830226],
+ [92.31125863558947, 25.72799260788707],
+ [92.33342798511144, 25.724213803092145],
+ [92.38393692527933, 25.754621011864202],
+ [92.38169538879526, 25.742142007963018],
+ [92.40653790451549, 25.744697698267956],
+ [92.41156640577806, 25.73013191417546],
+ [92.43109512877622, 25.73227404665067],
+ [92.44420761419633, 25.71979345686219],
+ [92.44056457651165, 25.691699542223482],
+ [92.47024922451399, 25.675249899205603],
+ [92.50554444615042, 25.616409840213795],
+ [92.55408164266018, 25.61490220519277],
+ [92.55663964843231, 25.571059993322525],
+ [92.57191217876715, 25.557760612613084],
+ [92.59473205138693, 25.55169197169006],
+ [92.64938078052364, 25.59230030528632],
+ [92.66134437998419, 25.57245676255394],
+ [92.68191798379496, 25.576042882556973],
+ [92.69664755171084, 25.599321142953816],
+ [92.72002754816477, 25.588534205273632],
+ [92.74866551243574, 25.59916527377671],
+ [92.7686780949954, 25.61801554658573],
+ [92.7586216090016, 25.629126747613746],
+ [92.78880711448723, 25.65733368292451],
+ [92.77640089711991, 25.677929446383985],
+ [92.8137535140819, 25.702290383253573],
+ [92.82061124757095, 25.74108536387924],
+ [92.92277461104806, 25.77222123703376],
+ [92.92854479734179, 25.80681251105136],
+ [92.94428160935483, 25.803170128864725],
+ [92.9658635523091, 25.817849284630842],
+ [92.95674153160307, 25.8028061001013],
+ [92.96741926998949, 25.781727969127186],
+ [92.98062694538869, 25.790474658355727],
+ [92.9835887016602, 25.780166224931286],
+ [92.98094767538615, 25.80861716083088],
+ [93.0060070525008, 25.82666522888454],
+ [93.002845698658, 25.786719926519215],
+ [93.01862606009766, 25.801224539836053],
+ [93.06366486744643, 25.776702405823006],
+ [93.07538655060094, 25.782844989285834],
+ [93.02892304036438, 25.81214483640207],
+ [92.98231696030575, 25.875407654418005],
+ [92.86807670364108, 25.868316574961007],
+ [92.84801097585091, 25.91015347926184],
+ [92.8532661849417, 25.925272309061647],
+ [92.83426931938895, 25.91351578460956],
+ [92.81777593726049, 25.923881728483707],
+ [92.80059052807145, 25.918480611215532],
+ [92.79007682385253, 25.93736729678139],
+ [92.79462089781832, 25.957403917902237],
+ [92.807143461388, 25.95410218103941],
+ [92.79810624254308, 25.96421178441378],
+ [92.77695532114362, 25.948375767675795],
+ [92.76274196920743, 25.960438269811934],
+ [92.77052525849331, 25.989175088543004],
+ [92.75926259917762, 25.9912154942819],
+ [92.77907900045903, 25.996004847969232],
+ [92.75709902747707, 26.002650231567966],
+ [92.78263409756896, 26.009876263353085],
+ [92.7587007137472, 26.014570818700346],
+ [92.76503569511456, 26.029162271515514],
+ [92.74567310025682, 26.03989654364003],
+ [92.75359088530703, 26.05645072735771],
+ [92.71736865170475, 26.058242908258293],
+ [92.71332045047073, 26.01800626616081],
+ [92.66689166730643, 26.028326323450692],
+ [92.65553454654538, 26.00019409752504],
+ [92.59593944282432, 25.978034808507164],
+ [92.58874326905195, 25.963961091559916],
+ [92.55256585509414, 25.965432447347588],
+ [92.56623909855902, 26.01067426364388],
+ [92.594445436709, 26.02355895483205],
+ [92.57951143289571, 26.033226791581754],
+ [92.59570107216875, 26.08070921358768],
+ [92.56377673012697, 26.115804302590682],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Donka',
+ district_3: 'WEST KARBI ANGLONG',
+ object_id: 255,
+ district_1: 'West Karbi Anglong',
+ revenue_cr: 'Donkamokam',
+ area: '3072801622',
+ are_new: 3073,
+ ID_NAM: 'WEST KARBI ANGLONGDonka',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.18032598121253, 26.048011604231704],
+ [90.12535876876487, 26.054762659042144],
+ [90.0709035690797, 26.02637536949095],
+ [90.05627408157132, 26.00051003075128],
+ [90.01942848723044, 26.002321286638722],
+ [89.96798657387644, 25.972992068004086],
+ [89.94517460912614, 25.950001098282428],
+ [89.94895752707698, 25.925041218956537],
+ [89.9303222594772, 25.906346696438636],
+ [89.89786477090759, 25.90037088748505],
+ [89.8764324738049, 25.879088206170177],
+ [89.84311755587302, 25.882881951016234],
+ [89.8167540073238, 25.814893327780773],
+ [89.83266221519811, 25.78964205271236],
+ [89.88589394989049, 25.782633911616887],
+ [89.89616781919992, 25.790776951192107],
+ [89.94335289669684, 25.757424190107606],
+ [89.95929008871377, 25.780021366062716],
+ [89.9481984030512, 25.825561825274384],
+ [89.96194340753419, 25.82027963994927],
+ [89.9639111420112, 25.83314893466229],
+ [89.9710282460723, 25.826458740378314],
+ [90.00352460025266, 25.839326763410508],
+ [90.02375963082952, 25.867309052051663],
+ [90.0080324882822, 25.88169958268971],
+ [90.02517354495075, 25.895786325586354],
+ [90.04242428322051, 25.887758414841883],
+ [90.11787053562564, 25.95754143724236],
+ [90.11982582484275, 25.969536968253426],
+ [90.187552211716, 26.001425514370634],
+ [90.19732184857162, 26.025957180029778],
+ [90.1708134080553, 26.04392331259091],
+ [90.18032598121253, 26.048011604231704],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'South Salmara',
+ district_3: 'SOUTH SALMARA MANCACHAR',
+ object_id: 256,
+ district_1: 'South Salmara Mancachar',
+ revenue_cr: 'South Salmara',
+ area: '435496775.1',
+ are_new: 435,
+ ID_NAM: 'SOUTH SALMARA MANCACHARSouth Salmara',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [89.94335289669684, 25.757424190107606],
+ [89.89616781919992, 25.790776951192107],
+ [89.88589394989049, 25.782633911616887],
+ [89.83266221519811, 25.78964205271236],
+ [89.84124164448937, 25.76066460924252],
+ [89.82678856274657, 25.732979781991723],
+ [89.83497102202222, 25.715872105034457],
+ [89.8493598751205, 25.71514420452199],
+ [89.84658407280773, 25.69574532168736],
+ [89.87091383824863, 25.662701060794124],
+ [89.88230965483886, 25.617300616932976],
+ [89.86605040241955, 25.54612366942217],
+ [89.85136496154703, 25.538918524167997],
+ [89.86019266272494, 25.517417526131126],
+ [89.85129089904513, 25.46635085904682],
+ [89.8716262885072, 25.477439560256283],
+ [89.8728068257075, 25.507506686992198],
+ [89.88587249452823, 25.508011750110462],
+ [89.86787219929045, 25.5243327240208],
+ [89.87829943796831, 25.550425151946097],
+ [89.97209395522309, 25.573583083332068],
+ [89.98344120709244, 25.591339992593127],
+ [90.00293597826443, 25.58551566100192],
+ [90.02018693572315, 25.607578558398927],
+ [89.95076338424147, 25.655306494973008],
+ [89.94435381755272, 25.679348012365153],
+ [89.89515431474354, 25.732444679505157],
+ [89.89663197870719, 25.746499066971186],
+ [89.92663895480993, 25.738538944443402],
+ [89.94335289669684, 25.757424190107606],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Mankachar',
+ district_3: 'SOUTH SALMARA MANCACHAR',
+ object_id: 257,
+ district_1: 'South Salmara Mancachar',
+ revenue_cr: 'Mankachar',
+ area: '248678182.6',
+ are_new: 249,
+ ID_NAM: 'SOUTH SALMARA MANCACHARMankachar',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.61612007855366, 26.516463799558267],
+ [91.618925332133, 26.566615968376816],
+ [91.58480058566741, 26.55588255825995],
+ [91.57409015848613, 26.555367340504013],
+ [91.57811019663768, 26.528932899874107],
+ [91.58960233777921, 26.514492577333343],
+ [91.61433942631938, 26.512768845966924],
+ [91.6155924262244, 26.51274831242669],
+ [91.61612007855366, 26.516463799558267],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Bajali (Pt)',
+ district_3: 'TAMULPUR',
+ object_id: 258,
+ district_1: 'Baksa',
+ revenue_cr: 'Bajali (Pt)',
+ area: '17844174.95',
+ are_new: 18,
+ ID_NAM: 'TAMULPURBajali (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.6155924262244, 26.51274831242669],
+ [91.61747602349129, 26.51271744496313],
+ [91.61461925961521, 26.487632445374704],
+ [91.62946064891932, 26.48674734168693],
+ [91.618015879536, 26.468746987545636],
+ [91.629267407827, 26.464858553902435],
+ [91.62442975364657, 26.44762037049803],
+ [91.67671346927017, 26.448434642657652],
+ [91.68757147348296, 26.459889006196153],
+ [91.7201433247748, 26.476967804815402],
+ [91.72487169800259, 26.503059258101953],
+ [91.75425395870727, 26.494443076974736],
+ [91.752251163883, 26.481591983274722],
+ [91.77987784972287, 26.481756852039407],
+ [91.78487557021222, 26.493421857446684],
+ [91.78057055950309, 26.511804056446966],
+ [91.78027657774152, 26.549321073279405],
+ [91.74899112651299, 26.58123888887221],
+ [91.76260693888509, 26.593660201617546],
+ [91.75043137654339, 26.58692154452606],
+ [91.75162201529905, 26.604969249214385],
+ [91.73721877208824, 26.604973194520582],
+ [91.74641910253082, 26.626897747525735],
+ [91.7331252715094, 26.63022432527946],
+ [91.75031567353477, 26.63621976034164],
+ [91.73283328670269, 26.656419303664407],
+ [91.7443335144784, 26.683693989960858],
+ [91.70538223138234, 26.809625947422656],
+ [91.7074491740027, 26.709619053345506],
+ [91.6834508069516, 26.68623980305656],
+ [91.67431540224618, 26.637610459963906],
+ [91.65816008310857, 26.636852699562027],
+ [91.67116258329685, 26.623383963021663],
+ [91.65877261285979, 26.622264074929394],
+ [91.67526108300027, 26.61421628614525],
+ [91.66017477881371, 26.610073546383454],
+ [91.66602249510636, 26.560800891691976],
+ [91.66147439489146, 26.550086654522246],
+ [91.65376988785599, 26.556807923011803],
+ [91.65438269518663, 26.538339589888754],
+ [91.63238428428348, 26.53715477367462],
+ [91.63310592251078, 26.523138467673125],
+ [91.61612007855366, 26.516463799558267],
+ [91.6155924262244, 26.51274831242669],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Goreswar (Pt)',
+ district_3: 'TAMULPUR',
+ object_id: 259,
+ district_1: 'Baksa',
+ revenue_cr: 'Goreswar (Pt)',
+ area: '283216711.9',
+ are_new: 283,
+ ID_NAM: 'TAMULPURGoreswar (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.55997811405612, 26.566166612705654],
+ [91.577401732204, 26.572283910134466],
+ [91.58480058566741, 26.55588255825995],
+ [91.618925332133, 26.566615968376816],
+ [91.61612007855366, 26.516463799558267],
+ [91.63310592251078, 26.523138467673125],
+ [91.63238428428348, 26.53715477367462],
+ [91.65438269518663, 26.538339589888754],
+ [91.65376988785599, 26.556807923011803],
+ [91.66147439489146, 26.550086654522246],
+ [91.66602249510636, 26.560800891691976],
+ [91.66017477881371, 26.610073546383454],
+ [91.67526108300027, 26.61421628614525],
+ [91.65877261285979, 26.622264074929394],
+ [91.67116258329685, 26.623383963021663],
+ [91.65816008310857, 26.636852699562027],
+ [91.67431540224618, 26.637610459963906],
+ [91.6834508069516, 26.68623980305656],
+ [91.7074491740027, 26.709619053345506],
+ [91.70538223138234, 26.809625947422656],
+ [91.70433787788079, 26.81280527600726],
+ [91.62593958987382, 26.821030296563606],
+ [91.59296507145085, 26.80520717310645],
+ [91.49520035188156, 26.79121063173684],
+ [91.40686119644774, 26.83835115189944],
+ [91.46014398599098, 26.72559187221311],
+ [91.49000972896474, 26.696197813921707],
+ [91.5094452068364, 26.629931613629985],
+ [91.49124540565549, 26.627929999874016],
+ [91.48788890988517, 26.61346017607371],
+ [91.50229189707615, 26.601619000614058],
+ [91.53159361383264, 26.609196545081335],
+ [91.55619490736417, 26.58751768535087],
+ [91.55997811405612, 26.566166612705654],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Tamulpur',
+ district_3: 'TAMULPUR',
+ object_id: 261,
+ district_1: 'Baksa',
+ revenue_cr: 'Tamulpur',
+ area: '549366262.9',
+ are_new: 549,
+ ID_NAM: 'TAMULPURTamulpur',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.23758008704172, 26.59162328689672],
+ [91.23748640892723, 26.577257467779575],
+ [91.26909822618337, 26.58439678598049],
+ [91.25842655681501, 26.57059280294294],
+ [91.28992953958117, 26.563533938154016],
+ [91.33511434562148, 26.58263035681528],
+ [91.32478657649672, 26.560251568513383],
+ [91.35825231168334, 26.57464406320148],
+ [91.37494763329109, 26.61673378435448],
+ [91.4236743644443, 26.614099286532625],
+ [91.4196566394546, 26.679565473201023],
+ [91.38954476977113, 26.671487294739933],
+ [91.38672206731569, 26.718114416089346],
+ [91.4146461718714, 26.727778911222792],
+ [91.41358484200762, 26.75856055969904],
+ [91.35932893626315, 26.78893273172281],
+ [91.3373048694755, 26.780616092091236],
+ [91.29664325336728, 26.787207311616395],
+ [91.29170224801341, 26.69707857394617],
+ [91.27822512204642, 26.66922004739549],
+ [91.25337748503075, 26.65911683029009],
+ [91.23569084465925, 26.616826675799484],
+ [91.24939810732391, 26.616362637850177],
+ [91.23357903119043, 26.608050529654907],
+ [91.23758008704172, 26.59162328689672],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Baksa',
+ district_3: 'BAKSA',
+ object_id: 262,
+ district_1: 'Baksa',
+ revenue_cr: 'Baska',
+ area: '295501945.5',
+ are_new: 296,
+ ID_NAM: 'BAKSABaksa',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.0278799560615, 26.530712564473287],
+ [91.07192221824813, 26.51622813113064],
+ [91.08078350114631, 26.55627080976028],
+ [91.10986379406656, 26.561190031279732],
+ [91.1257658044637, 26.593987859410383],
+ [91.11634444803701, 26.632118599520783],
+ [91.09782892137308, 26.62898872518531],
+ [91.11274894021399, 26.651462289364034],
+ [91.09527488615448, 26.65232709276873],
+ [91.09737658638984, 26.66538420696185],
+ [91.1275149680523, 26.650111822956305],
+ [91.14506146315468, 26.66310106512519],
+ [91.15039297155244, 26.694972959279145],
+ [91.10362679015057, 26.70888785138179],
+ [91.06025646060995, 26.669783674764844],
+ [91.03242048347856, 26.66402841264239],
+ [91.04754050862424, 26.65173361762841],
+ [91.02875255527397, 26.63520136130574],
+ [91.02518069649913, 26.59820426821196],
+ [91.06281371988207, 26.575390228930427],
+ [91.06030504239884, 26.557397926204768],
+ [91.04118971331464, 26.557055124788423],
+ [91.0278799560615, 26.530712564473287],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sarupeta (Pt)',
+ district_3: 'BAKSA',
+ object_id: 263,
+ district_1: 'Baksa',
+ revenue_cr: 'Sarupeta (Pt)',
+ area: '134708247.8',
+ are_new: 135,
+ ID_NAM: 'BAKSASarupeta (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [90.91699934645717, 26.4680845101617],
+ [90.97736678752352, 26.503868298435144],
+ [90.99491439204525, 26.600849673707806],
+ [90.98908598683629, 26.59057465610156],
+ [90.96339314652937, 26.5985726879975],
+ [90.96350780479729, 26.583182450296466],
+ [90.93496025146808, 26.58414076383598],
+ [90.93290956476109, 26.55515889257517],
+ [90.91293477432542, 26.578609831259737],
+ [90.89129903935361, 26.552068128042137],
+ [90.87635361615642, 26.56328814922648],
+ [90.8231550930784, 26.560902190630586],
+ [90.85160956836776, 26.52733578583181],
+ [90.84211539450413, 26.499605780332846],
+ [90.8049322599919, 26.49675122148069],
+ [90.80386788304268, 26.477874806719253],
+ [90.81847767229353, 26.47569707072405],
+ [90.82767095006282, 26.448758407385153],
+ [90.79707005640329, 26.43563850268989],
+ [90.81282401995001, 26.428195213468964],
+ [90.84977897429526, 26.442369863740048],
+ [90.86164073983684, 26.4310748887692],
+ [90.85155296821665, 26.41462043441125],
+ [90.91845735528244, 26.4290652218269],
+ [90.91699934645717, 26.4680845101617],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Barnagar (Pt)',
+ district_3: 'BARPETA',
+ object_id: 264,
+ district_1: 'Barpeta',
+ revenue_cr: 'Barnagar (Pt)',
+ area: '207191146.6',
+ are_new: 207,
+ ID_NAM: 'BARPETABarnagar (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.14506146315468, 26.66310106512519],
+ [91.1275149680523, 26.650111822956305],
+ [91.09737658638984, 26.66538420696185],
+ [91.09527488615448, 26.65232709276873],
+ [91.11274894021399, 26.651462289364034],
+ [91.09782892137308, 26.62898872518531],
+ [91.11634444803701, 26.632118599520783],
+ [91.1257658044637, 26.593987859410383],
+ [91.10986379406656, 26.561190031279732],
+ [91.08078350114631, 26.55627080976028],
+ [91.07192221824813, 26.51622813113064],
+ [91.0278799560615, 26.530712564473287],
+ [91.00187310335878, 26.530942332821965],
+ [90.99066528349624, 26.523286521443488],
+ [90.99565234637308, 26.50289004338387],
+ [90.97736678752352, 26.503868298435144],
+ [90.91699934645717, 26.4680845101617],
+ [90.98072883578061, 26.416610080939112],
+ [91.05652847643537, 26.42888958511342],
+ [91.0567841935591, 26.415199875298285],
+ [91.08475336479599, 26.425830040359862],
+ [91.0955272642403, 26.411902988578387],
+ [91.12271291141163, 26.42572957881444],
+ [91.10268451221476, 26.45093884396417],
+ [91.12927307257296, 26.47256111169891],
+ [91.1384143971761, 26.51023537546167],
+ [91.16041482389879, 26.530007277847744],
+ [91.14286446693902, 26.587704859266754],
+ [91.15137182798829, 26.63889794076979],
+ [91.15768559114865, 26.65150980405196],
+ [91.14506146315468, 26.66310106512519],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sarupeta (Pt)',
+ district_3: 'BAJALI',
+ object_id: 265,
+ district_1: 'Barpeta',
+ revenue_cr: 'Sarupeta (Pt)',
+ area: '261584874.2',
+ are_new: 262,
+ ID_NAM: 'BAJALISarupeta (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.01785504944317, 26.224337303887015],
+ [90.89554242293933, 26.1708537377706],
+ [90.94390237914857, 26.139501548594403],
+ [90.99273167724601, 26.149649703363263],
+ [91.00638658699424, 26.128110144373093],
+ [91.02972701176157, 26.11918213794883],
+ [91.0813764179799, 26.161775959363926],
+ [91.11699313408008, 26.15468248888887],
+ [91.22004828119088, 26.179533712181893],
+ [91.22210213805252, 26.179396358129598],
+ [91.23733391541619, 26.18027876117714],
+ [91.24845588867692, 26.200753667981246],
+ [91.21534882024051, 26.220613008026792],
+ [91.21564214802855, 26.239204784944114],
+ [91.24086584407664, 26.260273391645253],
+ [91.21823866367858, 26.260340835923177],
+ [91.21881198825584, 26.273461104019674],
+ [91.18678895100877, 26.27164028201506],
+ [91.18297410603441, 26.291353564287743],
+ [91.14622114955891, 26.299604035812152],
+ [91.11832854712358, 26.303805993924403],
+ [91.12466183696326, 26.288869571169858],
+ [91.08652049109702, 26.281128499202886],
+ [91.10285060891415, 26.25952196843293],
+ [91.08935501448329, 26.245742313412464],
+ [91.09547228554827, 26.228653563287374],
+ [91.01785504944317, 26.224337303887015],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Chenga',
+ district_3: 'BARPETA',
+ object_id: 266,
+ district_1: 'Barpeta',
+ revenue_cr: 'Chenga',
+ area: '317522242.4',
+ are_new: 318,
+ ID_NAM: 'BARPETAChenga',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.7487331501263, 26.208966411392193],
+ [91.73142722565369, 26.21089906286072],
+ [91.71182218897549, 26.191380294691555],
+ [91.69475950223067, 26.204030617289085],
+ [91.67186824408851, 26.201853841960013],
+ [91.68228882984339, 26.215836565976264],
+ [91.66669141210795, 26.218635908558156],
+ [91.64349852754117, 26.195526923398365],
+ [91.65735351635766, 26.182264326802134],
+ [91.64900405667747, 26.16563173103004],
+ [91.64880228697982, 26.164976789958068],
+ [91.64892252378566, 26.163930498324685],
+ [91.64839992707249, 26.16121045365716],
+ [91.64656909404812, 26.15684627592399],
+ [91.64535904898737, 26.15480324626511],
+ [91.64402798738313, 26.152487635011415],
+ [91.64279931575494, 26.15088257315953],
+ [91.63873451185785, 26.14620141723633],
+ [91.6380843939002, 26.145306375684665],
+ [91.63601574537908, 26.142568507216357],
+ [91.63543704438486, 26.141709101914433],
+ [91.63523173263005, 26.14095130283155],
+ [91.63570427791053, 26.13991080772637],
+ [91.63610484028898, 26.139819314253863],
+ [91.63700737226505, 26.13975187916233],
+ [91.63734415066506, 26.13946004761091],
+ [91.63873138033077, 26.138253070753386],
+ [91.63972662113908, 26.137214478222557],
+ [91.6397157667955, 26.13412133138513],
+ [91.63064568488258, 26.13349462334636],
+ [91.62597757423728, 26.12510842601094],
+ [91.62630563718243, 26.121529810915852],
+ [91.6284844272422, 26.122385632779494],
+ [91.63060834820443, 26.12374865929515],
+ [91.63078601969625, 26.123960151318606],
+ [91.63238930856087, 26.12489016919459],
+ [91.6319889096758, 26.12523955460107],
+ [91.63138241390834, 26.12528485700982],
+ [91.63029663369915, 26.125529518264848],
+ [91.63012977882167, 26.125930214203827],
+ [91.63044268359468, 26.126383229176728],
+ [91.63051110198167, 26.131323799806843],
+ [91.63201963924503, 26.13174252598695],
+ [91.63238869590984, 26.13132663463926],
+ [91.63463030156416, 26.12962645997625],
+ [91.63761828684534, 26.129035266752936],
+ [91.64051117916551, 26.130410389833024],
+ [91.64105456558931, 26.130390262766774],
+ [91.64243993304741, 26.130881603820143],
+ [91.64392089472652, 26.131919708293847],
+ [91.64484206404975, 26.1320559319044],
+ [91.64643115414299, 26.13009533019886],
+ [91.64702780167995, 26.129469090913055],
+ [91.64922907297802, 26.12722386896775],
+ [91.6531088760289, 26.124205108123643],
+ [91.65642576597666, 26.12297213083296],
+ [91.65715828280206, 26.122613606820646],
+ [91.65969829711564, 26.122320791996785],
+ [91.661606623308, 26.121829153609422],
+ [91.66378979714635, 26.120373249021558],
+ [91.6657586823653, 26.11963545170962],
+ [91.66775528240734, 26.11936271806319],
+ [91.67046807059789, 26.118974804880814],
+ [91.67104364275998, 26.118070065955116],
+ [91.67115780695451, 26.111442113760734],
+ [91.67300412603603, 26.11003178980368],
+ [91.67354382397728, 26.109232275102],
+ [91.67586290213833, 26.108568132321732],
+ [91.67719187875282, 26.10869415965217],
+ [91.68121706604757, 26.10683866079207],
+ [91.68240531258965, 26.10568269001303],
+ [91.68305017540287, 26.10528555711036],
+ [91.68467805115678, 26.104958281974685],
+ [91.68904827865722, 26.105553419835378],
+ [91.6902531287607, 26.106057892242024],
+ [91.69114786874998, 26.10615483378201],
+ [91.69267074582024, 26.10671414718616],
+ [91.69526654371634, 26.108509098229177],
+ [91.69706084944464, 26.10953897686718],
+ [91.69927700582699, 26.110911085106217],
+ [91.70639469199637, 26.110051253283512],
+ [91.73792702811274, 26.16514194882501],
+ [91.76062845876062, 26.158383523400506],
+ [91.77485878256745, 26.18119588089202],
+ [91.80206731791391, 26.17581741297894],
+ [91.82679997596311, 26.19477508979443],
+ [91.82115516214368, 26.207688447846664],
+ [91.76969055554898, 26.19847761863056],
+ [91.7487331501263, 26.208966411392193],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'North Guwahati (Pt)',
+ district_3: 'KAMRUP METRO',
+ object_id: 267,
+ district_1: 'KAMRUP METRO',
+ revenue_cr: 'North Guwahati (Pt)',
+ area: '114789346.1',
+ are_new: 115,
+ ID_NAM: 'KAMRUP METRONorth Guwahati (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.90111337284492, 26.642867937128695],
+ [91.88037547525349, 26.651852126637923],
+ [91.82177661126735, 26.64106350029274],
+ [91.79330094292384, 26.679263183711868],
+ [91.7443335144784, 26.683693989960858],
+ [91.73283328670269, 26.656419303664407],
+ [91.75031567353477, 26.63621976034164],
+ [91.7331252715094, 26.63022432527946],
+ [91.74641910253082, 26.626897747525735],
+ [91.73721877208824, 26.604973194520582],
+ [91.75162201529905, 26.604969249214385],
+ [91.75043137654339, 26.58692154452606],
+ [91.76260693888509, 26.593660201617546],
+ [91.74899112651299, 26.58123888887221],
+ [91.78027657774152, 26.549321073279405],
+ [91.78057055950309, 26.511804056446966],
+ [91.81817629566096, 26.511824276503685],
+ [91.81361225663797, 26.52566889101198],
+ [91.83266517436951, 26.525550589679266],
+ [91.8628183270302, 26.53806821446016],
+ [91.90111337284492, 26.642867937128695],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Kalaigaon (Pt)',
+ district_3: 'UDALGURI',
+ object_id: 268,
+ district_1: 'Udalguri',
+ revenue_cr: 'Kalaigaon (Pt)',
+ area: '191989620.2',
+ are_new: 192,
+ ID_NAM: 'UDALGURIKalaigaon (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.15972354968683, 26.4146332883802],
+ [92.14343674773437, 26.446706413411558],
+ [92.05831734382335, 26.42237552621235],
+ [92.08243029458222, 26.463034830576262],
+ [92.05464294235883, 26.452961288743904],
+ [92.06282413500989, 26.47360093320085],
+ [92.0408596229323, 26.50999551979134],
+ [92.02550065670084, 26.508063194678552],
+ [92.0331047599353, 26.525192743199426],
+ [92.01941161878692, 26.521872411614662],
+ [92.02821193931496, 26.54219148106679],
+ [92.00303351566221, 26.543182144455656],
+ [92.01241251652324, 26.53624318934938],
+ [92.00816299564754, 26.51878041665822],
+ [91.94295273957944, 26.516820800301822],
+ [91.93795955288734, 26.502250426718145],
+ [91.94596662868017, 26.479280910721616],
+ [91.93432209823216, 26.46017897872482],
+ [91.91464498432883, 26.45742353425664],
+ [91.92328812034337, 26.433707680236516],
+ [91.95105386628757, 26.436224987273707],
+ [91.93481789011553, 26.401397017580102],
+ [91.94841217705682, 26.365828985638753],
+ [91.91991469402492, 26.36225829859724],
+ [91.90887864372282, 26.32410591804348],
+ [91.94166610236094, 26.2479980806678],
+ [91.97864382001548, 26.27422162623736],
+ [92.01541851212757, 26.283121527962024],
+ [92.03876513347375, 26.27243705001778],
+ [92.07219339903159, 26.314570456053357],
+ [92.15972354968683, 26.4146332883802],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Mangaldoi (Pt)',
+ district_3: 'DARRANG',
+ object_id: 269,
+ district_1: 'Darrang',
+ revenue_cr: 'Mangaldoi (Pt)',
+ area: '439678093.9',
+ are_new: 440,
+ ID_NAM: 'DARRANGMangaldoi (Pt)',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.02846679944591, 26.545865922815054],
+ [92.05449296772383, 26.54415032513857],
+ [92.0408596229323, 26.50999551979134],
+ [92.06282413500989, 26.47360093320085],
+ [92.05464294235883, 26.452961288743904],
+ [92.08243029458222, 26.463034830576262],
+ [92.05831734382335, 26.42237552621235],
+ [92.14343674773437, 26.446706413411558],
+ [92.15972354968683, 26.4146332883802],
+ [92.18190126611734, 26.424456784544116],
+ [92.21621265285455, 26.4147271552154],
+ [92.24462781068054, 26.446111464539204],
+ [92.28319891776522, 26.455487526838972],
+ [92.34418479770073, 26.504668603515846],
+ [92.33143542030162, 26.51586519151396],
+ [92.35422615696345, 26.534810718932157],
+ [92.3807409943829, 26.527487651153937],
+ [92.36612992503281, 26.5661851624113],
+ [92.35222538424692, 26.57001497074243],
+ [92.3605866262304, 26.582343836122135],
+ [92.32531342140328, 26.589427785801284],
+ [92.34427240949208, 26.59779021232468],
+ [92.33281671300162, 26.623556208972595],
+ [92.31190467339908, 26.60715085265598],
+ [92.31427558884366, 26.624072824808454],
+ [92.29419317933865, 26.62202087111727],
+ [92.28961750892933, 26.65094808397123],
+ [92.27583788427359, 26.65752108391362],
+ [92.2731733814279, 26.616261805598548],
+ [92.24223720865655, 26.603222234663242],
+ [92.2646924030002, 26.570619861953617],
+ [92.23055264838115, 26.548747836450254],
+ [92.23458194007843, 26.596964499390534],
+ [92.2203185205399, 26.628191297933704],
+ [92.19371328745007, 26.634945453668482],
+ [92.20210076383307, 26.651311355170773],
+ [92.17689210198958, 26.651444256884066],
+ [92.18124812173546, 26.670228766197976],
+ [92.11858787104359, 26.6526219292074],
+ [92.12152982844626, 26.64368805619227],
+ [92.0563656316977, 26.64648407908395],
+ [92.02594503530558, 26.615222063137768],
+ [92.03319093891376, 26.59268471162544],
+ [91.99836258430693, 26.5896960947187],
+ [92.00586116154666, 26.559595742348286],
+ [92.02846679944591, 26.545865922815054],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Dalgaon (Pt)',
+ district_3: 'DARRANG',
+ object_id: 270,
+ district_1: 'Darrang',
+ revenue_cr: 'Dalgaon (Pt)',
+ area: '649172827.9',
+ are_new: 649,
+ ID_NAM: 'DARRANGDalgaon (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.24479027369462, 26.324411578895567],
+ [92.24324902877177, 26.33275298145559],
+ [92.22843466977454, 26.317854061649378],
+ [92.20843384706025, 26.32707453607066],
+ [92.1907105940527, 26.29857597327979],
+ [92.14271205882834, 26.317630951651473],
+ [92.14234021019965, 26.332944272206145],
+ [92.12648154980315, 26.32921197195818],
+ [92.12295808327268, 26.312130776097735],
+ [92.09029783685857, 26.3282576282737],
+ [92.07219339903159, 26.314570456053357],
+ [92.03876513347375, 26.27243705001778],
+ [92.01541851212757, 26.283121527962024],
+ [91.97864382001548, 26.27422162623736],
+ [91.98005007779551, 26.239231048340766],
+ [92.01039004500099, 26.24284566099988],
+ [92.01364153939268, 26.22799195860151],
+ [92.05615318013302, 26.220039104503083],
+ [92.05125330055117, 26.20987970504238],
+ [92.08097973818055, 26.185449668756426],
+ [92.0934338582104, 26.189063397810347],
+ [92.07998237914478, 26.177307822982655],
+ [92.12971415352276, 26.180554991479916],
+ [92.14972204957155, 26.161489706760143],
+ [92.1547055479333, 26.17083981833732],
+ [92.16699648000862, 26.163954302650332],
+ [92.17611706969842, 26.07805343568472],
+ [92.18708277023568, 26.066671499110548],
+ [92.27481511189843, 26.06574799513614],
+ [92.27750319013045, 26.067635691156735],
+ [92.28267048649428, 26.097834458846457],
+ [92.26503889937496, 26.112933151560444],
+ [92.28151345012013, 26.119668693945112],
+ [92.2976160237775, 26.1551819667954],
+ [92.24708209696996, 26.169355723903667],
+ [92.25801071235733, 26.18399556464081],
+ [92.24830600213724, 26.198295676234423],
+ [92.27484028808259, 26.23531484568901],
+ [92.2544222536144, 26.23965198302295],
+ [92.24479027369462, 26.324411578895567],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Mayong',
+ district_3: 'MORIGAON',
+ object_id: 271,
+ district_1: 'Morigaon',
+ revenue_cr: 'Mayong',
+ area: '486035918.5',
+ are_new: 486,
+ ID_NAM: 'MORIGAONMayong',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.47639846655954, 25.85740794735906],
+ [91.47224023068637, 25.938472236396883],
+ [91.47936810644602, 25.95742328637808],
+ [91.48075911083254, 25.958694516961202],
+ [91.49694220841735, 26.010852479198395],
+ [91.52367989471713, 25.998959831562818],
+ [91.52854595064876, 26.045966843177936],
+ [91.56835746966898, 26.059798962023407],
+ [91.57937013143437, 26.082317836666945],
+ [91.57934274539463, 26.08261598801037],
+ [91.57942739005055, 26.083543819888266],
+ [91.5796800807501, 26.083849845124465],
+ [91.58357086031542, 26.08473062091328],
+ [91.5847981988437, 26.085370346935626],
+ [91.58710025662509, 26.089412656839436],
+ [91.58674434141459, 26.09191652090314],
+ [91.58585814081036, 26.09255107339949],
+ [91.5752099623867, 26.09503425309565],
+ [91.57293512086346, 26.096218714210288],
+ [91.57337804868902, 26.09959724292099],
+ [91.57343856190153, 26.10223262664383],
+ [91.57247758014319, 26.103035099750894],
+ [91.57241420579652, 26.103035194940414],
+ [91.56758020775929, 26.10307412503298],
+ [91.56449839075174, 26.10675509191047],
+ [91.5644053782889, 26.108607497777825],
+ [91.56489319403087, 26.114947416199737],
+ [91.5645220640544, 26.11728982088566],
+ [91.56136845458767, 26.12166649105879],
+ [91.561151321902, 26.122738539029434],
+ [91.56155107400009, 26.12465817011316],
+ [91.56209593635586, 26.12668895439364],
+ [91.561381792773, 26.130132371317856],
+ [91.56097448584337, 26.131584038748322],
+ [91.56117269641588, 26.137214328221937],
+ [91.56162643456757, 26.140882711167286],
+ [91.56191122476716, 26.141766848309206],
+ [91.56192360714503, 26.14182417049682],
+ [91.5177296787957, 26.13870887500188],
+ [91.47117062913546, 26.1543511841794],
+ [91.41386488191596, 26.136041105250175],
+ [91.39066002190818, 26.13901364296463],
+ [91.35364515622166, 26.167290791547092],
+ [91.32263599892674, 26.160443659596652],
+ [91.33884908692366, 26.139856790183696],
+ [91.31999833594512, 26.13480305760466],
+ [91.31806762283755, 26.120011447184552],
+ [91.37150636440573, 26.085670175123745],
+ [91.3961897696245, 26.089417288591505],
+ [91.40499025634088, 26.065239620014598],
+ [91.42972965894123, 26.072277918826213],
+ [91.44748478776833, 26.05692781577011],
+ [91.42504438328749, 26.021863008074995],
+ [91.42810114718009, 25.98930985358987],
+ [91.4272114674008, 25.987037716381167],
+ [91.42494346565014, 25.981171893639708],
+ [91.42338455535723, 25.97633584711946],
+ [91.41636474512966, 25.964705129242326],
+ [91.4145148992623, 25.962677106009547],
+ [91.41382732964216, 25.960268663385197],
+ [91.41224828181552, 25.950761005817416],
+ [91.41056738120533, 25.93929750047796],
+ [91.40250956048041, 25.922951452516234],
+ [91.40019122612442, 25.919302742286256],
+ [91.40017374940055, 25.90980921263202],
+ [91.39578140717445, 25.90037067091855],
+ [91.39503999343448, 25.89937585475986],
+ [91.39298419980508, 25.895034847834463],
+ [91.39193056041847, 25.890554728611946],
+ [91.39092340705115, 25.887790986525744],
+ [91.3868298840144, 25.882943467424624],
+ [91.38374162069636, 25.877989443548163],
+ [91.38508906128321, 25.875235007823694],
+ [91.38950834398464, 25.87043380398831],
+ [91.39068926835887, 25.868248860944238],
+ [91.39049087722499, 25.867247073230242],
+ [91.38858255013432, 25.865354099546707],
+ [91.38417553302975, 25.86387376195692],
+ [91.38305894869114, 25.86226998700948],
+ [91.37873215383637, 25.857636051191804],
+ [91.37292510517497, 25.855077572807563],
+ [91.3699821066249, 25.854571653761603],
+ [91.36408191165165, 25.852342670237785],
+ [91.3616405350512, 25.849369866109882],
+ [91.3609106350182, 25.845627287134334],
+ [91.35873130417264, 25.84117835009888],
+ [91.35873127542654, 25.84117829673861],
+ [91.42239404597551, 25.854569666720874],
+ [91.44507565799161, 25.839833654806117],
+ [91.47639846655954, 25.85740794735906],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Palasbari',
+ district_3: 'KAMRUP',
+ object_id: 272,
+ district_1: 'Kamrup',
+ revenue_cr: 'Palasbari',
+ area: '392624055.8',
+ are_new: 393,
+ ID_NAM: 'KAMRUPPalasbari',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [91.47224023068637, 25.938472236396883],
+ [91.47639846655954, 25.85740794735906],
+ [91.53036021177769, 25.8713499409137],
+ [91.52651272022929, 25.891169578931336],
+ [91.51306440233515, 25.865808915699937],
+ [91.47473593020871, 25.8741169282293],
+ [91.53688184958635, 25.931307810946937],
+ [91.50459834133106, 25.91148968609691],
+ [91.518003102612, 25.95982821407508],
+ [91.5511741167236, 25.976691540937153],
+ [91.57859552224971, 26.03258962367019],
+ [91.59746172964101, 26.018170319995964],
+ [91.63102277787593, 26.022063079192282],
+ [91.62599027641541, 25.986778352890557],
+ [91.64064155166271, 25.963854468250098],
+ [91.62974157366827, 25.94334658140227],
+ [91.6093986608157, 25.93748810614351],
+ [91.67015209807815, 25.90408996500081],
+ [91.7200338048703, 25.95369226706816],
+ [91.73098805637925, 26.059022924947584],
+ [91.79646069866375, 26.093927225956158],
+ [91.7952306103924, 26.096213218711082],
+ [91.79372645780593, 26.09716679287235],
+ [91.79540751921455, 26.097759029863237],
+ [91.79626950303533, 26.097393873030644],
+ [91.79810371911505, 26.100703242704064],
+ [91.79781867109898, 26.101564363810382],
+ [91.7976470102347, 26.103286596681137],
+ [91.79923505109566, 26.104305698066533],
+ [91.79984069166694, 26.110095145923243],
+ [91.79170832334988, 26.11364975132922],
+ [91.79033523316674, 26.113873745629874],
+ [91.79084020223907, 26.10930775073033],
+ [91.78554552207302, 26.10874589184159],
+ [91.78436730791604, 26.109114605235785],
+ [91.77815913363249, 26.108931999115146],
+ [91.77505474825007, 26.108281434662832],
+ [91.76586003766786, 26.103901905336226],
+ [91.76488042664715, 26.104465199194873],
+ [91.76410544286504, 26.10417426203581],
+ [91.7616483987477, 26.103412675685668],
+ [91.75751985578789, 26.103398288397937],
+ [91.7526182559323, 26.102556868977416],
+ [91.74862298702807, 26.10141723192319],
+ [91.74489489595398, 26.098203560798876],
+ [91.74302439781822, 26.09638753772471],
+ [91.7410366201306, 26.09441712939028],
+ [91.73904015393751, 26.09207468517283],
+ [91.73838096569044, 26.093592262920676],
+ [91.7407640793582, 26.097326896684024],
+ [91.74505858157517, 26.10303754563785],
+ [91.74679239115896, 26.10449109930191],
+ [91.75016123606943, 26.10886534639037],
+ [91.74993530079236, 26.10976776728698],
+ [91.7400662491809, 26.11138873884576],
+ [91.73730711061664, 26.11116217387753],
+ [91.73662176432681, 26.110724585730665],
+ [91.73438161933315, 26.107421777904584],
+ [91.73217375889246, 26.105025316065102],
+ [91.7321405832107, 26.10503355869276],
+ [91.73156546829108, 26.105420646127477],
+ [91.7313563503744, 26.10594891831979],
+ [91.73104270988115, 26.107021027376586],
+ [91.73093176614694, 26.107495375990162],
+ [91.72461400728018, 26.10848433800673],
+ [91.71990248824373, 26.10858272305646],
+ [91.71912326171854, 26.10852488120453],
+ [91.71701608355657, 26.10665651333626],
+ [91.71625813183222, 26.105711610032266],
+ [91.7154994884051, 26.098937259716223],
+ [91.7150849006301, 26.098561686943448],
+ [91.71412426472315, 26.097655379873455],
+ [91.71283895072307, 26.097925442270085],
+ [91.71115504434994, 26.098740865368914],
+ [91.70898760899539, 26.104420207354796],
+ [91.70898114292194, 26.104462048298448],
+ [91.70623161094136, 26.10932863403038],
+ [91.70639469199637, 26.110051253283512],
+ [91.69927700582699, 26.110911085106217],
+ [91.69706084944464, 26.10953897686718],
+ [91.69526654371634, 26.108509098229177],
+ [91.69267074582024, 26.10671414718616],
+ [91.69114786874998, 26.10615483378201],
+ [91.6902531287607, 26.106057892242024],
+ [91.68904827865722, 26.105553419835378],
+ [91.68467805115678, 26.104958281974685],
+ [91.68305017540287, 26.10528555711036],
+ [91.68240531258965, 26.10568269001303],
+ [91.68121706604757, 26.10683866079207],
+ [91.67719187875282, 26.10869415965217],
+ [91.67586290213833, 26.108568132321732],
+ [91.67354382397728, 26.109232275102],
+ [91.67300412603603, 26.11003178980368],
+ [91.67115780695451, 26.111442113760734],
+ [91.67104364275998, 26.118070065955116],
+ [91.67046807059789, 26.118974804880814],
+ [91.66775528240734, 26.11936271806319],
+ [91.6657586823653, 26.11963545170962],
+ [91.66378979714635, 26.120373249021558],
+ [91.661606623308, 26.121829153609422],
+ [91.65969829711564, 26.122320791996785],
+ [91.65715828280206, 26.122613606820646],
+ [91.65642576597666, 26.12297213083296],
+ [91.6531088760289, 26.124205108123643],
+ [91.64922907297802, 26.12722386896775],
+ [91.64702780167995, 26.129469090913055],
+ [91.64643115414299, 26.13009533019886],
+ [91.64484206404975, 26.1320559319044],
+ [91.64392089472652, 26.131919708293847],
+ [91.64243993304741, 26.130881603820143],
+ [91.64105456558931, 26.130390262766774],
+ [91.64051117916551, 26.130410389833024],
+ [91.63761828684534, 26.129035266752936],
+ [91.63463030156416, 26.12962645997625],
+ [91.63238869590984, 26.13132663463926],
+ [91.63201963924503, 26.13174252598695],
+ [91.63051110198167, 26.131323799806843],
+ [91.63044268359468, 26.126383229176728],
+ [91.63012977882167, 26.125930214203827],
+ [91.63029663369915, 26.125529518264848],
+ [91.63138241390834, 26.12528485700982],
+ [91.6319889096758, 26.12523955460107],
+ [91.63238930856087, 26.12489016919459],
+ [91.63078601969625, 26.123960151318606],
+ [91.63060834820443, 26.12374865929515],
+ [91.6284844272422, 26.122385632779494],
+ [91.62630563718243, 26.121529810915852],
+ [91.62597757423728, 26.12510842601094],
+ [91.63064568488258, 26.13349462334636],
+ [91.6397157667955, 26.13412133138513],
+ [91.63972662113908, 26.137214478222557],
+ [91.63873138033077, 26.138253070753386],
+ [91.63734415066506, 26.13946004761091],
+ [91.63700737226505, 26.13975187916233],
+ [91.63610484028898, 26.139819314253863],
+ [91.63570427791053, 26.13991080772637],
+ [91.63523173263005, 26.14095130283155],
+ [91.63543704438486, 26.141709101914433],
+ [91.63601574537908, 26.142568507216357],
+ [91.6380843939002, 26.145306375684665],
+ [91.63873451185785, 26.14620141723633],
+ [91.64279931575494, 26.15088257315953],
+ [91.64402798738313, 26.152487635011415],
+ [91.64535904898737, 26.15480324626511],
+ [91.64656909404812, 26.15684627592399],
+ [91.64839992707249, 26.16121045365716],
+ [91.64892252378566, 26.163930498324685],
+ [91.64880228697982, 26.164976789958068],
+ [91.64827052206087, 26.165111718831714],
+ [91.64089705139412, 26.164928269028994],
+ [91.60436858031485, 26.15470229890954],
+ [91.57913397961754, 26.15245938616529],
+ [91.56476603301084, 26.149288238164672],
+ [91.56368907605436, 26.147484454757567],
+ [91.56191122476716, 26.141766848309206],
+ [91.56162643456757, 26.140882711167286],
+ [91.56117269641588, 26.137214328221937],
+ [91.56097448584337, 26.131584038748322],
+ [91.561381792773, 26.130132371317856],
+ [91.56209593635586, 26.12668895439364],
+ [91.56155107400009, 26.12465817011316],
+ [91.561151321902, 26.122738539029434],
+ [91.56136845458767, 26.12166649105879],
+ [91.5645220640544, 26.11728982088566],
+ [91.56489319403087, 26.114947416199737],
+ [91.5644053782889, 26.108607497777825],
+ [91.56449839075174, 26.10675509191047],
+ [91.56758020775929, 26.10307412503298],
+ [91.57241420579652, 26.103035194940414],
+ [91.57247758014319, 26.103035099750894],
+ [91.57343856190153, 26.10223262664383],
+ [91.57337804868902, 26.09959724292099],
+ [91.57293512086346, 26.096218714210288],
+ [91.5752099623867, 26.09503425309565],
+ [91.58585814081036, 26.09255107339949],
+ [91.58674434141459, 26.09191652090314],
+ [91.58710025662509, 26.089412656839436],
+ [91.5847981988437, 26.085370346935626],
+ [91.58357086031542, 26.08473062091328],
+ [91.5796800807501, 26.083849845124465],
+ [91.57942739005055, 26.083543819888266],
+ [91.57934274539463, 26.08261598801037],
+ [91.57937013143437, 26.082317836666945],
+ [91.5631074869765, 26.075524063232315],
+ [91.55985464690852, 26.10197249335538],
+ [91.54613972430943, 26.068066373364104],
+ [91.51817701375607, 26.07694966419332],
+ [91.52931213296266, 26.054584321200682],
+ [91.52244600381893, 26.008543875348465],
+ [91.48188228161878, 26.01204768119709],
+ [91.4894262848658, 25.982882539384544],
+ [91.4696500382776, 25.968337953302946],
+ [91.48075911083254, 25.958694516961202],
+ [91.47936810644602, 25.95742328637808],
+ [91.47224023068637, 25.938472236396883],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Azara',
+ district_3: 'KAMRUP',
+ object_id: 273,
+ district_1: 'Kamrup',
+ revenue_cr: 'Azara',
+ area: '423124288.2',
+ are_new: 423,
+ ID_NAM: 'KAMRUPAzara',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [89.84121245463253, 26.379383937910347],
+ [89.82488663705061, 26.381602582931986],
+ [89.82033015375751, 26.35273218267273],
+ [89.81113190207259, 26.360418785467086],
+ [89.82040700013847, 26.37300132424671],
+ [89.78100575989971, 26.352831121168045],
+ [89.78260933712353, 26.332710252385773],
+ [89.76054170024796, 26.316300550579804],
+ [89.78660319207948, 26.29343992282469],
+ [89.81799555630155, 26.309911300118305],
+ [89.84813555313492, 26.298474241409878],
+ [89.88426362982071, 26.32626164445829],
+ [89.90561250756944, 26.327907630828957],
+ [89.8692450253689, 26.34959783372752],
+ [89.87567824649574, 26.36282032849631],
+ [89.84121245463253, 26.379383937910347],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Gossaigaon (Pt)',
+ district_3: 'DHUBRI',
+ object_id: 274,
+ district_1: 'Dhubri',
+ revenue_cr: 'Gossaigaon (Pt)',
+ area: '76783222.03',
+ are_new: 77,
+ ID_NAM: 'DHUBRIGossaigaon (Pt)',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.06711997134587, 26.66358350092583],
+ [94.06718600201086, 26.662107814191373],
+ [94.06757810944586, 26.661336307830883],
+ [94.06957718165158, 26.661237858651678],
+ [94.0699536512141, 26.661648634062484],
+ [94.07116313213285, 26.663725006241883],
+ [94.07146442168926, 26.6640499537011],
+ [94.07217245044002, 26.664447412919497],
+ [94.07299126032989, 26.66419496900116],
+ [94.07325777071176, 26.663373767387903],
+ [94.07210827659273, 26.66178934700789],
+ [94.0723295020028, 26.661279479916637],
+ [94.07383146180163, 26.660842242732556],
+ [94.07587520632813, 26.661849328057805],
+ [94.07694504772923, 26.661948968060305],
+ [94.07831648860554, 26.661073968099963],
+ [94.078582952275, 26.660604739899092],
+ [94.07863351934066, 26.659657062217082],
+ [94.07896025367747, 26.658835869692478],
+ [94.07954306985403, 26.65836669330358],
+ [94.0803013305988, 26.658565532934876],
+ [94.08022011571063, 26.660875954108366],
+ [94.0815709447427, 26.661639060682038],
+ [94.08216867924119, 26.661657281814765],
+ [94.08264133860771, 26.66008246088703],
+ [94.0829881143585, 26.65943271906566],
+ [94.08391735863786, 26.659261561240076],
+ [94.08507763074367, 26.659027159612624],
+ [94.08630416977137, 26.655503008060318],
+ [94.08595862291587, 26.652402668006943],
+ [94.08488968072837, 26.64997899917713],
+ [94.08581422861538, 26.648548695812323],
+ [94.08657284958463, 26.647714047103836],
+ [94.08699476940897, 26.647416339669007],
+ [94.08808469534317, 26.647046579066913],
+ [94.09053534704897, 26.64706071335055],
+ [94.0908463177492, 26.64866279383598],
+ [94.09110230885906, 26.648974236243614],
+ [94.09168502083106, 26.648649448992142],
+ [94.09273484237771, 26.647498983666665],
+ [94.09363398141697, 26.646989198867495],
+ [94.0942315829648, 26.646853978001154],
+ [94.09600970913648, 26.645310936116545],
+ [94.09630449938179, 26.644900325121128],
+ [94.09663783992923, 26.64532663067687],
+ [94.09683618524903, 26.645579501726292],
+ [94.09734313420826, 26.6460881422511],
+ [94.09743149878781, 26.646086546871697],
+ [94.09783251212053, 26.646028096715003],
+ [94.09812121717809, 26.64597968691057],
+ [94.0997505787455, 26.64589214968278],
+ [94.10018876705963, 26.646180340209412],
+ [94.10203072482048, 26.64745860427871],
+ [94.1024091221676, 26.64761916629646],
+ [94.10276636868139, 26.64777174729481],
+ [94.10291472904382, 26.6483381470077],
+ [94.10278581630894, 26.648706581067035],
+ [94.10263982390563, 26.650000482671544],
+ [94.10289455018759, 26.650884509144397],
+ [94.10298193829841, 26.65153930231255],
+ [94.10356507697013, 26.65282469279529],
+ [94.10403892031623, 26.65313234960889],
+ [94.10501599988446, 26.65408683506248],
+ [94.10518106531792, 26.65423125285615],
+ [94.10585126780866, 26.65439374664081],
+ [94.10698682366777, 26.654469595888184],
+ [94.10753634288997, 26.654502882030496],
+ [94.10790940604095, 26.654689973894527],
+ [94.10870743969494, 26.65498110310991],
+ [94.10978575400584, 26.655662311148983],
+ [94.11028291222677, 26.656178173237134],
+ [94.11018516204913, 26.656823774911775],
+ [94.11036257213121, 26.658031491238535],
+ [94.11059078823082, 26.658343689232392],
+ [94.11150741297709, 26.65978520878999],
+ [94.1122090466213, 26.66174805186506],
+ [94.11200193823592, 26.662684298890547],
+ [94.11157396017333, 26.66291404806159],
+ [94.10699689917197, 26.663425861831854],
+ [94.10626154367029, 26.66382352713137],
+ [94.10634634822637, 26.664707907336584],
+ [94.10689849322416, 26.665216781329317],
+ [94.10803441200264, 26.665866096055957],
+ [94.10862020070446, 26.666539559070145],
+ [94.10879073597968, 26.6668007479169],
+ [94.1094182657995, 26.669369187851682],
+ [94.10845618360494, 26.671274104721597],
+ [94.10882714379984, 26.672056225754908],
+ [94.1092149590844, 26.67260737203448],
+ [94.10946766236036, 26.672711992357094],
+ [94.11337124291846, 26.67378248283495],
+ [94.11386013933375, 26.67447742937202],
+ [94.11419332267602, 26.675301208001766],
+ [94.11452489533893, 26.675729987909516],
+ [94.11473131291987, 26.67580052274868],
+ [94.1154006853673, 26.675447043809143],
+ [94.11844687968227, 26.674445573865228],
+ [94.12071382501414, 26.674177023200976],
+ [94.12312570543229, 26.67322047022534],
+ [94.12467776427452, 26.672519470724893],
+ [94.12743150216728, 26.67191379077934],
+ [94.12789904472994, 26.672037222019597],
+ [94.1293017353, 26.671923177064972],
+ [94.12961481614285, 26.671933039366873],
+ [94.13038014573063, 26.672309917370818],
+ [94.13108936205417, 26.672691772608058],
+ [94.13356662455361, 26.672925398830365],
+ [94.13405155670355, 26.672588881330483],
+ [94.13440210717519, 26.672174875007737],
+ [94.13484871719507, 26.672363849985285],
+ [94.1349428336874, 26.672444607981262],
+ [94.13537237661525, 26.672482185053454],
+ [94.1359450014049, 26.672277455201723],
+ [94.1392060296167, 26.671689352924037],
+ [94.14033027568635, 26.67086332061857],
+ [94.14095343160903, 26.670730516174174],
+ [94.14114552016288, 26.670547441815252],
+ [94.14117439111779, 26.669792967304993],
+ [94.14118965079952, 26.669069387144372],
+ [94.1412816032503, 26.668245439078287],
+ [94.14163516307815, 26.666340160961514],
+ [94.14179066864037, 26.66595653362282],
+ [94.14239333668638, 26.664882505720584],
+ [94.14297298360663, 26.664868310224385],
+ [94.14337035966076, 26.664998045257324],
+ [94.14669633966085, 26.6645956412365],
+ [94.14822631611678, 26.664584578949178],
+ [94.1485786111167, 26.66456543910236],
+ [94.1493453591443, 26.664954760391534],
+ [94.14955339369276, 26.665292731757948],
+ [94.15043113576026, 26.66730317765595],
+ [94.15063908766368, 26.66751381028427],
+ [94.15433213905182, 26.668477330029425],
+ [94.15639513177987, 26.66957474412991],
+ [94.16027000936806, 26.670050355756292],
+ [94.16070521168218, 26.670010925158294],
+ [94.16391891394984, 26.67059902806252],
+ [94.16434149583255, 26.670700921729424],
+ [94.17087448565147, 26.666580716811634],
+ [94.17698068767554, 26.66532642496065],
+ [94.1777880170961, 26.665444393237365],
+ [94.17976543361527, 26.666386446040427],
+ [94.18289479216261, 26.66679948035426],
+ [94.18552918258166, 26.66891807807383],
+ [94.18779098505854, 26.67077325218605],
+ [94.1972850089035, 26.67415241769788],
+ [94.1983956149539, 26.67431916476911],
+ [94.20322112570831, 26.674886294031776],
+ [94.20541661275428, 26.67491429161138],
+ [94.21696368767205, 26.673622225731982],
+ [94.21900214920636, 26.673639732140124],
+ [94.22285389787088, 26.673467626749044],
+ [94.2260193058106, 26.673205226614478],
+ [94.22667617101433, 26.673119928178902],
+ [94.23229498489447, 26.669908281917593],
+ [94.2333135360861, 26.669509619145153],
+ [94.2348137630348, 26.669003956024298],
+ [94.23597733644924, 26.66913669665366],
+ [94.2337003937666, 26.705828892868414],
+ [94.23389838964171, 26.709757729825103],
+ [94.22299688810456, 26.74584240624312],
+ [94.19056188167154, 26.75448525980416],
+ [94.2055187287442, 26.772612805954264],
+ [94.18775175473178, 26.815141728609802],
+ [94.20371792370484, 26.82076245831191],
+ [94.19275230401593, 26.82962740474807],
+ [94.20413572475358, 26.84784954294881],
+ [94.23906752934853, 26.86615885735687],
+ [94.13055638171463, 26.847821151943865],
+ [94.05198236886504, 26.806701307956008],
+ [93.97898252542261, 26.808035689662418],
+ [93.97571672176674, 26.80117296784995],
+ [93.97602715976602, 26.794164477645964],
+ [93.9772737590723, 26.79316517418208],
+ [93.98021777990517, 26.790795020882715],
+ [93.98063979225599, 26.79050582903356],
+ [93.98317231462015, 26.788626659062015],
+ [93.98251880192903, 26.783609099805712],
+ [93.98089879990859, 26.78253624267141],
+ [93.97318364604037, 26.779965074758902],
+ [93.9718450466726, 26.778549081928283],
+ [93.97132043503822, 26.776577370613396],
+ [93.97127926614709, 26.775449255211726],
+ [93.97133806717062, 26.773729868176552],
+ [93.97169116795935, 26.76928460320337],
+ [93.9723881519237, 26.767181231718542],
+ [93.97528899613074, 26.767251402717477],
+ [93.98104002674935, 26.767102765012336],
+ [93.98426780741417, 26.767384604701565],
+ [93.98762594530481, 26.767381978777024],
+ [93.99207979338178, 26.76712560114576],
+ [93.9969061683155, 26.76659147567968],
+ [93.99851194910671, 26.765205096118414],
+ [93.99994100612867, 26.76345855833495],
+ [94.00107248183973, 26.758976870887082],
+ [94.00120536692476, 26.752425929637774],
+ [94.0006137930725, 26.749075474149553],
+ [94.00091244607356, 26.746636657974065],
+ [94.0110055689579, 26.746918109624325],
+ [94.0117894379765, 26.74709015216765],
+ [94.01610245896303, 26.74670999671234],
+ [94.01820831839815, 26.746864988035135],
+ [94.01947973096922, 26.747150186181155],
+ [94.02160628758847, 26.74675462388338],
+ [94.02231575094876, 26.745825535850308],
+ [94.0226781978097, 26.745288829027743],
+ [94.02317908942896, 26.744852929806996],
+ [94.02377136396713, 26.744492700323345],
+ [94.02485099969978, 26.743525838021604],
+ [94.02471129370679, 26.74239309607423],
+ [94.02235026871354, 26.74090671003516],
+ [94.02176745702855, 26.74072131524561],
+ [94.02044654728535, 26.739646325804816],
+ [94.02331102858801, 26.740045442718223],
+ [94.02517072627907, 26.739974593066133],
+ [94.02716656185484, 26.739384799327077],
+ [94.03092390117627, 26.741964128279644],
+ [94.03194990389316, 26.741084755206273],
+ [94.03267445535694, 26.740092436725632],
+ [94.03277094609658, 26.738932770606485],
+ [94.0328819320516, 26.738310117354036],
+ [94.03338168101384, 26.737746953329445],
+ [94.0342899029189, 26.737435532826144],
+ [94.03656903030435, 26.740898211095878],
+ [94.03707138617752, 26.741236948769345],
+ [94.03840769933296, 26.74223059538485],
+ [94.03894544703167, 26.74223092831089],
+ [94.03916697786897, 26.74166690685893],
+ [94.03847486906169, 26.73965384769763],
+ [94.03799768218613, 26.739333183254168],
+ [94.03741550022015, 26.7381730721611],
+ [94.04164880560668, 26.73610426608591],
+ [94.04220164769715, 26.736104523616074],
+ [94.04308044887837, 26.73719262027845],
+ [94.04227552604442, 26.73833838976383],
+ [94.0449440120201, 26.73876857381694],
+ [94.04617553310435, 26.73855716475631],
+ [94.0463315237568, 26.738290997111047],
+ [94.04568931007533, 26.736643533784108],
+ [94.04400649335865, 26.735338441791594],
+ [94.04378588958278, 26.73461628313788],
+ [94.04355058218229, 26.7332623209841],
+ [94.04221454480968, 26.732029557987634],
+ [94.04180288644083, 26.731492348797804],
+ [94.0410349014331, 26.730079395212613],
+ [94.04166409672943, 26.728748519765958],
+ [94.04249851305079, 26.728455622861844],
+ [94.04279492924678, 26.728595694909533],
+ [94.04421102627411, 26.73021211684716],
+ [94.04550273088917, 26.730054898060043],
+ [94.04532798700681, 26.728281260674066],
+ [94.04394232130804, 26.726407735264736],
+ [94.04603876370402, 26.725041521382174],
+ [94.04587819074531, 26.72474362990564],
+ [94.04457228286732, 26.723781682685978],
+ [94.04308019914671, 26.723031687982736],
+ [94.04144218770145, 26.72268323637301],
+ [94.03845280284506, 26.7218647308763],
+ [94.03832725340261, 26.72171116019343],
+ [94.03834275832442, 26.721183176996337],
+ [94.03857902871887, 26.72110209006063],
+ [94.03955878436834, 26.72128319761747],
+ [94.04076967743873, 26.7214960292994],
+ [94.04127248336785, 26.721171369173277],
+ [94.04158934342308, 26.72073385781438],
+ [94.04178182723564, 26.71864457518131],
+ [94.04207931063017, 26.71720070577283],
+ [94.04207949119156, 26.716975045962545],
+ [94.04112108041154, 26.71499788523353],
+ [94.04162376776308, 26.71467332212258],
+ [94.04415718484925, 26.713406646667625],
+ [94.04388629967198, 26.712842378801785],
+ [94.04335393288179, 26.712372837258325],
+ [94.04286659324686, 26.712304801391337],
+ [94.04177599357618, 26.712629129719897],
+ [94.04142930406364, 26.712642430165175],
+ [94.04007818307907, 26.711833830079932],
+ [94.0393247723385, 26.711341527721093],
+ [94.03753093463247, 26.711340421143543],
+ [94.03700341604987, 26.71125888023206],
+ [94.03665685858967, 26.711073680275078],
+ [94.03648111128919, 26.71092008620723],
+ [94.03596455305133, 26.70951631015404],
+ [94.03804004224335, 26.709147579816825],
+ [94.03857747104017, 26.709445740008203],
+ [94.04000431820656, 26.709735370065733],
+ [94.04041690812832, 26.709000040162675],
+ [94.04069911567146, 26.707727643344704],
+ [94.04156958677503, 26.706085565992325],
+ [94.04158499467879, 26.70554852725381],
+ [94.04003801580947, 26.704794016357862],
+ [94.04054113435235, 26.703900768068262],
+ [94.04055723934874, 26.702402497187105],
+ [94.04206928094005, 26.702899842633784],
+ [94.04246621322642, 26.70294070075409],
+ [94.04274813780023, 26.702033766288164],
+ [94.04345310060093, 26.699764238921688],
+ [94.04369685306337, 26.698616968771763],
+ [94.04393193139344, 26.6976435467045],
+ [94.04292294725961, 26.696361349828916],
+ [94.042435309384, 26.696744639727957],
+ [94.04129905194071, 26.69784963625969],
+ [94.041189742242, 26.696233994743576],
+ [94.0419640783388, 26.695354440861355],
+ [94.04223104506481, 26.694267086293024],
+ [94.04278396261377, 26.69389733628116],
+ [94.04463740174225, 26.694534654642837],
+ [94.04564683233882, 26.695176079365922],
+ [94.04623969707015, 26.6951853698366],
+ [94.04424808716946, 26.69073469981862],
+ [94.04391694479956, 26.690179441164553],
+ [94.04342654280786, 26.687399359893174],
+ [94.04382356402745, 26.687228043377168],
+ [94.04495287390037, 26.68861863112293],
+ [94.04507844400405, 26.688632205653775],
+ [94.04665160427233, 26.687685463928535],
+ [94.04866594514293, 26.687853460945234],
+ [94.04833512257325, 26.686734144206433],
+ [94.04805443587787, 26.685799841916122],
+ [94.04853740880218, 26.684730564671433],
+ [94.04897981290993, 26.684193853080696],
+ [94.04903110671266, 26.68257373260588],
+ [94.04745413309602, 26.681936670027945],
+ [94.04430373420807, 26.682968318003926],
+ [94.04358086079725, 26.682146550833732],
+ [94.04336021390225, 26.68159586884229],
+ [94.04339576472961, 26.681027344209337],
+ [94.04405384625221, 26.681054804102573],
+ [94.04492266265905, 26.68141178371793],
+ [94.04544028180723, 26.68114128614802],
+ [94.04499881823558, 26.68017984072899],
+ [94.04490877919633, 26.67956152003606],
+ [94.04506516690414, 26.67868616312787],
+ [94.046277015782, 26.676836546334428],
+ [94.04806185865706, 26.674405194378735],
+ [94.049116479004, 26.674816417649208],
+ [94.05166234943495, 26.67617601937436],
+ [94.0515364038355, 26.676753601702295],
+ [94.04986750022591, 26.678639082768477],
+ [94.05006334373766, 26.678806197327493],
+ [94.05093227423053, 26.678919461617895],
+ [94.05134547680333, 26.6790221152103],
+ [94.05307186360791, 26.679457581848457],
+ [94.05392127191304, 26.67883519167373],
+ [94.05414283778461, 26.677788369255865],
+ [94.05412854019853, 26.67665565386546],
+ [94.05397369669468, 26.67505358667202],
+ [94.05362754886626, 26.674371984680644],
+ [94.05232223926627, 26.673238630107278],
+ [94.05250842768531, 26.672588818718143],
+ [94.05549784577937, 26.671471182343527],
+ [94.0560805146322, 26.67144438078948],
+ [94.05668891482807, 26.670515040955284],
+ [94.05676453411037, 26.66993744629889],
+ [94.05672010074147, 26.66863324506153],
+ [94.05649916818216, 26.668506742826604],
+ [94.05571021380075, 26.669088518208092],
+ [94.05483051340596, 26.670162101932707],
+ [94.05421775188938, 26.670134775079486],
+ [94.0538060899273, 26.669778048346554],
+ [94.05283245360155, 26.668518494296585],
+ [94.0527973860678, 26.668234171640133],
+ [94.053415904887, 26.667092784664224],
+ [94.05613823857576, 26.667166319943675],
+ [94.05640490885773, 26.666448918063054],
+ [94.05624954702598, 26.665898286305286],
+ [94.05593390688291, 26.66442700465788],
+ [94.05606023426637, 26.664070540247817],
+ [94.05665801457891, 26.663037412774614],
+ [94.0571754091483, 26.66289773134834],
+ [94.05752190731965, 26.663024211705032],
+ [94.05777275916783, 26.663520791315126],
+ [94.05791318021977, 26.66395855208625],
+ [94.05839983533842, 26.66483875520045],
+ [94.0587312049821, 26.665222561302397],
+ [94.05792732599055, 26.665533556336825],
+ [94.05739494033574, 26.665573864306168],
+ [94.05673168900863, 26.665997784695787],
+ [94.05764010674645, 26.667225668000405],
+ [94.0583032080549, 26.666946190000992],
+ [94.05912227126969, 26.66645021613467],
+ [94.06045846584747, 26.66608070102528],
+ [94.06192538057046, 26.665756428860128],
+ [94.06389033116844, 26.663717526697933],
+ [94.06437740130873, 26.66398852879912],
+ [94.06513551472986, 26.664584529176917],
+ [94.06567734706817, 26.665843792708984],
+ [94.06572710205681, 26.666818554802518],
+ [94.06574171674819, 26.667698618649606],
+ [94.0664798417559, 26.66810956506695],
+ [94.06665573278686, 26.667938120829128],
+ [94.06701820929219, 26.666295670849664],
+ [94.06857019806584, 26.66642257290538],
+ [94.06997157709559, 26.66626971660397],
+ [94.06992179695413, 26.665502502709828],
+ [94.0685709993631, 26.6646129772354],
+ [94.06800359468353, 26.66434201113694],
+ [94.06711997134587, 26.66358350092583],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Jorhat West',
+ district_3: 'JORHAT',
+ object_id: 276,
+ district_1: 'Jorhat',
+ revenue_cr: 'Jorhat West',
+ area: '363550691.9',
+ are_new: 364,
+ ID_NAM: 'JORHATJorhat West',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.23906752934853, 26.86615885735687],
+ [94.20413572475358, 26.84784954294881],
+ [94.19275230401593, 26.82962740474807],
+ [94.20371792370484, 26.82076245831191],
+ [94.18775175473178, 26.815141728609802],
+ [94.2055187287442, 26.772612805954264],
+ [94.19056188167154, 26.75448525980416],
+ [94.22299688810456, 26.74584240624312],
+ [94.23389838964171, 26.709757729825103],
+ [94.23417434041892, 26.709641743741724],
+ [94.23636860306114, 26.70886741335936],
+ [94.24619833990421, 26.707068904381085],
+ [94.25007950390271, 26.705237544267998],
+ [94.25542103210915, 26.703093718148473],
+ [94.25592797478016, 26.702286254833844],
+ [94.26439998981797, 26.698335575006926],
+ [94.27783046178067, 26.69142117362418],
+ [94.27959170411661, 26.691126003260095],
+ [94.286373124824, 26.691581002007347],
+ [94.3004803390127, 26.690694045192945],
+ [94.29665177586564, 26.696059536656808],
+ [94.29706617229948, 26.698394976661056],
+ [94.29622090792279, 26.70017391171733],
+ [94.29401519625222, 26.700939931697924],
+ [94.29341187513103, 26.702221958271366],
+ [94.29450697895452, 26.70440550119098],
+ [94.29225394403484, 26.705641414640354],
+ [94.29136428761174, 26.707469089706716],
+ [94.29193425518478, 26.711178412940832],
+ [94.29000552555736, 26.71175775418139],
+ [94.28803576537936, 26.71153475091922],
+ [94.28565956155275, 26.713005727917324],
+ [94.28533600186215, 26.714109924751405],
+ [94.2835010186212, 26.717277720863077],
+ [94.27979799323843, 26.71936237470705],
+ [94.28102183103206, 26.721802865333352],
+ [94.28097299322333, 26.721903520890752],
+ [94.27950534637337, 26.723822043070484],
+ [94.27902769057727, 26.724447794892352],
+ [94.27932978502417, 26.727554681286126],
+ [94.2780516027491, 26.732999899707654],
+ [94.27777801813438, 26.734547236850982],
+ [94.2742786381316, 26.73491153492762],
+ [94.27194785761735, 26.737228746355424],
+ [94.27209996036126, 26.745240944307916],
+ [94.27102356036025, 26.76121258964928],
+ [94.26978398228621, 26.76397559181394],
+ [94.26802384128482, 26.767921815935242],
+ [94.26745018882248, 26.76903373027268],
+ [94.26707648876597, 26.77422795884901],
+ [94.26729503899315, 26.7753853392439],
+ [94.26760180917107, 26.776357983104383],
+ [94.2694579243808, 26.779622198890138],
+ [94.2718070898157, 26.78029088222188],
+ [94.2810424437746, 26.782796200678597],
+ [94.28308587389073, 26.783439681978653],
+ [94.28945645908605, 26.78556657991569],
+ [94.29025118424487, 26.785827499706382],
+ [94.29794392424841, 26.788695585886057],
+ [94.30123329071417, 26.78967554367043],
+ [94.30437878839392, 26.790864772334384],
+ [94.30702444997485, 26.79165219560207],
+ [94.31003870289325, 26.792687692202936],
+ [94.31380688308353, 26.793799372009214],
+ [94.32857787321547, 26.799371141702565],
+ [94.33362142125902, 26.801363062837957],
+ [94.3418926969668, 26.804537321662036],
+ [94.34895904890928, 26.80702082490513],
+ [94.35366461301369, 26.808786819072225],
+ [94.35685139636557, 26.80988749016343],
+ [94.36250782540161, 26.81161918208066],
+ [94.36672501770687, 26.812866222927333],
+ [94.37938386019671, 26.817060053806276],
+ [94.38085652773077, 26.818562209710745],
+ [94.38010655574111, 26.82182773808369],
+ [94.37815749634052, 26.826694977242546],
+ [94.37789876986056, 26.827454913153645],
+ [94.37567170793068, 26.829131834705926],
+ [94.37157489167015, 26.829372543334443],
+ [94.36824442009359, 26.827624855233225],
+ [94.35940710065393, 26.82208180518209],
+ [94.35884455855502, 26.821881599012514],
+ [94.3569388608332, 26.822211425094377],
+ [94.35660546908181, 26.824779745163546],
+ [94.3566500901986, 26.82896015777934],
+ [94.35652020638494, 26.829146361616292],
+ [94.35610732900226, 26.82988166838724],
+ [94.35599493628547, 26.8302213333857],
+ [94.35304482218002, 26.83180924861256],
+ [94.35184484903024, 26.833217209945655],
+ [94.35076252014838, 26.835881048891085],
+ [94.34966454710585, 26.839286872851762],
+ [94.34930720626897, 26.840344463209213],
+ [94.34627694627052, 26.852770301905466],
+ [94.34304534237585, 26.86118312506629],
+ [94.3417309031976, 26.864054342623216],
+ [94.34056558435654, 26.86835832377753],
+ [94.33536581209854, 26.885128231653965],
+ [94.23906752934853, 26.86615885735687],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Jorhat East',
+ district_3: 'JORHAT',
+ object_id: 277,
+ district_1: 'Jorhat',
+ revenue_cr: 'Jorhat East',
+ area: '195465666.5',
+ are_new: 195,
+ ID_NAM: 'JORHATJorhat East',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [95.10935789278463, 27.12363873037319],
+ [95.10771885366667, 27.120403322360726],
+ [95.10788675058991, 27.11857477371857],
+ [95.10667110992324, 27.11599266068649],
+ [95.10001347975697, 27.122263497017045],
+ [95.09829299308717, 27.123007570850774],
+ [95.0964373818323, 27.121323537645093],
+ [95.09626548560946, 27.118286884112973],
+ [95.09239042476496, 27.111544843213014],
+ [95.09063296613299, 27.11449031961377],
+ [95.08915029585825, 27.11613678284128],
+ [95.08703956485934, 27.115067384163336],
+ [95.08822405195193, 27.10985318099974],
+ [95.09212994028202, 27.10572874587574],
+ [95.09099839989227, 27.10462229311596],
+ [95.08083490388688, 27.101435398916735],
+ [95.0728251448263, 27.096004550865484],
+ [95.0712685207458, 27.093524753893053],
+ [95.07017278630492, 27.0919334126963],
+ [95.05695148525952, 27.086965705686204],
+ [95.05101881529048, 27.082012203140586],
+ [95.05246356677875, 27.080408140244952],
+ [95.05193797598074, 27.078907902768744],
+ [95.05203518088102, 27.06770255981623],
+ [95.07064670960106, 27.07184616804858],
+ [95.0630155751614, 27.02976802838731],
+ [95.07864037444499, 27.03628339871723],
+ [95.09722406167946, 27.00353764539127],
+ [95.1316608918579, 27.011598298672833],
+ [95.14231675087728, 26.995640698137887],
+ [95.19656582583228, 27.0370833101814],
+ [95.21059784564184, 27.028632621103963],
+ [95.23213667305573, 27.04284995900221],
+ [95.2480060817946, 27.024648116616437],
+ [95.29173676332493, 27.066583773280048],
+ [95.36966726263084, 27.10987817716134],
+ [95.3709682666057, 27.11060466105271],
+ [95.3720221503341, 27.1125766878747],
+ [95.3716892526561, 27.113876226157664],
+ [95.36752901264154, 27.115184750258013],
+ [95.36499256194465, 27.115644823938176],
+ [95.3649066551557, 27.117941749026407],
+ [95.36373126889524, 27.123248341065562],
+ [95.3634587990898, 27.125490944075352],
+ [95.3617992792817, 27.12830208132978],
+ [95.36445190999257, 27.12989526713115],
+ [95.36586897540383, 27.131948488024005],
+ [95.36720026068858, 27.137219109651525],
+ [95.36695806141324, 27.13854123134347],
+ [95.36608525468993, 27.142146642301213],
+ [95.36481393644198, 27.146122038219133],
+ [95.36312396733899, 27.148468469862074],
+ [95.36149682461034, 27.150336321196917],
+ [95.35902235497312, 27.154532758263926],
+ [95.3590520164455, 27.159126430966356],
+ [95.35934917375158, 27.163995459850472],
+ [95.35884444183446, 27.165768757829856],
+ [95.35431350123814, 27.169197661929946],
+ [95.34457360580495, 27.18036870709929],
+ [95.34406363491311, 27.18195252730414],
+ [95.34237293907306, 27.183193075149152],
+ [95.33856828099405, 27.183706555950437],
+ [95.33573701130574, 27.185370876978965],
+ [95.33492446087673, 27.186124204981525],
+ [95.3329611532974, 27.187233747294368],
+ [95.32948456984164, 27.187124402004848],
+ [95.3283693293827, 27.18723232575274],
+ [95.32617414956057, 27.187876875153815],
+ [95.32460476401312, 27.187984659136806],
+ [95.32336884926879, 27.187298315149665],
+ [95.3201694167394, 27.187982968320714],
+ [95.3192914438049, 27.187766020263833],
+ [95.3171776693138, 27.186871726645926],
+ [95.31633505137393, 27.18676307619346],
+ [95.31468123407124, 27.184285049080593],
+ [95.31399037392222, 27.183580848153227],
+ [95.3136572750216, 27.183770230863587],
+ [95.3125109968713, 27.185335571970548],
+ [95.30951675931571, 27.189038941897813],
+ [95.30708380801428, 27.19038243668332],
+ [95.30487846105974, 27.190570908123018],
+ [95.30231514983757, 27.190515448870208],
+ [95.30246532479687, 27.192379219270205],
+ [95.3036398908955, 27.194405906852587],
+ [95.30315503779731, 27.19510508237141],
+ [95.29968341304188, 27.194728717803788],
+ [95.29784099893683, 27.19542719216563],
+ [95.29732619870204, 27.195589318183444],
+ [95.29356708790287, 27.195018614123253],
+ [95.29009482085198, 27.195553565768886],
+ [95.28388172739395, 27.197429640382225],
+ [95.2827613009609, 27.197141887647508],
+ [95.28596817333747, 27.193953673035235],
+ [95.28618442208088, 27.193033808257205],
+ [95.28149700304687, 27.19423057215195],
+ [95.28038719559876, 27.19383271018391],
+ [95.27974911686256, 27.190357715019985],
+ [95.27905404541148, 27.188791416800623],
+ [95.27869097601805, 27.18854750369715],
+ [95.27561184137991, 27.189840430197737],
+ [95.27407384386684, 27.18857136277883],
+ [95.2728934000913, 27.18824559026574],
+ [95.27198955477832, 27.188921838748282],
+ [95.27048926135433, 27.19074829172945],
+ [95.2693419672094, 27.192719339051546],
+ [95.2650861293806, 27.18947619265049],
+ [95.26672322005271, 27.187108379879696],
+ [95.2664511410144, 27.186702139009782],
+ [95.26032091264975, 27.191209653187002],
+ [95.25983581880307, 27.19180489113824],
+ [95.25859473155934, 27.191614416202444],
+ [95.25859949622361, 27.186858258313745],
+ [95.25863159572367, 27.18504887797993],
+ [95.25818346575429, 27.184186546944687],
+ [95.25601149570413, 27.191255740965843],
+ [95.25510145560894, 27.19287498090416],
+ [95.2518127601847, 27.191577050057525],
+ [95.25003202800038, 27.191061066135074],
+ [95.24636528916524, 27.191743334260384],
+ [95.24609796490972, 27.19206328039473],
+ [95.24489087800119, 27.1910309878542],
+ [95.24490975430025, 27.18989392812156],
+ [95.24435892802929, 27.18913176486621],
+ [95.24420755471739, 27.18906420001911],
+ [95.24352626342275, 27.188965560670482],
+ [95.24294096160783, 27.188997638744375],
+ [95.23970395793997, 27.1864779720319],
+ [95.24164413030748, 27.184220139868223],
+ [95.24175975695924, 27.18382750980664],
+ [95.241759571008, 27.18360641596062],
+ [95.24164301639651, 27.183132713762607],
+ [95.24124385718653, 27.1826095508112],
+ [95.23842608738033, 27.180337639025577],
+ [95.23812293112476, 27.179927349131603],
+ [95.23685115563433, 27.179576356640272],
+ [95.23636191516428, 27.17974375272977],
+ [95.23469304928395, 27.180864087396813],
+ [95.23350247161373, 27.18101849198454],
+ [95.2324573266964, 27.180256670844482],
+ [95.23240173086181, 27.180121376927858],
+ [95.23238885800376, 27.177305672904506],
+ [95.23291764770252, 27.17630352264997],
+ [95.23892566296772, 27.17068538831815],
+ [95.23638680478585, 27.169464562225425],
+ [95.229998592848, 27.1733366478068],
+ [95.22831364083589, 27.173441667134366],
+ [95.22724882640712, 27.173085955129668],
+ [95.22694587317083, 27.172865123705737],
+ [95.22598399309719, 27.169269436187065],
+ [95.2256045033987, 27.168064903988093],
+ [95.22519029201779, 27.167437968211953],
+ [95.22407471828392, 27.16665815594791],
+ [95.22269203678847, 27.16621687882848],
+ [95.2217483449044, 27.16591076261687],
+ [95.22153644670193, 27.165811611279377],
+ [95.22051174294891, 27.165185097628672],
+ [95.21750076438973, 27.165967814157455],
+ [95.21666878070617, 27.166491744047566],
+ [95.21623527081803, 27.166952345053314],
+ [95.21609511117583, 27.168256462888202],
+ [95.21668061601004, 27.16851332426229],
+ [95.21927934960053, 27.169341880124254],
+ [95.21935528598812, 27.169630594073364],
+ [95.21935547822758, 27.169797518372548],
+ [95.21582519797569, 27.17127539963443],
+ [95.21423146628739, 27.171804400975407],
+ [95.21385329531573, 27.17210701022502],
+ [95.21171598406586, 27.174296813645096],
+ [95.21051984492571, 27.173706454679955],
+ [95.20971040536256, 27.170940907067767],
+ [95.20965371717655, 27.1693977087407],
+ [95.2097845172718, 27.168851573946945],
+ [95.20984398035372, 27.168767424608497],
+ [95.20993568307289, 27.168630416063845],
+ [95.21012721826449, 27.16848142011969],
+ [95.21042989931128, 27.168481196343098],
+ [95.21316073824912, 27.170325041025226],
+ [95.21342308044807, 27.170410622933307],
+ [95.21382146980183, 27.17022539011873],
+ [95.21386184997219, 27.170207239722302],
+ [95.21378490836976, 27.168578369683903],
+ [95.209941416121, 27.16312076013435],
+ [95.20961831007962, 27.162782607379032],
+ [95.20937604971886, 27.162575181281],
+ [95.20876543517585, 27.16235890634652],
+ [95.20540613576352, 27.16286632324359],
+ [95.20304715623418, 27.16292146215547],
+ [95.20034676299794, 27.163478290189385],
+ [95.19884862912389, 27.163564814851405],
+ [95.19809178592058, 27.163312563292912],
+ [95.19786455167959, 27.163109582756007],
+ [95.19767774701624, 27.16276680235003],
+ [95.19777788761087, 27.161683722141188],
+ [95.1978810321718, 27.161478304121236],
+ [95.19808020394164, 27.161173671921958],
+ [95.1984229435619, 27.16068170498263],
+ [95.19784085771566, 27.157834720796934],
+ [95.19632678144023, 27.156630679894004],
+ [95.19539778599425, 27.15536311876712],
+ [95.19511520924351, 27.155209864049446],
+ [95.19490323917582, 27.15512427528612],
+ [95.19452492806694, 27.155106375812334],
+ [95.19331461620654, 27.155580766849315],
+ [95.18924999915903, 27.157297475810836],
+ [95.18957307196276, 27.157703425673077],
+ [95.19397245698069, 27.158888067901845],
+ [95.19431081282232, 27.159415840317603],
+ [95.19425566884031, 27.159975340983635],
+ [95.19376159094249, 27.160363726162938],
+ [95.19347241876093, 27.160429393360833],
+ [95.18987172137055, 27.159485629890128],
+ [95.18921091166439, 27.15953555366146],
+ [95.18890326113747, 27.159689202875523],
+ [95.18787531087301, 27.16074034891813],
+ [95.18556203223542, 27.162386298098987],
+ [95.18502578202822, 27.162795372885558],
+ [95.18426431789113, 27.163165785336417],
+ [95.1835276670188, 27.163012638833052],
+ [95.18269468081542, 27.161812728329725],
+ [95.18267432499105, 27.161573531784743],
+ [95.1826741821589, 27.161117835196865],
+ [95.18217155499454, 27.155233898909827],
+ [95.1827864625863, 27.154286075035824],
+ [95.18477320002485, 27.15302624223469],
+ [95.18574151203589, 27.152741542675347],
+ [95.18634657858374, 27.152195275262546],
+ [95.18627059099218, 27.151757637057127],
+ [95.18469643539055, 27.151076958938102],
+ [95.1844694212368, 27.151045410310335],
+ [95.18072160765061, 27.150911625293322],
+ [95.18017178839108, 27.150844196375445],
+ [95.17917779085111, 27.150266967938634],
+ [95.17883971258887, 27.149897114607977],
+ [95.17826902636362, 27.14855717477422],
+ [95.17691081767147, 27.145620120831445],
+ [95.17657258130573, 27.14507871393899],
+ [95.1765523719068, 27.144875642711867],
+ [95.17660766680581, 27.144586879953785],
+ [95.17675887213275, 27.144352158192817],
+ [95.17708158201711, 27.144130978973525],
+ [95.17948700085338, 27.143195995723147],
+ [95.17982978089779, 27.14282126911461],
+ [95.18001984464898, 27.14240744395632],
+ [95.17923900834278, 27.14156710984465],
+ [95.17827555981069, 27.141278655898336],
+ [95.17653017723109, 27.140873205934334],
+ [95.17410312606442, 27.13836517734861],
+ [95.173724727819, 27.13816227379231],
+ [95.17279675375745, 27.13818067082082],
+ [95.17243884788027, 27.13855083792893],
+ [95.17232287986864, 27.13872234136116],
+ [95.17206121410112, 27.139994911695293],
+ [95.1721572961073, 27.14075747279197],
+ [95.17438396098183, 27.145977515058043],
+ [95.17309303161288, 27.146672898862075],
+ [95.17182665679394, 27.145757307885727],
+ [95.17097401006222, 27.145265731885676],
+ [95.1703686686299, 27.144927530671367],
+ [95.16923836701693, 27.143795215627687],
+ [95.16895059171566, 27.14328542826183],
+ [95.16964027237672, 27.140045366188467],
+ [95.17018908013328, 27.137910784278247],
+ [95.16948761177902, 27.136891275055003],
+ [95.1682216492868, 27.136675000761347],
+ [95.16782326891618, 27.136675159847865],
+ [95.16631021222861, 27.136675588342147],
+ [95.16515014224376, 27.13645487518912],
+ [95.16428235620457, 27.135809805069233],
+ [95.16402389472763, 27.132434655886215],
+ [95.16375656957383, 27.132114319007393],
+ [95.16302014597525, 27.132028826078116],
+ [95.16239500567409, 27.132538871842065],
+ [95.16040361316574, 27.134673737800867],
+ [95.15959150740281, 27.134317490609256],
+ [95.16064989169075, 27.13216484581109],
+ [95.16388658993142, 27.12936623200764],
+ [95.16398218415237, 27.128549543052557],
+ [95.16294310915144, 27.12802631226693],
+ [95.15765839040355, 27.12938594563111],
+ [95.15666116072516, 27.133826403923717],
+ [95.1542763716994, 27.1361507847239],
+ [95.15136056605127, 27.13352521631492],
+ [95.15066920284569, 27.131557919862047],
+ [95.15070401435959, 27.12962206832826],
+ [95.15123822179781, 27.128453271892987],
+ [95.15420774490327, 27.125298525928233],
+ [95.1540764273784, 27.12454943278027],
+ [95.15347113535344, 27.12417955431544],
+ [95.15280553672852, 27.12411204131169],
+ [95.15229625035292, 27.124297125121647],
+ [95.150073288334, 27.12818273266966],
+ [95.14967500498142, 27.128895807061305],
+ [95.14844999758128, 27.13075960519004],
+ [95.14800710479001, 27.13492911828724],
+ [95.1468877859797, 27.136183783731315],
+ [95.14181927195774, 27.136829787824063],
+ [95.13686681398234, 27.13837352726484],
+ [95.13457698856016, 27.138509050835083],
+ [95.13292769607156, 27.13718707505748],
+ [95.13239784995405, 27.133762251238114],
+ [95.13175224782735, 27.13371259016207],
+ [95.13142475171915, 27.137665467339737],
+ [95.13138950631901, 27.138175410644376],
+ [95.13123820936389, 27.138545416287798],
+ [95.13051703376898, 27.138919919006934],
+ [95.12998744007805, 27.138852311778354],
+ [95.12875675173207, 27.138342448305824],
+ [95.12798005037114, 27.137764854708145],
+ [95.12683005589048, 27.136546540335285],
+ [95.12596256539703, 27.134813845865313],
+ [95.12553376717256, 27.132341052673862],
+ [95.1254783447128, 27.131763500820686],
+ [95.12530679344296, 27.131203894059862],
+ [95.12016278230962, 27.13077971990272],
+ [95.11908353015761, 27.132002577310175],
+ [95.1189119725996, 27.132358994967838],
+ [95.11779731963887, 27.135648477999172],
+ [95.11707608655173, 27.13618995215753],
+ [95.11667769719797, 27.13618989060118],
+ [95.11572957122966, 27.135612308265607],
+ [95.11439330837993, 27.1312397022609],
+ [95.11602249208087, 27.127932261646183],
+ [95.11585607378461, 27.127323069336743],
+ [95.11420705977375, 27.127322891049015],
+ [95.11298651340732, 27.1286268926671],
+ [95.11333390360578, 27.135630166093726],
+ [95.11325821335657, 27.1359866737153],
+ [95.11270849291171, 27.136306953132024],
+ [95.11211940379954, 27.136348940907048],
+ [95.10799091743364, 27.13572201738539],
+ [95.10662396094723, 27.12957041390757],
+ [95.10935789278463, 27.12363873037319],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sapekhati',
+ district_3: 'CHARAIDEO',
+ object_id: 278,
+ district_1: 'Charaideo',
+ revenue_cr: 'Sapekhati',
+ area: '394328380.8',
+ are_new: 394,
+ ID_NAM: 'CHARAIDEOSapekhati',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.95741744211, 27.063543620157464],
+ [94.96116488918352, 27.056809615744303],
+ [94.96222393642816, 27.053804070608823],
+ [94.9574574386997, 27.056362197241157],
+ [94.95552426420828, 27.05891692320078],
+ [94.9532634489799, 27.05903238497498],
+ [94.95301297622083, 27.05755400289248],
+ [94.95835029761678, 27.04694826371807],
+ [94.94986055881844, 27.05017624987539],
+ [94.94848454731402, 27.048638165159005],
+ [94.94680524301008, 27.04392411791545],
+ [94.94597609620621, 27.04353584384824],
+ [94.94340743371984, 27.045449953196304],
+ [94.94116825621175, 27.048567848814095],
+ [94.938353647577, 27.044963526885592],
+ [94.93831814795361, 27.041528293973286],
+ [94.93948497686266, 27.037544399088763],
+ [94.93807255124989, 27.036344578691097],
+ [94.93230217541162, 27.048945223909648],
+ [94.92999828506706, 27.048697339854566],
+ [94.92658094101267, 27.044281031141743],
+ [94.9260511910149, 27.041802206145594],
+ [94.92539568316556, 27.041023241649786],
+ [94.92416102606266, 27.041382041158606],
+ [94.9238661396976, 27.042270547813445],
+ [94.92215672476365, 27.04577175572151],
+ [94.91912868629889, 27.046612331282535],
+ [94.91260655711179, 27.04698096018774],
+ [94.91001418808504, 27.047127451327896],
+ [94.9062185679561, 27.045373750253948],
+ [94.90649827189456, 27.04388973876153],
+ [94.9071389395754, 27.04049046782575],
+ [94.90520460176569, 27.03737088436536],
+ [94.89577509043283, 27.03803204815044],
+ [94.89383130773624, 27.038617337366723],
+ [94.89397888297111, 27.040806710975666],
+ [94.89512913706488, 27.042333207115774],
+ [94.8929810738794, 27.046543304186336],
+ [94.88446568009485, 27.04421399083488],
+ [94.86988771635788, 27.038219944235557],
+ [94.86782017725615, 27.031772791890308],
+ [94.85496054423236, 27.029581252033367],
+ [94.84130744997931, 27.017493812008563],
+ [94.83969010517548, 27.02652680714538],
+ [94.83696993373162, 27.022745044880445],
+ [94.83473628894734, 27.017715366968797],
+ [94.82728577606687, 27.01593314269816],
+ [94.82349124918765, 27.01387053530662],
+ [94.82151624464498, 27.011705924351055],
+ [94.82086625424813, 27.010819291148692],
+ [94.81985728179237, 27.00878160780466],
+ [94.82088480176381, 27.004400920304768],
+ [94.82047073231674, 27.003286517208164],
+ [94.81845643276864, 27.002907752087616],
+ [94.81572951767195, 27.004591360202063],
+ [94.8142064744134, 27.003861457699955],
+ [94.8132749358368, 26.998568545345094],
+ [94.8097442522413, 26.992331009874942],
+ [94.8095066909678, 26.991590107055032],
+ [94.80367814741827, 26.99177292982639],
+ [94.80098288086735, 26.991981519170388],
+ [94.79534054370318, 26.98851316538325],
+ [94.7938345980794, 26.991414834781445],
+ [94.79336243458295, 26.994816780931274],
+ [94.7850161531422, 26.992438488302177],
+ [94.78492614105242, 26.992025707056964],
+ [94.78377623730162, 26.990265824982664],
+ [94.78241649428698, 26.98961228484782],
+ [94.78200691282308, 26.989349308874964],
+ [94.78014146591416, 26.98488278435102],
+ [94.77759405307587, 26.979944264041116],
+ [94.77184416870756, 26.973379391890244],
+ [94.76879511685169, 26.97096726706606],
+ [94.75224767500771, 26.952468490175036],
+ [94.74781302213175, 26.948974393869946],
+ [94.7457852379729, 26.947402354277507],
+ [94.74193871211344, 26.94414073972671],
+ [94.73373862789194, 26.932608435351316],
+ [94.73375548477823, 26.932602689809983],
+ [94.73650350399588, 26.93121540931456],
+ [94.73777947911027, 26.930437251802015],
+ [94.75320547493332, 26.923021992945195],
+ [94.75546061011416, 26.92276764795458],
+ [94.76146960633965, 26.92276259794085],
+ [94.77239896732873, 26.923116643803755],
+ [94.79416040625318, 26.922833081855075],
+ [94.80175998916513, 26.922705852751225],
+ [94.81734654537051, 26.92418645898063],
+ [94.82688963429796, 26.92551414993018],
+ [94.83984658630807, 26.92758169799139],
+ [94.84804868006088, 26.92922184608042],
+ [94.85596748919052, 26.936335274242325],
+ [94.86987506807868, 26.946742286372892],
+ [94.90845437229035, 26.968658691040766],
+ [94.92660043984424, 26.980537654690732],
+ [94.93461355141747, 26.983166933876777],
+ [94.93848963364641, 26.98187810596936],
+ [94.9401583800508, 26.978041821315507],
+ [94.93847184969871, 26.97432850029075],
+ [94.93720021434547, 26.972873877979616],
+ [94.93693665582761, 26.972505038780064],
+ [94.93878272607584, 26.97016207095954],
+ [94.94104725404128, 26.96089088729514],
+ [94.94182672400994, 26.9594375230341],
+ [94.93966773012407, 26.95852716470414],
+ [94.93475496959937, 26.956631813136507],
+ [94.92937112175989, 26.953237858874672],
+ [94.92775924679782, 26.950764925756143],
+ [94.92530312884351, 26.949816980070043],
+ [94.92373297972809, 26.947077411374217],
+ [94.93075954079502, 26.932656062305757],
+ [94.95540921337658, 26.940193567213317],
+ [94.98971028296279, 26.914195187336734],
+ [95.08796957091006, 26.953280859263526],
+ [95.14231675087728, 26.995640698137887],
+ [95.1316608918579, 27.011598298672833],
+ [95.09722406167946, 27.00353764539127],
+ [95.07864037444499, 27.03628339871723],
+ [95.0630155751614, 27.02976802838731],
+ [95.07064670960106, 27.07184616804858],
+ [95.05203518088102, 27.06770255981623],
+ [95.05193797598074, 27.078907902768744],
+ [95.03988773041782, 27.078992826799002],
+ [95.03961060105098, 27.077556077843447],
+ [95.04144505428596, 27.074370517170326],
+ [95.04067914169157, 27.072713330829608],
+ [95.03572030208434, 27.072605973202723],
+ [95.03387844583312, 27.07197286778976],
+ [95.03260166223498, 27.067431025856227],
+ [95.03260249676984, 27.067429374012644],
+ [95.0296445529484, 27.065746411113818],
+ [95.02694052872177, 27.065465793117575],
+ [95.01621895793939, 27.066321424631973],
+ [95.01563152711722, 27.065623887207504],
+ [95.01504419421143, 27.064926246251034],
+ [95.01461309719814, 27.0628679826724],
+ [95.0127779863964, 27.061968437233464],
+ [95.01189094407079, 27.062434577235635],
+ [95.00982369781984, 27.06459904464614],
+ [95.007960635938, 27.07171812914221],
+ [95.0063867273731, 27.07044207630736],
+ [95.00255012610087, 27.064788433736847],
+ [94.99240778003056, 27.06177055175592],
+ [94.98038472557296, 27.067894156246474],
+ [94.97696681019005, 27.06675177691573],
+ [94.97612754206784, 27.065029166757675],
+ [94.97498233381106, 27.06060950267199],
+ [94.97158411219411, 27.063827256375472],
+ [94.96666160494857, 27.064764674624065],
+ [94.96579292957725, 27.064046316059926],
+ [94.96892702404278, 27.05873946079009],
+ [94.96863256437747, 27.057832815902497],
+ [94.96084187926186, 27.064118257796522],
+ [94.95741744211, 27.063543620157464],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Sonari',
+ district_3: 'CHARAIDEO',
+ object_id: 279,
+ district_1: 'Charaideo',
+ revenue_cr: 'Sonari',
+ area: '384542831.4',
+ are_new: 385,
+ ID_NAM: 'CHARAIDEOSonari',
+ HQ: 'y',
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'MultiPolygon',
+ coordinates: [
+ [
+ [
+ [94.33803627167289, 26.891857214128873],
+ [94.31888112386541, 26.880251427025193],
+ [94.36262962976761, 26.91578475523798],
+ [94.35020398812891, 26.915948984034596],
+ [94.33803627167289, 26.891857214128873],
+ ],
+ ],
+ [
+ [
+ [94.35982250320089, 26.939512517667815],
+ [94.35849810170616, 26.916401612640996],
+ [94.39256176273246, 26.959001924219397],
+ [94.3747752332946, 26.94623324235642],
+ [94.3831569308154, 26.956298706327342],
+ [94.37340606695263, 26.957101990169626],
+ [94.35982250320089, 26.939512517667815],
+ ],
+ ],
+ [
+ [
+ [94.40308327780274, 27.01159738310423],
+ [94.3973819096463, 26.990888187035583],
+ [94.41667163316819, 27.001630559950307],
+ [94.41485698059871, 27.016691716288953],
+ [94.40308327780274, 27.01159738310423],
+ ],
+ ],
+ [
+ [
+ [94.49506277417875, 27.06107502194617],
+ [94.4942495392335, 27.072495471112852],
+ [94.47329713113876, 27.03299028568404],
+ [94.49517540584739, 27.04136416989985],
+ [94.49506277417875, 27.06107502194617],
+ ],
+ ],
+ [
+ [
+ [94.22459130700403, 27.035135395665876],
+ [94.24115063715243, 27.02867807970624],
+ [94.22544404805882, 27.01989855231611],
+ [94.20867725918205, 26.97469847034654],
+ [94.23410061478523, 26.976827295653116],
+ [94.23496329929192, 26.96408883772768],
+ [94.29413040339081, 26.988179185099003],
+ [94.30072181604253, 26.956133283966214],
+ [94.32164426262763, 26.952096955299613],
+ [94.38028358134424, 26.985731232989217],
+ [94.4034855038611, 27.031263225062855],
+ [94.45228090403128, 27.05028424421114],
+ [94.45454596829094, 27.06188011885879],
+ [94.4627865566503, 27.04983255862021],
+ [94.47641696844241, 27.056747883725826],
+ [94.49081518827415, 27.077078253233744],
+ [94.4750246552105, 27.103316780217266],
+ [94.52271109773888, 27.11111256319798],
+ [94.57340947643054, 27.15054986731751],
+ [94.5099368199384, 27.125321733331646],
+ [94.50519621524968, 27.12075623260966],
+ [94.49873986789416, 27.121840919203112],
+ [94.49737106087831, 27.12196657096759],
+ [94.49659554619184, 27.12194897480392],
+ [94.49554655379018, 27.12192282601051],
+ [94.49216623469853, 27.125161057122696],
+ [94.4883367561682, 27.13328223694944],
+ [94.48703186787806, 27.134659598833895],
+ [94.48239486858604, 27.13789869303764],
+ [94.47971797797257, 27.138890141645536],
+ [94.479610287038, 27.138879840398566],
+ [94.47394223020889, 27.127440517713573],
+ [94.47228662256386, 27.120036678751912],
+ [94.47066468197904, 27.116423274726316],
+ [94.4657116248273, 27.11256644577322],
+ [94.46323804901378, 27.11189767665541],
+ [94.45897245188776, 27.11241022822178],
+ [94.4581155543281, 27.112947827289393],
+ [94.45124052377822, 27.117301706141294],
+ [94.4434144962444, 27.117991668968084],
+ [94.4406566808986, 27.118886515764867],
+ [94.43750001356659, 27.11968552124774],
+ [94.43707665823443, 27.11972743770743],
+ [94.43576539909232, 27.119574708204695],
+ [94.42990922156801, 27.11697782939605],
+ [94.42952579724856, 27.116716646997528],
+ [94.42592320980279, 27.112119429783295],
+ [94.4257559147508, 27.110106966945196],
+ [94.42563897476208, 27.108044784251803],
+ [94.42517701972046, 27.101632741748325],
+ [94.42478959430474, 27.100046456262877],
+ [94.42418220471357, 27.098244161972673],
+ [94.42264306723838, 27.095397316794614],
+ [94.41931304661611, 27.093172052080146],
+ [94.41712630377114, 27.092646581332218],
+ [94.41570460395135, 27.092597265889967],
+ [94.41036589286165, 27.093920969794425],
+ [94.4102825678308, 27.09394867581666],
+ [94.40487601327588, 27.096313815874936],
+ [94.39418771698996, 27.09850437505625],
+ [94.3931339949583, 27.09863080634287],
+ [94.38628163878452, 27.096415942228216],
+ [94.37940467955174, 27.097715989618603],
+ [94.37645007207324, 27.098478655822788],
+ [94.36575612897741, 27.097639132847387],
+ [94.35475598164224, 27.09000291703369],
+ [94.35163063497097, 27.08694746179266],
+ [94.34898422239847, 27.08524123312679],
+ [94.34233535529779, 27.082947557771156],
+ [94.3417484005827, 27.082751292157806],
+ [94.33878155894837, 27.08187734377534],
+ [94.33807079392926, 27.082003476302013],
+ [94.33550941138996, 27.08284207111529],
+ [94.33101662763364, 27.085692695315913],
+ [94.32919624381266, 27.087095477899783],
+ [94.32711859057916, 27.08851618904377],
+ [94.32646306296687, 27.08877320884728],
+ [94.32163394457825, 27.087192069361244],
+ [94.32043968561202, 27.08599589518509],
+ [94.31847980780043, 27.08349972367494],
+ [94.31771492557368, 27.08069711984821],
+ [94.31683515600861, 27.075633797823713],
+ [94.31517976395921, 27.072228060995847],
+ [94.31214448597156, 27.071101267845577],
+ [94.30995669389434, 27.071402517852768],
+ [94.3086509477131, 27.071812566948594],
+ [94.30643210087649, 27.07328711519181],
+ [94.30216375310906, 27.079390441826718],
+ [94.30071456484156, 27.0830809130005],
+ [94.29821155662606, 27.086924223238086],
+ [94.29582126811412, 27.087915691692658],
+ [94.29257897696253, 27.08870344631896],
+ [94.2870617679309, 27.09106918979142],
+ [94.28023262422404, 27.094548533829105],
+ [94.27759016513713, 27.09525963771549],
+ [94.27605713800249, 27.09543906081357],
+ [94.27045693362174, 27.094058761682337],
+ [94.26880913772641, 27.093195605235998],
+ [94.26161782024647, 27.089927544928997],
+ [94.25721437843671, 27.08848532017121],
+ [94.25579139492437, 27.08837045737113],
+ [94.2540575503063, 27.087886159084103],
+ [94.25164537793572, 27.08541568794525],
+ [94.24655143620134, 27.080988002295722],
+ [94.24020020700544, 27.07580208864639],
+ [94.2386867757204, 27.074890660910096],
+ [94.23229031994322, 27.066201109969086],
+ [94.23165996132853, 27.06475205791797],
+ [94.22820750212972, 27.05962842119437],
+ [94.22730348434014, 27.057724797633185],
+ [94.22638418800426, 27.055505408931047],
+ [94.22556468192003, 27.046665848934865],
+ [94.22515465040016, 27.04467165488556],
+ [94.22366913066932, 27.040336211684288],
+ [94.22190162078765, 27.03613625730692],
+ [94.2224454455893, 27.035621413281024],
+ [94.22398801822216, 27.036351455945063],
+ [94.22444610242317, 27.035755416901893],
+ [94.22459130700403, 27.035135395665876],
+ ],
+ ],
+ [
+ [
+ [94.54094468635428, 27.103192211853155],
+ [94.50841068557695, 27.097492360626955],
+ [94.51314851626807, 27.062660860064256],
+ [94.53230880603223, 27.071374867847105],
+ [94.54094468635428, 27.103192211853155],
+ ],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Ujani Majuli',
+ district_3: 'MAJULI',
+ object_id: 280,
+ district_1: 'Majuli',
+ revenue_cr: 'Ujani Majuli',
+ area: '322168126.6',
+ are_new: 322,
+ ID_NAM: 'MAJULIUjani Majuli',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [94.56755479460118, 27.179143785122843],
+ [94.56372785920142, 27.182316445803806],
+ [94.56123951598293, 27.183741247771113],
+ [94.56015571296568, 27.18188614078574],
+ [94.55990937605016, 27.180360795841036],
+ [94.55953141977584, 27.179440158889125],
+ [94.55903770389907, 27.17835240490168],
+ [94.55609324917991, 27.17446131191115],
+ [94.55362664519129, 27.17360720237913],
+ [94.54815748614593, 27.173793872871947],
+ [94.54536309499498, 27.1726010110634],
+ [94.5441675316749, 27.172379279609057],
+ [94.54247758862309, 27.172116588350477],
+ [94.54113112001339, 27.171231315143814],
+ [94.53908428887557, 27.169208534204795],
+ [94.53591699896538, 27.167812243012868],
+ [94.53329961634957, 27.166465866219117],
+ [94.52963851444285, 27.164699053067867],
+ [94.52788370673929, 27.16367805872394],
+ [94.52430035042713, 27.159645909878208],
+ [94.52408894809469, 27.15908627568233],
+ [94.52483216565176, 27.157164412840512],
+ [94.5271485794097, 27.155943232691957],
+ [94.53112615599437, 27.153003747175177],
+ [94.53274214703707, 27.150762173270817],
+ [94.53281556634525, 27.14722450898174],
+ [94.53180743022104, 27.14637546129467],
+ [94.53021499210676, 27.144605491755545],
+ [94.52968569126662, 27.14421711333918],
+ [94.52114166727566, 27.143565715355425],
+ [94.51561853744802, 27.143602263020355],
+ [94.51320798833314, 27.143140041295688],
+ [94.51064654919998, 27.142185985098575],
+ [94.50899645092258, 27.13792029738566],
+ [94.50903910113564, 27.135573848131823],
+ [94.50951419493656, 27.134658198207866],
+ [94.51020311202963, 27.13164893186255],
+ [94.51043191922074, 27.12983517034331],
+ [94.5099368199384, 27.125321733331646],
+ [94.57340947643054, 27.15054986731751],
+ [94.52271109773888, 27.11111256319798],
+ [94.4750246552105, 27.103316780217266],
+ [94.49081518827415, 27.077078253233744],
+ [94.47641696844241, 27.056747883725826],
+ [94.4627865566503, 27.04983255862021],
+ [94.45454596829094, 27.06188011885879],
+ [94.45228090403128, 27.05028424421114],
+ [94.4034855038611, 27.031263225062855],
+ [94.38028358134424, 26.985731232989217],
+ [94.32164426262763, 26.952096955299613],
+ [94.30072181604253, 26.956133283966214],
+ [94.29413040339081, 26.988179185099003],
+ [94.23496329929192, 26.96408883772768],
+ [94.23410061478523, 26.976827295653116],
+ [94.20867725918205, 26.97469847034654],
+ [94.22544404805882, 27.01989855231611],
+ [94.24115063715243, 27.02867807970624],
+ [94.22459130700403, 27.035135395665876],
+ [94.22377574093062, 27.031861229983832],
+ [94.21987576531173, 27.030023167966444],
+ [94.21637289804904, 27.029068885772357],
+ [94.21231644219587, 27.028782569045315],
+ [94.20635524712328, 27.02849737587195],
+ [94.20418357261887, 27.028620503661468],
+ [94.20055177914661, 27.03035535075114],
+ [94.19240228444865, 27.036018253906068],
+ [94.18846656127133, 27.035731281971252],
+ [94.18695217328055, 27.03104797026211],
+ [94.18696588606333, 27.028660893797724],
+ [94.19158797691492, 27.01469233774907],
+ [94.1919236171495, 27.011497369994032],
+ [94.19163542323328, 27.00971505591538],
+ [94.18913032733307, 27.004791530683818],
+ [94.18691058667277, 27.00220383609665],
+ [94.18513843789096, 27.00058360799063],
+ [94.18476769778333, 27.000527074079482],
+ [94.18372049123244, 27.000125488955383],
+ [94.17082513400639, 27.001426376265055],
+ [94.16487155395247, 27.00015562815967],
+ [94.15818174703102, 27.000184557946234],
+ [94.15510223510049, 26.99713470164629],
+ [94.15051445360454, 26.994292740154833],
+ [94.14869987918848, 26.9936703721243],
+ [94.14634600478489, 26.99315633727886],
+ [94.13810686091652, 26.989772932003877],
+ [94.13394242576958, 26.98823002413765],
+ [94.1371999828911, 26.980662143902705],
+ [94.13795388231522, 26.97730475198092],
+ [94.13751824701313, 26.974529297845802],
+ [94.13436140091639, 26.96902902079476],
+ [94.130884664747, 26.968904055955605],
+ [94.1268831426701, 26.968893965665682],
+ [94.12284024778445, 26.970328988282994],
+ [94.11804710602465, 26.970058113989516],
+ [94.11095686518387, 26.970869823818486],
+ [94.10275287418918, 26.969812878887982],
+ [94.09988688281851, 26.968729387248995],
+ [94.08450918401842, 26.959969990826192],
+ [94.08286175104243, 26.959783772710637],
+ [94.0667140469235, 26.977433602246002],
+ [94.05995229033772, 26.9828998649575],
+ [94.05529119014489, 26.980858006031717],
+ [94.05209370067148, 26.979502617938643],
+ [94.04648314230879, 26.978362435138752],
+ [94.04292355272408, 26.977060846396785],
+ [94.04087286422046, 26.975624655880555],
+ [94.03900428308953, 26.97247821225888],
+ [94.02790003269105, 26.959353078684394],
+ [94.02636221933258, 26.958539706063938],
+ [94.02497997801164, 26.951747374909413],
+ [94.02483364514683, 26.946079479110058],
+ [94.02695088893152, 26.938405021659303],
+ [94.02680156108352, 26.936699113603705],
+ [94.02484376107525, 26.9332817340442],
+ [94.02460290118798, 26.93271298829499],
+ [94.02150529179774, 26.931544210981574],
+ [94.01921307236533, 26.931057439308045],
+ [94.01758452826485, 26.930947916072743],
+ [94.01405590720128, 26.930782761646782],
+ [94.01070888955553, 26.929940777218672],
+ [94.00840496866826, 26.931319739299614],
+ [94.00652965017271, 26.93626403234409],
+ [94.00526161077553, 26.93742717481395],
+ [93.99924515673654, 26.941836627843184],
+ [93.99813688900086, 26.942022697837544],
+ [93.99486959593825, 26.94010622625282],
+ [93.99088263285716, 26.93585424299711],
+ [93.98801922324463, 26.932237454901284],
+ [93.98059324874446, 26.92544108787997],
+ [93.97894494170774, 26.924694891297086],
+ [93.97639652365464, 26.92350547295548],
+ [93.97124569700321, 26.92252531271904],
+ [93.96796450879982, 26.923723386816256],
+ [93.96321952572242, 26.92655584265648],
+ [93.9623143095803, 26.92680657974927],
+ [93.96417318890614, 26.916830557188916],
+ [93.96677264833535, 26.913065359353645],
+ [93.96753885018727, 26.90834468437198],
+ [93.96672529184853, 26.904504991137312],
+ [93.966240489056, 26.90266415218521],
+ [93.96359023079576, 26.89912352994622],
+ [93.95780308700441, 26.893599067199094],
+ [93.95691644981899, 26.89251659689745],
+ [93.95735870300979, 26.89161380706236],
+ [93.96262995421493, 26.88780191715776],
+ [93.96567784634577, 26.88546248926756],
+ [93.96854446114725, 26.88330359435291],
+ [93.96996285606511, 26.882395526051347],
+ [93.97078451990265, 26.881898562941366],
+ [93.97186429577249, 26.881541347096746],
+ [93.9710501652069, 26.876961647269223],
+ [93.97163311882572, 26.8761083158767],
+ [93.97371387394188, 26.873241350772027],
+ [93.97811114522395, 26.87258383637674],
+ [93.98169340020156, 26.87212996802178],
+ [93.98494260209267, 26.87067439530932],
+ [93.98698452483575, 26.86972957112982],
+ [93.99396794431118, 26.86932880607306],
+ [93.99955761594518, 26.866906347057085],
+ [93.99984536339868, 26.865784659890384],
+ [94.00156360697522, 26.85913421862796],
+ [94.00264431080475, 26.855462889764254],
+ [94.00334192358977, 26.852613393093883],
+ [94.0040963763761, 26.849844624181625],
+ [94.00482163122072, 26.846965464728356],
+ [94.00730565623762, 26.83859752392805],
+ [94.00755197698346, 26.837461008657325],
+ [94.008388656161, 26.834293261287694],
+ [94.00838322494683, 26.833959209963865],
+ [94.00709088612119, 26.83309609867116],
+ [94.0061049159266, 26.832358744652186],
+ [94.00287377107102, 26.828881259237058],
+ [94.00165002400723, 26.82757451137367],
+ [93.99946180612855, 26.825211269984663],
+ [93.99870254016896, 26.824428003817168],
+ [93.99341952911843, 26.82166470331866],
+ [93.98936375598488, 26.819862975936605],
+ [93.98640491923804, 26.818434863234696],
+ [93.98488477304625, 26.817145428713825],
+ [93.98242234712203, 26.813974883686903],
+ [93.98016099829438, 26.810646277630838],
+ [93.97898252542261, 26.808035689662418],
+ [94.05198236886504, 26.806701307956008],
+ [94.13055638171463, 26.847821151943865],
+ [94.23906752934853, 26.86615885735687],
+ [94.33536581209854, 26.885128231653965],
+ [94.33609277643717, 26.885784422387335],
+ [94.35574792383686, 26.903933563289154],
+ [94.35835101335816, 26.90657221517146],
+ [94.36137504713341, 26.90953235921829],
+ [94.36426968308349, 26.911552940757065],
+ [94.37137680596344, 26.91607697369824],
+ [94.37596522077168, 26.92070707620835],
+ [94.37860954206619, 26.92519692264037],
+ [94.38197046473422, 26.93469656865357],
+ [94.38437868002597, 26.938884103190457],
+ [94.38943065516524, 26.945336965801285],
+ [94.39082055642059, 26.946882617991424],
+ [94.39663568991955, 26.95272533615208],
+ [94.39532404001028, 26.95480960006475],
+ [94.40884262322761, 26.963909078953034],
+ [94.41292900735279, 26.965868985201954],
+ [94.41889361422682, 26.969623677921188],
+ [94.42411050567918, 26.97202040869953],
+ [94.42792167744234, 26.97335281296105],
+ [94.43709184784758, 26.980378068679514],
+ [94.44258097195015, 26.98673352567519],
+ [94.44324975420447, 26.98730937369832],
+ [94.44952385135514, 26.989357180800663],
+ [94.45260612291024, 26.990533291062878],
+ [94.45805866941107, 26.993572160889812],
+ [94.45824770728618, 26.993725265359217],
+ [94.46055780229442, 27.000484314247263],
+ [94.46162992182308, 27.003389023606104],
+ [94.46487818856795, 27.014676182888582],
+ [94.46595830579759, 27.017677119245043],
+ [94.4674394282751, 27.020454200017234],
+ [94.46905794987195, 27.0225948776147],
+ [94.47173636312984, 27.025686814997176],
+ [94.47195939595026, 27.02610992590818],
+ [94.47301365607274, 27.02752039719673],
+ [94.47931788361637, 27.033273795897028],
+ [94.47990050216356, 27.033475842086567],
+ [94.48593275217851, 27.03488468136438],
+ [94.48826048560733, 27.035388924344876],
+ [94.49185998464512, 27.036047980209627],
+ [94.4985147887115, 27.038033237149378],
+ [94.49981303036687, 27.038703663329265],
+ [94.49981456918096, 27.038704601080557],
+ [94.50897242727693, 27.044818101835066],
+ [94.51279958276393, 27.048107373232956],
+ [94.5175915126964, 27.05312781203632],
+ [94.5263626254013, 27.063334398119345],
+ [94.53435248677835, 27.070571658082013],
+ [94.5378408687071, 27.07161630583156],
+ [94.54291313589026, 27.07531282484576],
+ [94.5443659003509, 27.07687734696943],
+ [94.54951064989942, 27.086269422035553],
+ [94.55103329700096, 27.09265518498088],
+ [94.55560992860761, 27.09904241117312],
+ [94.57882983719304, 27.126791499621163],
+ [94.57940827228596, 27.128015981237258],
+ [94.58122396600284, 27.134857538612906],
+ [94.58245975408472, 27.13661706288106],
+ [94.5930818490258, 27.14557460174271],
+ [94.59228292873459, 27.146627225926014],
+ [94.58209057884228, 27.16084047585582],
+ [94.58091007487965, 27.162362677188653],
+ [94.57696782184854, 27.16797036198487],
+ [94.57225435256963, 27.17411264297232],
+ [94.56755479460118, 27.179143785122843],
+ ],
+ [
+ [94.33803627167289, 26.891857214128873],
+ [94.35020398812891, 26.915948984034596],
+ [94.36262962976761, 26.91578475523798],
+ [94.31888112386541, 26.880251427025193],
+ [94.33803627167289, 26.891857214128873],
+ ],
+ [
+ [94.35982250320089, 26.939512517667815],
+ [94.37340606695263, 26.957101990169626],
+ [94.3831569308154, 26.956298706327342],
+ [94.3747752332946, 26.94623324235642],
+ [94.39256176273246, 26.959001924219397],
+ [94.35849810170616, 26.916401612640996],
+ [94.35982250320089, 26.939512517667815],
+ ],
+ [
+ [94.40308327780274, 27.01159738310423],
+ [94.41485698059871, 27.016691716288953],
+ [94.41667163316819, 27.001630559950307],
+ [94.3973819096463, 26.990888187035583],
+ [94.40308327780274, 27.01159738310423],
+ ],
+ [
+ [94.49506277417875, 27.06107502194617],
+ [94.49517540584739, 27.04136416989985],
+ [94.47329713113876, 27.03299028568404],
+ [94.4942495392335, 27.072495471112852],
+ [94.49506277417875, 27.06107502194617],
+ ],
+ [
+ [94.54094468635428, 27.103192211853155],
+ [94.53230880603223, 27.071374867847105],
+ [94.51314851626807, 27.062660860064256],
+ [94.50841068557695, 27.097492360626955],
+ [94.54094468635428, 27.103192211853155],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Majuli',
+ district_3: 'MAJULI',
+ object_id: 281,
+ district_1: 'Majuli',
+ revenue_cr: 'Majuli',
+ area: '648466675.6',
+ are_new: 648,
+ ID_NAM: 'MAJULIMajuli',
+ HQ: null,
+ },
+ },
+ {
+ type: 'Feature',
+ geometry: {
+ type: 'Polygon',
+ coordinates: [
+ [
+ [92.94167314970476, 26.400758104242115],
+ [92.92095438263561, 26.391625189629575],
+ [92.90188538865375, 26.401364456139465],
+ [92.86932383654667, 26.369227756873862],
+ [92.90066323699793, 26.34960147627382],
+ [92.93957360812102, 26.353070210174934],
+ [92.94312438163952, 26.32714412745945],
+ [92.89860974844557, 26.30893202985572],
+ [92.87973444112043, 26.283664360159666],
+ [92.84401386180708, 26.305048291330095],
+ [92.84159190588474, 26.28377346674474],
+ [92.81389821470785, 26.262494654571206],
+ [92.81505900244662, 26.232980390010574],
+ [92.82706184211537, 26.225050857376576],
+ [92.8151534522139, 26.213989558266654],
+ [92.79362086898955, 26.219448812064627],
+ [92.80197654501153, 26.201766714066615],
+ [92.93942737766415, 26.202505870038035],
+ [92.95604146821394, 26.174272768666366],
+ [92.9315461252999, 26.138748599655294],
+ [92.95461763759029, 26.14069630156794],
+ [93.03513014295781, 26.108459858494466],
+ [93.04054834237375, 26.086906338151742],
+ [93.10825983248465, 26.07834592888338],
+ [93.09340379165825, 26.033063076014717],
+ [93.12720343872084, 26.03103553503432],
+ [93.15801939894088, 25.995593620997578],
+ [93.1796502677388, 25.996984707683385],
+ [93.19571385541116, 26.044152065819212],
+ [93.2306316498809, 26.017250229785915],
+ [93.2480554306239, 26.01936633776815],
+ [93.2595966530176, 26.000238752338287],
+ [93.2875692692936, 25.995114119216627],
+ [93.28457614295402, 25.986297830804762],
+ [93.30720390007053, 25.990986301156315],
+ [93.30779268285718, 26.00116012799995],
+ [93.34073771138601, 25.986099101375313],
+ [93.36790567072943, 25.99873113696604],
+ [93.43448073631039, 25.976006367412516],
+ [93.46422615713834, 26.01152520829878],
+ [93.53886936418849, 26.050939339772196],
+ [93.55249807546976, 26.08428259527668],
+ [93.54317538999388, 26.10407758021934],
+ [93.56732879009334, 26.11895422819183],
+ [93.5688381888411, 26.152943342552224],
+ [93.6476259243715, 26.13627618337354],
+ [93.61931006901195, 26.191226334007933],
+ [93.56705791120429, 26.190502624417014],
+ [93.58076208276607, 26.236401438007583],
+ [93.48849376005987, 26.252060421755512],
+ [93.48928138673134, 26.339345403392436],
+ [93.52933620523818, 26.40017078510618],
+ [93.47425552658696, 26.38781594994286],
+ [93.42274890668475, 26.41980245496383],
+ [93.4194718013243, 26.46241711403531],
+ [93.44245436692685, 26.4888896953882],
+ [93.47431815084036, 26.49344765713724],
+ [93.48932237146785, 26.50824865131808],
+ [93.4719792235048, 26.540680808786483],
+ [93.49401621615105, 26.557799961925323],
+ [93.49558390927253, 26.606625967058022],
+ [93.46946158891983, 26.595352085499727],
+ [93.49163517310001, 26.587036517835926],
+ [93.46372861803171, 26.569316893314088],
+ [93.4647154110831, 26.58590086917127],
+ [93.40870987642269, 26.56914215455345],
+ [93.39743360134226, 26.57145047703242],
+ [93.40278075120577, 26.580105178278703],
+ [93.29768419967978, 26.576553817134894],
+ [93.25120127505333, 26.56988730682275],
+ [93.23489877144802, 26.55363103667551],
+ [93.2564947748331, 26.5510687711873],
+ [93.24708311122835, 26.544900715538784],
+ [93.26268938455587, 26.537810529687505],
+ [93.25655927387052, 26.53191185451287],
+ [93.27353023723495, 26.545151977949185],
+ [93.2639485279368, 26.52734631726131],
+ [93.28783821860146, 26.520616085124402],
+ [93.29148153296724, 26.504471203957824],
+ [93.28423708013823, 26.519720294224665],
+ [93.26339414793055, 26.50885220669401],
+ [93.26342268830544, 26.521068460666733],
+ [93.23334527709795, 26.535654921767623],
+ [93.21298611551852, 26.529581206519904],
+ [93.2173425404046, 26.507384350066975],
+ [93.20427186347614, 26.501322362151402],
+ [93.1994731521616, 26.533402375371544],
+ [93.16096942590974, 26.523967450264156],
+ [93.20971494353053, 26.556087211358502],
+ [93.19132542804304, 26.56700903563691],
+ [93.15088656448086, 26.546317368698535],
+ [93.14153526047669, 26.555520502603237],
+ [93.11432969675717, 26.530249243278945],
+ [93.10123325075647, 26.542757223028676],
+ [93.05915629040906, 26.544301217520815],
+ [93.01278964011972, 26.507420544828058],
+ [93.00868327207274, 26.48114001192717],
+ [93.09035314259779, 26.499938357712537],
+ [93.06451340528402, 26.479310537779764],
+ [93.1024878522553, 26.46004692871303],
+ [93.09818324668638, 26.472916947753582],
+ [93.12454396823736, 26.483014646313666],
+ [93.12528644558262, 26.495709364626226],
+ [93.12741742550637, 26.480293355586895],
+ [93.13628889889311, 26.48428682000813],
+ [93.11043358119909, 26.470987153144094],
+ [93.12840448356076, 26.464087593046408],
+ [93.10392862869847, 26.44880096484636],
+ [93.1181567597177, 26.44153201688715],
+ [93.06853578354688, 26.4350903843776],
+ [93.0916500188139, 26.433743659274892],
+ [93.07735948991673, 26.419032067836053],
+ [93.05031161736049, 26.415595286067806],
+ [93.0560229325621, 26.42819824860186],
+ [93.04365613955765, 26.437190537906556],
+ [93.02306678378832, 26.42158978264322],
+ [92.9797395877544, 26.420824139444342],
+ [92.94167314970476, 26.400758104242115],
+ ],
+ ],
+ },
+ properties: {
+ revenue_ci: 'Phuloni',
+ district_3: 'Karbi Anglong',
+ object_id: 275,
+ district_1: 'Karbi Anglong',
+ revenue_cr: 'Phuloni',
+ area: '3303172433',
+ are_new: 3303,
+ ID_NAM: 'K.ANGLONGPhuloni',
+ HQ: null,
+ },
+ },
+ ],
+};
+
+export default assam_revenue_circles;
diff --git a/geo_json/render_geojson.tsx b/geo_json/render_geojson.tsx
new file mode 100644
index 00000000..a01a6147
--- /dev/null
+++ b/geo_json/render_geojson.tsx
@@ -0,0 +1,16 @@
+import assam_geojson from "./assam_geojson";
+import assam_revenue_circle from "./assam_revenue_circle";
+
+// Define a mapping of chart types to GeoJSON data
+const geojsonMapping: { [key: string]: any } = {
+ 'assam_district': assam_geojson,
+ 'assam_rc': assam_revenue_circle,
+ // Add more mappings as needed
+};
+
+// Function to render the appropriate GeoJSON based on chartType
+export const renderGeoJSON = (chartType: string): any => {
+ console.log(chartType);
+
+ return geojsonMapping[chartType.toLowerCase()] ;
+};
diff --git a/hooks/useOrganizationTypes.ts b/hooks/useOrganizationTypes.ts
new file mode 100644
index 00000000..6ba90b8c
--- /dev/null
+++ b/hooks/useOrganizationTypes.ts
@@ -0,0 +1,25 @@
+import { ApiOrganizationOrganizationTypesEnum } from '@/gql/generated/graphql';
+
+export const useOrganizationTypes = () => {
+ const organizationTypes = [
+ { label: 'State Government', value: ApiOrganizationOrganizationTypesEnum.StateGovernment },
+ { label: 'Union Territory Government', value: ApiOrganizationOrganizationTypesEnum.UnionTerritoryGovernment },
+ { label: 'Urban Local Body', value: ApiOrganizationOrganizationTypesEnum.UrbanLocalBody },
+ { label: 'Academic Institution', value: ApiOrganizationOrganizationTypesEnum.AcademicInstitution },
+ { label: 'Central Government', value: ApiOrganizationOrganizationTypesEnum.CentralGovernment },
+ { label: 'Citizens Group', value: ApiOrganizationOrganizationTypesEnum.CitizensGroup },
+ { label: 'Civil Society Organisation', value: ApiOrganizationOrganizationTypesEnum.CivilSocietyOrganisation },
+ { label: 'Industry Body', value: ApiOrganizationOrganizationTypesEnum.IndustryBody },
+ { label: 'Media Organisation', value: ApiOrganizationOrganizationTypesEnum.MediaOrganisation },
+ { label: 'Open Data Technology Community', value: ApiOrganizationOrganizationTypesEnum.OpenDataTechnologyCommunity },
+ { label: 'Private Company', value: ApiOrganizationOrganizationTypesEnum.PrivateCompany },
+ { label: 'Public Sector Company', value: ApiOrganizationOrganizationTypesEnum.PublicSectorCompany },
+ { label: 'Others', value: ApiOrganizationOrganizationTypesEnum.Others },
+ { label: 'Startup', value: ApiOrganizationOrganizationTypesEnum.Startup },
+ { label: 'Government', value: ApiOrganizationOrganizationTypesEnum.Government },
+ { label: 'Corporations', value: ApiOrganizationOrganizationTypesEnum.Corporations },
+ { label: 'NGO', value: ApiOrganizationOrganizationTypesEnum.Ngo }
+ ];
+
+ return { organizationTypes };
+};
\ No newline at end of file
diff --git a/instrumentation.ts b/instrumentation.ts
new file mode 100644
index 00000000..016e7ea4
--- /dev/null
+++ b/instrumentation.ts
@@ -0,0 +1,17 @@
+import * as Sentry from '@sentry/nextjs';
+
+export async function register() {
+ const isSentryEnabled = process.env.SENTRY_ENABLED === 'true';
+
+ if (isSentryEnabled) {
+ if (process.env.NEXT_RUNTIME === 'nodejs') {
+ await import('./sentry.server.config');
+ }
+
+ if (process.env.NEXT_RUNTIME === 'edge') {
+ await import('./sentry.edge.config');
+ }
+ }
+}
+
+export const onRequestError = Sentry.captureRequestError;
diff --git a/lib/api.ts b/lib/api.ts
index 9cf09b38..e7dd8272 100644
--- a/lib/api.ts
+++ b/lib/api.ts
@@ -2,22 +2,30 @@ import React from 'react';
import { type TypedDocumentNode } from '@graphql-typed-document-node/core';
import { QueryClient } from '@tanstack/react-query';
import { request } from 'graphql-request';
-
-import { gqlConfig } from '@/config/site';
+import { getSession } from 'next-auth/react';
// create a wrapper function for graphql-request
// that will be used by react-query
+
export async function GraphQL(
document: TypedDocumentNode,
+ entityHeaders: Record = {},
...[variables]: TVariables extends Record ? [] : [TVariables]
) {
+ const session = await getSession();
+
+ const headers = {
+ ...(session ? { Authorization: `Bearer ${session?.access_token}` } : {}),
+ ...entityHeaders,
+ };
+
const data = await request(
`${process.env.NEXT_PUBLIC_BACKEND_GRAPHQL_URL}`,
document,
{
...variables,
},
- { ...gqlConfig.headers }
+ headers
);
return data;
}
diff --git a/lib/utils.ts b/lib/utils.ts
index 98440a99..0afa120e 100644
--- a/lib/utils.ts
+++ b/lib/utils.ts
@@ -67,3 +67,56 @@ export const range = (len: number) => {
}
return arr;
};
+
+
+
+export function handleRedirect(event: any, link: any) {
+ event.preventDefault();
+ const confirmation = window.confirm(
+ `You are being redirected to "${link}". `
+ );
+ if (confirmation) {
+ window.open(link, '_blank');
+ }
+}
+
+
+export function formatDateString(
+ input: string | number | any,
+ isHyphenated = false
+): string {
+ const date = new Date(input);
+ // If hyphendated it would return date in this format - 2023-01-01 else in April 1, 2021
+ return isHyphenated
+ ? new Date(
+ date.toLocaleDateString('en-US', {
+ year: 'numeric',
+ month: 'numeric',
+ // day: 'numeric',
+ })
+ )
+ .toISOString()
+ .split('T')[0]
+ : date.toLocaleDateString('en-US', {
+ month: 'long',
+ // day: 'numeric',
+ year: 'numeric',
+ });
+}
+
+
+export async function getWebsiteTitle(url: string): Promise {
+ try {
+ const response = await fetch(url);
+ const html = await response.text();
+
+ const parser = new DOMParser();
+ const doc = parser.parseFromString(html, 'text/html');
+
+ const title = doc.querySelector('title');
+ return title?.innerText || null;
+ } catch (error) {
+ console.error('Failed to fetch website title:', error);
+ return null;
+ }
+}
diff --git a/middleware.ts b/middleware.ts
index 2c41214b..880cf549 100644
--- a/middleware.ts
+++ b/middleware.ts
@@ -4,7 +4,7 @@ import createIntlMiddleware from 'next-intl/middleware';
import locales from './config/locales';
-const publicPages = ['/', '/datasets', '/datasets/(.*)', '/login', '/chart'];
+const publicPages = ['/', '/datasets', '/datasets/(.*)', '/login', '/chart', '/sectors', '/sectors/(.*)', '/usecases', '/usecases/(.*)', '/about-us', '/publishers', '/publishers/(.*)'];
const intlMiddleware = createIntlMiddleware({
locales: locales.all,
diff --git a/next.config.mjs b/next.config.mjs
index 8e3e61aa..90f7e2e3 100644
--- a/next.config.mjs
+++ b/next.config.mjs
@@ -1,14 +1,71 @@
/** @type {import('next').NextConfig} */
import { fileURLToPath } from 'node:url';
+import { withSentryConfig } from '@sentry/nextjs';
import createJiti from 'jiti';
import createNextIntlPlugin from 'next-intl/plugin';
const jiti = createJiti(fileURLToPath(import.meta.url));
jiti('./env');
+// const backendUrl = new URL(process.env.NEXT_PUBLIC_BACKEND_URL);
+
+const backendUrl = new URL(process.env.BACKEND_URL);
+const platformUrl = new URL(process.env.NEXT_PUBLIC_PLATFORM_URL); // Use NEXT_PUBLIC_ for client-side access
+
const withNextIntl = createNextIntlPlugin();
const nextConfig = withNextIntl({
transpilePackages: ['opub-ui'],
+ images: {
+ remotePatterns: [
+ {
+ protocol: backendUrl.protocol.slice(0, -1),
+ hostname: backendUrl.hostname,
+ },
+ {
+ protocol: platformUrl.protocol.replace(':', ''),
+ hostname: platformUrl.hostname,
+ port: platformUrl.port || '', // empty string if no port
+ pathname: '/**',
+ },
+ ],
+ },
});
-export default nextConfig;
+export default withSentryConfig(
+ nextConfig,
+ {
+ // For all available options, see:
+ // https://github.com/getsentry/sentry-webpack-plugin#options
+
+ org: process.env.SENTRY_ORG_NAME,
+ project: process.env.SENTRY_PROJECT_NAME,
+
+ // Only print logs for uploading source maps in CI
+ silent: !process.env.CI,
+
+ // For all available options, see:
+ // https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
+
+ // Upload a larger set of source maps for prettier stack traces (increases build time)
+ widenClientFileUpload: true,
+
+ // Uncomment to route browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers.
+ // This can increase your server load as well as your hosting bill.
+ // Note: Check that the configured route will not match with your Next.js middleware, otherwise reporting of client-
+ // side errors will fail.
+ // tunnelRoute: "/monitoring",
+
+ // Hides source maps from generated client bundles
+ hideSourceMaps: true,
+
+ // Automatically tree-shake Sentry logger statements to reduce bundle size
+ disableLogger: true,
+
+ // Enables automatic instrumentation of Vercel Cron Monitors. (Does not yet work with App Router route handlers.)
+ // See the following for more information:
+ // https://docs.sentry.io/product/crons/
+ // https://vercel.com/docs/cron-jobs
+ automaticVercelMonitors: true,
+ },
+ process.env.SENTRY_FEATURE_ENABLED
+);
diff --git a/package-lock.json b/package-lock.json
index 07a1eff9..4ed8cfc5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -11,6 +11,7 @@
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@release-it/conventional-changelog": "^8.0.1",
+ "@sentry/nextjs": "^8.32.0",
"@t3-oss/env-nextjs": "^0.9.2",
"@tabler/icons-react": "^3.2.0",
"@tanstack/react-query": "^4.29.5",
@@ -29,7 +30,7 @@
"next-auth": "^4.24.7",
"next-intl": "^3.4.0",
"next-usequerystate": "^1.17.2",
- "opub-ui": "latest",
+ "opub-ui": "0.3.86",
"react": "^18.2.0",
"react-aria": "3.22.0",
"react-dom": "^18.2.0",
@@ -88,7 +89,6 @@
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
- "dev": true,
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
@@ -359,7 +359,6 @@
"version": "7.23.5",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz",
"integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==",
- "dev": true,
"engines": {
"node": ">=6.9.0"
}
@@ -368,7 +367,6 @@
"version": "7.24.0",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.0.tgz",
"integrity": "sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==",
- "dev": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.23.5",
@@ -398,7 +396,6 @@
"version": "7.23.6",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz",
"integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==",
- "dev": true,
"dependencies": {
"@babel/types": "^7.23.6",
"@jridgewell/gen-mapping": "^0.3.2",
@@ -425,7 +422,6 @@
"version": "7.23.6",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz",
"integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==",
- "dev": true,
"dependencies": {
"@babel/compat-data": "^7.23.5",
"@babel/helper-validator-option": "^7.23.5",
@@ -464,7 +460,6 @@
"version": "7.22.20",
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
"integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
- "dev": true,
"engines": {
"node": ">=6.9.0"
}
@@ -473,7 +468,6 @@
"version": "7.23.0",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
"integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
- "dev": true,
"dependencies": {
"@babel/template": "^7.22.15",
"@babel/types": "^7.23.0"
@@ -486,7 +480,6 @@
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
"integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
- "dev": true,
"dependencies": {
"@babel/types": "^7.22.5"
},
@@ -510,7 +503,6 @@
"version": "7.22.15",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
"integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
- "dev": true,
"dependencies": {
"@babel/types": "^7.22.15"
},
@@ -522,7 +514,6 @@
"version": "7.23.3",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz",
"integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==",
- "dev": true,
"dependencies": {
"@babel/helper-environment-visitor": "^7.22.20",
"@babel/helper-module-imports": "^7.22.15",
@@ -579,7 +570,6 @@
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz",
"integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==",
- "dev": true,
"dependencies": {
"@babel/types": "^7.22.5"
},
@@ -603,7 +593,6 @@
"version": "7.22.6",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
"integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
- "dev": true,
"dependencies": {
"@babel/types": "^7.22.5"
},
@@ -615,7 +604,6 @@
"version": "7.23.4",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz",
"integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==",
- "dev": true,
"engines": {
"node": ">=6.9.0"
}
@@ -632,7 +620,6 @@
"version": "7.23.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz",
"integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==",
- "dev": true,
"engines": {
"node": ">=6.9.0"
}
@@ -641,7 +628,6 @@
"version": "7.24.0",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.0.tgz",
"integrity": "sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==",
- "dev": true,
"dependencies": {
"@babel/template": "^7.24.0",
"@babel/traverse": "^7.24.0",
@@ -732,7 +718,6 @@
"version": "7.24.0",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.0.tgz",
"integrity": "sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==",
- "dev": true,
"bin": {
"parser": "bin/babel-parser.js"
},
@@ -1181,7 +1166,6 @@
"version": "7.24.0",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz",
"integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==",
- "dev": true,
"dependencies": {
"@babel/code-frame": "^7.23.5",
"@babel/parser": "^7.24.0",
@@ -1195,7 +1179,6 @@
"version": "7.24.0",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.0.tgz",
"integrity": "sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==",
- "dev": true,
"dependencies": {
"@babel/code-frame": "^7.23.5",
"@babel/generator": "^7.23.6",
@@ -1216,7 +1199,6 @@
"version": "7.24.0",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz",
"integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==",
- "dev": true,
"dependencies": {
"@babel/helper-string-parser": "^7.23.4",
"@babel/helper-validator-identifier": "^7.22.20",
@@ -1660,653 +1642,1028 @@
"tslib": "^2.4.0"
}
},
- "node_modules/@eslint-community/eslint-utils": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
- "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
- "dev": true,
- "dependencies": {
- "eslint-visitor-keys": "^3.3.0"
- },
+ "node_modules/@esbuild/aix-ppc64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz",
+ "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "optional": true,
+ "os": [
+ "aix"
+ ],
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "peerDependencies": {
- "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
+ "node": ">=18"
}
},
- "node_modules/@eslint-community/regexpp": {
- "version": "4.10.0",
- "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
- "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
- "dev": true,
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz",
+ "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==",
+ "cpu": [
+ "arm"
+ ],
+ "optional": true,
+ "os": [
+ "android"
+ ],
"engines": {
- "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
+ "node": ">=18"
}
},
- "node_modules/@eslint/eslintrc": {
- "version": "2.1.4",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
- "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
- "dev": true,
- "dependencies": {
- "ajv": "^6.12.4",
- "debug": "^4.3.2",
- "espree": "^9.6.0",
- "globals": "^13.19.0",
- "ignore": "^5.2.0",
- "import-fresh": "^3.2.1",
- "js-yaml": "^4.1.0",
- "minimatch": "^3.1.2",
- "strip-json-comments": "^3.1.1"
- },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz",
+ "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "android"
+ ],
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
- },
- "funding": {
- "url": "https://opencollective.com/eslint"
+ "node": ">=18"
}
},
- "node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz",
+ "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@eslint/eslintrc/node_modules/globals": {
- "version": "13.24.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
- "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
- "dev": true,
- "dependencies": {
- "type-fest": "^0.20.2"
- },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz",
+ "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=18"
}
},
- "node_modules/@eslint/eslintrc/node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz",
+ "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
"engines": {
- "node": "*"
+ "node": ">=18"
}
},
- "node_modules/@eslint/eslintrc/node_modules/type-fest": {
- "version": "0.20.2",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
- "dev": true,
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz",
+ "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=18"
}
},
- "node_modules/@eslint/js": {
- "version": "8.57.0",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
- "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
- "dev": true,
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz",
+ "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=18"
}
},
- "node_modules/@floating-ui/core": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz",
- "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==",
- "dependencies": {
- "@floating-ui/utils": "^0.2.1"
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz",
+ "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==",
+ "cpu": [
+ "arm"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@floating-ui/dom": {
- "version": "1.6.3",
- "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz",
- "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==",
- "dependencies": {
- "@floating-ui/core": "^1.0.0",
- "@floating-ui/utils": "^0.2.0"
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz",
+ "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@floating-ui/react-dom": {
- "version": "2.0.8",
- "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.8.tgz",
- "integrity": "sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==",
- "dependencies": {
- "@floating-ui/dom": "^1.6.1"
- },
- "peerDependencies": {
- "react": ">=16.8.0",
- "react-dom": ">=16.8.0"
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz",
+ "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@floating-ui/utils": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz",
- "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q=="
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz",
+ "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==",
+ "cpu": [
+ "loong64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
},
- "node_modules/@formatjs/ecma402-abstract": {
- "version": "1.18.2",
- "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.2.tgz",
- "integrity": "sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==",
- "dependencies": {
- "@formatjs/intl-localematcher": "0.5.4",
- "tslib": "^2.4.0"
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz",
+ "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==",
+ "cpu": [
+ "mips64el"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@formatjs/ecma402-abstract/node_modules/@formatjs/intl-localematcher": {
- "version": "0.5.4",
- "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.4.tgz",
- "integrity": "sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==",
- "dependencies": {
- "tslib": "^2.4.0"
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz",
+ "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==",
+ "cpu": [
+ "ppc64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@formatjs/fast-memoize": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz",
- "integrity": "sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==",
- "dependencies": {
- "tslib": "^2.4.0"
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz",
+ "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==",
+ "cpu": [
+ "riscv64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@formatjs/icu-messageformat-parser": {
- "version": "2.7.6",
- "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.7.6.tgz",
- "integrity": "sha512-etVau26po9+eewJKYoiBKP6743I1br0/Ie00Pb/S/PtmYfmjTcOn2YCh2yNkSZI12h6Rg+BOgQYborXk46BvkA==",
- "dependencies": {
- "@formatjs/ecma402-abstract": "1.18.2",
- "@formatjs/icu-skeleton-parser": "1.8.0",
- "tslib": "^2.4.0"
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz",
+ "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==",
+ "cpu": [
+ "s390x"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@formatjs/icu-skeleton-parser": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.0.tgz",
- "integrity": "sha512-QWLAYvM0n8hv7Nq5BEs4LKIjevpVpbGLAJgOaYzg9wABEoX1j0JO1q2/jVkO6CVlq0dbsxZCngS5aXbysYueqA==",
- "dependencies": {
- "@formatjs/ecma402-abstract": "1.18.2",
- "tslib": "^2.4.0"
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz",
+ "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@formatjs/intl-localematcher": {
- "version": "0.2.32",
- "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.2.32.tgz",
- "integrity": "sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==",
- "dependencies": {
- "tslib": "^2.4.0"
+ "node_modules/@esbuild/netbsd-arm64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz",
+ "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@graphql-codegen/add": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-4.0.1.tgz",
- "integrity": "sha512-A7k+9eRfrKyyNfhWEN/0eKz09R5cp4XXxUuNLQAVm/aohmVI2xdMV4lM02rTlM6Pyou3cU/v0iZnhgo6IRpqeg==",
- "dev": true,
- "dependencies": {
- "@graphql-codegen/plugin-helpers": "^4.1.0",
- "tslib": "~2.5.0"
- },
- "peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz",
+ "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@graphql-codegen/add/node_modules/tslib": {
- "version": "2.5.3",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
- "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
- "dev": true
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz",
+ "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
},
- "node_modules/@graphql-codegen/cli": {
- "version": "3.3.1",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-3.3.1.tgz",
- "integrity": "sha512-4Es8Y9zFeT0Zx2qRL7L3qXDbbqvXK6aID+8v8lP6gaYD+uWx3Jd4Hsq5vxwVBR+6flm0BW/C85Qm0cvmT7O6LA==",
- "dev": true,
- "dependencies": {
- "@babel/generator": "^7.18.13",
- "@babel/template": "^7.18.10",
- "@babel/types": "^7.18.13",
- "@graphql-codegen/core": "^3.1.0",
- "@graphql-codegen/plugin-helpers": "^4.2.0",
- "@graphql-tools/apollo-engine-loader": "^7.3.6",
- "@graphql-tools/code-file-loader": "^7.3.17",
- "@graphql-tools/git-loader": "^7.2.13",
- "@graphql-tools/github-loader": "^7.3.20",
- "@graphql-tools/graphql-file-loader": "^7.5.0",
- "@graphql-tools/json-file-loader": "^7.4.1",
- "@graphql-tools/load": "^7.8.0",
- "@graphql-tools/prisma-loader": "^7.2.49",
- "@graphql-tools/url-loader": "^7.13.2",
- "@graphql-tools/utils": "^9.0.0",
- "@parcel/watcher": "^2.1.0",
- "@whatwg-node/fetch": "^0.8.0",
- "chalk": "^4.1.0",
- "cosmiconfig": "^7.0.0",
- "debounce": "^1.2.0",
- "detect-indent": "^6.0.0",
- "graphql-config": "^4.5.0",
- "inquirer": "^8.0.0",
- "is-glob": "^4.0.1",
- "jiti": "^1.17.1",
- "json-to-pretty-yaml": "^1.2.2",
- "listr2": "^4.0.5",
- "log-symbols": "^4.0.0",
- "micromatch": "^4.0.5",
- "shell-quote": "^1.7.3",
- "string-env-interpolation": "^1.0.1",
- "ts-log": "^2.2.3",
- "tslib": "^2.4.0",
- "yaml": "^1.10.0",
- "yargs": "^17.0.0"
- },
- "bin": {
- "gql-gen": "cjs/bin.js",
- "graphql-code-generator": "cjs/bin.js",
- "graphql-codegen": "cjs/bin.js",
- "graphql-codegen-esm": "esm/bin.js"
- },
- "peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz",
+ "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@graphql-codegen/client-preset": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/client-preset/-/client-preset-3.0.1.tgz",
- "integrity": "sha512-aHlnlDWS39kddNJ/I+ItIUj3AX1040aRwHEv2FiPAL0ILrGzHg3AZY1Ay358Ys8fXclrqIN7IeWLmeyI3TIHiA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.20.2",
- "@babel/template": "^7.20.7",
- "@graphql-codegen/add": "^4.0.1",
- "@graphql-codegen/gql-tag-operations": "3.0.1",
- "@graphql-codegen/plugin-helpers": "^4.2.0",
- "@graphql-codegen/typed-document-node": "^4.0.1",
- "@graphql-codegen/typescript": "^3.0.4",
- "@graphql-codegen/typescript-operations": "^3.0.4",
- "@graphql-codegen/visitor-plugin-common": "^3.1.1",
- "@graphql-tools/documents": "^0.1.0",
- "@graphql-tools/utils": "^9.0.0",
- "@graphql-typed-document-node/core": "3.2.0",
- "tslib": "~2.5.0"
- },
- "peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz",
+ "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@graphql-codegen/client-preset/node_modules/tslib": {
- "version": "2.5.3",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
- "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
- "dev": true
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz",
+ "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
},
- "node_modules/@graphql-codegen/core": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-3.1.0.tgz",
- "integrity": "sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw==",
- "dev": true,
- "dependencies": {
- "@graphql-codegen/plugin-helpers": "^4.1.0",
- "@graphql-tools/schema": "^9.0.0",
- "@graphql-tools/utils": "^9.1.1",
- "tslib": "~2.5.0"
- },
- "peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz",
+ "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
}
},
- "node_modules/@graphql-codegen/core/node_modules/tslib": {
- "version": "2.5.3",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
- "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
- "dev": true
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz",
+ "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
},
- "node_modules/@graphql-codegen/gql-tag-operations": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/gql-tag-operations/-/gql-tag-operations-3.0.1.tgz",
- "integrity": "sha512-8TpJuOiw56wSIS3v+jF5Yr695NYFCpSpChTbUnVLYT6QmnBExv/VwA9bHDchuyUBUE3PfpP/l5JF62Sc0oWmWg==",
+ "node_modules/@eslint-community/eslint-utils": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
+ "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"dev": true,
"dependencies": {
- "@graphql-codegen/plugin-helpers": "^4.2.0",
- "@graphql-codegen/visitor-plugin-common": "3.1.1",
- "@graphql-tools/utils": "^9.0.0",
- "auto-bind": "~4.0.0",
- "tslib": "~2.5.0"
+ "eslint-visitor-keys": "^3.3.0"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
- "node_modules/@graphql-codegen/gql-tag-operations/node_modules/tslib": {
- "version": "2.5.3",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
- "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
- "dev": true
+ "node_modules/@eslint-community/regexpp": {
+ "version": "4.10.0",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
+ "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
+ "dev": true,
+ "engines": {
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
+ }
},
- "node_modules/@graphql-codegen/plugin-helpers": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-4.2.0.tgz",
- "integrity": "sha512-THFTCfg+46PXlXobYJ/OoCX6pzjI+9woQqCjdyKtgoI0tn3Xq2HUUCiidndxUpEYVrXb5pRiRXb7b/ZbMQqD0A==",
+ "node_modules/@eslint/eslintrc": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
+ "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dev": true,
"dependencies": {
- "@graphql-tools/utils": "^9.0.0",
- "change-case-all": "1.0.15",
- "common-tags": "1.8.2",
- "import-from": "4.0.0",
- "lodash": "~4.17.0",
- "tslib": "~2.5.0"
+ "ajv": "^6.12.4",
+ "debug": "^4.3.2",
+ "espree": "^9.6.0",
+ "globals": "^13.19.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.1.0",
+ "minimatch": "^3.1.2",
+ "strip-json-comments": "^3.1.1"
},
- "peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
}
},
- "node_modules/@graphql-codegen/plugin-helpers/node_modules/tslib": {
- "version": "2.5.3",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
- "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
- "dev": true
- },
- "node_modules/@graphql-codegen/schema-ast": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-3.0.1.tgz",
- "integrity": "sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw==",
+ "node_modules/@eslint/eslintrc/node_modules/brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dev": true,
"dependencies": {
- "@graphql-codegen/plugin-helpers": "^4.1.0",
- "@graphql-tools/utils": "^9.0.0",
- "tslib": "~2.5.0"
- },
- "peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
}
},
- "node_modules/@graphql-codegen/schema-ast/node_modules/tslib": {
- "version": "2.5.3",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
- "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
- "dev": true
- },
- "node_modules/@graphql-codegen/typed-document-node": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/typed-document-node/-/typed-document-node-4.0.1.tgz",
- "integrity": "sha512-mQNYCd12JsFSaK6xLry4olY9TdYG7GxQPexU6qU4Om++eKhseGwk2eGmQDRG4Qp8jEDFLMXuHMVUKqMQ1M+F/A==",
+ "node_modules/@eslint/eslintrc/node_modules/globals": {
+ "version": "13.24.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
+ "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
"dev": true,
"dependencies": {
- "@graphql-codegen/plugin-helpers": "^4.2.0",
- "@graphql-codegen/visitor-plugin-common": "3.1.1",
- "auto-bind": "~4.0.0",
- "change-case-all": "1.0.15",
- "tslib": "~2.5.0"
+ "type-fest": "^0.20.2"
},
- "peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@graphql-codegen/typed-document-node/node_modules/tslib": {
- "version": "2.5.3",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
- "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
- "dev": true
- },
- "node_modules/@graphql-codegen/typescript": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-3.0.4.tgz",
- "integrity": "sha512-x4O47447DZrWNtE/l5CU9QzzW4m1RbmCEdijlA3s2flG/y1Ckqdemob4CWfilSm5/tZ3w1junVDY616RDTSvZw==",
+ "node_modules/@eslint/eslintrc/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"dev": true,
"dependencies": {
- "@graphql-codegen/plugin-helpers": "^4.2.0",
- "@graphql-codegen/schema-ast": "^3.0.1",
- "@graphql-codegen/visitor-plugin-common": "3.1.1",
- "auto-bind": "~4.0.0",
- "tslib": "~2.5.0"
+ "brace-expansion": "^1.1.7"
},
- "peerDependencies": {
- "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "engines": {
+ "node": "*"
}
},
- "node_modules/@graphql-codegen/typescript-graphql-request": {
- "version": "4.5.9",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-graphql-request/-/typescript-graphql-request-4.5.9.tgz",
- "integrity": "sha512-Vtv5qymUXcR4UFdHOlJHzK5TN+CZUwMwFDGb3n4Gjcr4yln1BWbUb7DXgD0GHzpXwDIj5G2XmJnFtr0jihBfrg==",
+ "node_modules/@eslint/eslintrc/node_modules/type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
"dev": true,
- "dependencies": {
- "@graphql-codegen/plugin-helpers": "^3.0.0",
- "@graphql-codegen/visitor-plugin-common": "2.13.1",
- "auto-bind": "~4.0.0",
- "tslib": "~2.4.0"
+ "engines": {
+ "node": ">=10"
},
- "peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
- "graphql-request": "^3.4.0 || ^4.0.0 || ~5.0.0 || ~5.1.0",
- "graphql-tag": "^2.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/plugin-helpers": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz",
- "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==",
+ "node_modules/@eslint/js": {
+ "version": "8.57.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz",
+ "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==",
"dev": true,
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ }
+ },
+ "node_modules/@floating-ui/core": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz",
+ "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==",
"dependencies": {
- "@graphql-tools/utils": "^9.0.0",
- "change-case-all": "1.0.15",
- "common-tags": "1.8.2",
- "import-from": "4.0.0",
- "lodash": "~4.17.0",
- "tslib": "~2.4.0"
- },
- "peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "@floating-ui/utils": "^0.2.1"
}
},
- "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common": {
- "version": "2.13.1",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.1.tgz",
- "integrity": "sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==",
- "dev": true,
+ "node_modules/@floating-ui/dom": {
+ "version": "1.6.3",
+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz",
+ "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==",
"dependencies": {
- "@graphql-codegen/plugin-helpers": "^2.7.2",
- "@graphql-tools/optimize": "^1.3.0",
- "@graphql-tools/relay-operation-optimizer": "^6.5.0",
- "@graphql-tools/utils": "^8.8.0",
- "auto-bind": "~4.0.0",
- "change-case-all": "1.0.14",
- "dependency-graph": "^0.11.0",
- "graphql-tag": "^2.11.0",
- "parse-filepath": "^1.0.2",
- "tslib": "~2.4.0"
- },
- "peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "@floating-ui/core": "^1.0.0",
+ "@floating-ui/utils": "^0.2.0"
}
},
- "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common/node_modules/@graphql-codegen/plugin-helpers": {
- "version": "2.7.2",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz",
- "integrity": "sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==",
- "dev": true,
+ "node_modules/@floating-ui/react-dom": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.8.tgz",
+ "integrity": "sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==",
"dependencies": {
- "@graphql-tools/utils": "^8.8.0",
- "change-case-all": "1.0.14",
- "common-tags": "1.8.2",
- "import-from": "4.0.0",
- "lodash": "~4.17.0",
- "tslib": "~2.4.0"
+ "@floating-ui/dom": "^1.6.1"
},
"peerDependencies": {
- "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
}
},
- "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common/node_modules/@graphql-tools/utils": {
- "version": "8.13.1",
- "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.13.1.tgz",
- "integrity": "sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==",
- "dev": true,
+ "node_modules/@floating-ui/utils": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz",
+ "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q=="
+ },
+ "node_modules/@formatjs/ecma402-abstract": {
+ "version": "1.18.2",
+ "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.2.tgz",
+ "integrity": "sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==",
"dependencies": {
+ "@formatjs/intl-localematcher": "0.5.4",
"tslib": "^2.4.0"
- },
- "peerDependencies": {
- "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
- "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common/node_modules/change-case-all": {
- "version": "1.0.14",
- "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz",
- "integrity": "sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==",
- "dev": true,
+ "node_modules/@formatjs/ecma402-abstract/node_modules/@formatjs/intl-localematcher": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.4.tgz",
+ "integrity": "sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==",
"dependencies": {
- "change-case": "^4.1.2",
- "is-lower-case": "^2.0.2",
- "is-upper-case": "^2.0.2",
- "lower-case": "^2.0.2",
- "lower-case-first": "^2.0.2",
- "sponge-case": "^1.0.1",
- "swap-case": "^2.0.2",
- "title-case": "^3.0.3",
- "upper-case": "^2.0.2",
- "upper-case-first": "^2.0.2"
+ "tslib": "^2.4.0"
}
},
- "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/tslib": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz",
- "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==",
- "dev": true
- },
- "node_modules/@graphql-codegen/typescript-operations": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-3.0.4.tgz",
- "integrity": "sha512-6yE2OL2+WJ1vd5MwFEGXpaxsFGzjAGUytPVHDML3Bi3TwP1F3lnQlIko4untwvHW0JhZEGQ7Ck30H9HjcxpdKA==",
- "dev": true,
+ "node_modules/@formatjs/fast-memoize": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz",
+ "integrity": "sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==",
"dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@formatjs/icu-messageformat-parser": {
+ "version": "2.7.6",
+ "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.7.6.tgz",
+ "integrity": "sha512-etVau26po9+eewJKYoiBKP6743I1br0/Ie00Pb/S/PtmYfmjTcOn2YCh2yNkSZI12h6Rg+BOgQYborXk46BvkA==",
+ "dependencies": {
+ "@formatjs/ecma402-abstract": "1.18.2",
+ "@formatjs/icu-skeleton-parser": "1.8.0",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@formatjs/icu-skeleton-parser": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.0.tgz",
+ "integrity": "sha512-QWLAYvM0n8hv7Nq5BEs4LKIjevpVpbGLAJgOaYzg9wABEoX1j0JO1q2/jVkO6CVlq0dbsxZCngS5aXbysYueqA==",
+ "dependencies": {
+ "@formatjs/ecma402-abstract": "1.18.2",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@formatjs/intl-localematcher": {
+ "version": "0.2.32",
+ "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.2.32.tgz",
+ "integrity": "sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ==",
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@graphql-codegen/add": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/add/-/add-4.0.1.tgz",
+ "integrity": "sha512-A7k+9eRfrKyyNfhWEN/0eKz09R5cp4XXxUuNLQAVm/aohmVI2xdMV4lM02rTlM6Pyou3cU/v0iZnhgo6IRpqeg==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-codegen/plugin-helpers": "^4.1.0",
+ "tslib": "~2.5.0"
+ },
+ "peerDependencies": {
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ }
+ },
+ "node_modules/@graphql-codegen/add/node_modules/tslib": {
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
+ "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
+ "dev": true
+ },
+ "node_modules/@graphql-codegen/cli": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-3.3.1.tgz",
+ "integrity": "sha512-4Es8Y9zFeT0Zx2qRL7L3qXDbbqvXK6aID+8v8lP6gaYD+uWx3Jd4Hsq5vxwVBR+6flm0BW/C85Qm0cvmT7O6LA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/generator": "^7.18.13",
+ "@babel/template": "^7.18.10",
+ "@babel/types": "^7.18.13",
+ "@graphql-codegen/core": "^3.1.0",
+ "@graphql-codegen/plugin-helpers": "^4.2.0",
+ "@graphql-tools/apollo-engine-loader": "^7.3.6",
+ "@graphql-tools/code-file-loader": "^7.3.17",
+ "@graphql-tools/git-loader": "^7.2.13",
+ "@graphql-tools/github-loader": "^7.3.20",
+ "@graphql-tools/graphql-file-loader": "^7.5.0",
+ "@graphql-tools/json-file-loader": "^7.4.1",
+ "@graphql-tools/load": "^7.8.0",
+ "@graphql-tools/prisma-loader": "^7.2.49",
+ "@graphql-tools/url-loader": "^7.13.2",
+ "@graphql-tools/utils": "^9.0.0",
+ "@parcel/watcher": "^2.1.0",
+ "@whatwg-node/fetch": "^0.8.0",
+ "chalk": "^4.1.0",
+ "cosmiconfig": "^7.0.0",
+ "debounce": "^1.2.0",
+ "detect-indent": "^6.0.0",
+ "graphql-config": "^4.5.0",
+ "inquirer": "^8.0.0",
+ "is-glob": "^4.0.1",
+ "jiti": "^1.17.1",
+ "json-to-pretty-yaml": "^1.2.2",
+ "listr2": "^4.0.5",
+ "log-symbols": "^4.0.0",
+ "micromatch": "^4.0.5",
+ "shell-quote": "^1.7.3",
+ "string-env-interpolation": "^1.0.1",
+ "ts-log": "^2.2.3",
+ "tslib": "^2.4.0",
+ "yaml": "^1.10.0",
+ "yargs": "^17.0.0"
+ },
+ "bin": {
+ "gql-gen": "cjs/bin.js",
+ "graphql-code-generator": "cjs/bin.js",
+ "graphql-codegen": "cjs/bin.js",
+ "graphql-codegen-esm": "esm/bin.js"
+ },
+ "peerDependencies": {
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ }
+ },
+ "node_modules/@graphql-codegen/client-preset": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/client-preset/-/client-preset-3.0.1.tgz",
+ "integrity": "sha512-aHlnlDWS39kddNJ/I+ItIUj3AX1040aRwHEv2FiPAL0ILrGzHg3AZY1Ay358Ys8fXclrqIN7IeWLmeyI3TIHiA==",
+ "dev": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/template": "^7.20.7",
+ "@graphql-codegen/add": "^4.0.1",
+ "@graphql-codegen/gql-tag-operations": "3.0.1",
"@graphql-codegen/plugin-helpers": "^4.2.0",
+ "@graphql-codegen/typed-document-node": "^4.0.1",
"@graphql-codegen/typescript": "^3.0.4",
- "@graphql-codegen/visitor-plugin-common": "3.1.1",
- "auto-bind": "~4.0.0",
+ "@graphql-codegen/typescript-operations": "^3.0.4",
+ "@graphql-codegen/visitor-plugin-common": "^3.1.1",
+ "@graphql-tools/documents": "^0.1.0",
+ "@graphql-tools/utils": "^9.0.0",
+ "@graphql-typed-document-node/core": "3.2.0",
"tslib": "~2.5.0"
},
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
}
},
- "node_modules/@graphql-codegen/typescript-operations/node_modules/tslib": {
+ "node_modules/@graphql-codegen/client-preset/node_modules/tslib": {
"version": "2.5.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
"integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
"dev": true
},
- "node_modules/@graphql-codegen/typescript/node_modules/tslib": {
+ "node_modules/@graphql-codegen/core": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-3.1.0.tgz",
+ "integrity": "sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-codegen/plugin-helpers": "^4.1.0",
+ "@graphql-tools/schema": "^9.0.0",
+ "@graphql-tools/utils": "^9.1.1",
+ "tslib": "~2.5.0"
+ },
+ "peerDependencies": {
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ }
+ },
+ "node_modules/@graphql-codegen/core/node_modules/tslib": {
"version": "2.5.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
"integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
"dev": true
},
- "node_modules/@graphql-codegen/visitor-plugin-common": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-3.1.1.tgz",
- "integrity": "sha512-uAfp+zu/009R3HUAuTK2AamR1bxIltM6rrYYI6EXSmkM3rFtFsLTuJhjUDj98HcUCszJZrADppz8KKLGRUVlNg==",
+ "node_modules/@graphql-codegen/gql-tag-operations": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/gql-tag-operations/-/gql-tag-operations-3.0.1.tgz",
+ "integrity": "sha512-8TpJuOiw56wSIS3v+jF5Yr695NYFCpSpChTbUnVLYT6QmnBExv/VwA9bHDchuyUBUE3PfpP/l5JF62Sc0oWmWg==",
"dev": true,
"dependencies": {
"@graphql-codegen/plugin-helpers": "^4.2.0",
- "@graphql-tools/optimize": "^1.3.0",
- "@graphql-tools/relay-operation-optimizer": "^6.5.0",
+ "@graphql-codegen/visitor-plugin-common": "3.1.1",
"@graphql-tools/utils": "^9.0.0",
"auto-bind": "~4.0.0",
- "change-case-all": "1.0.15",
- "dependency-graph": "^0.11.0",
- "graphql-tag": "^2.11.0",
- "parse-filepath": "^1.0.2",
"tslib": "~2.5.0"
},
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
}
},
- "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/tslib": {
+ "node_modules/@graphql-codegen/gql-tag-operations/node_modules/tslib": {
"version": "2.5.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
"integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
"dev": true
},
- "node_modules/@graphql-tools/apollo-engine-loader": {
- "version": "7.3.26",
- "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.3.26.tgz",
- "integrity": "sha512-h1vfhdJFjnCYn9b5EY1Z91JTF0KB3hHVJNQIsiUV2mpQXZdeOXQoaWeYEKaiI5R6kwBw5PP9B0fv3jfUIG8LyQ==",
+ "node_modules/@graphql-codegen/plugin-helpers": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-4.2.0.tgz",
+ "integrity": "sha512-THFTCfg+46PXlXobYJ/OoCX6pzjI+9woQqCjdyKtgoI0tn3Xq2HUUCiidndxUpEYVrXb5pRiRXb7b/ZbMQqD0A==",
"dev": true,
"dependencies": {
- "@ardatan/sync-fetch": "^0.0.1",
- "@graphql-tools/utils": "^9.2.1",
- "@whatwg-node/fetch": "^0.8.0",
- "tslib": "^2.4.0"
+ "@graphql-tools/utils": "^9.0.0",
+ "change-case-all": "1.0.15",
+ "common-tags": "1.8.2",
+ "import-from": "4.0.0",
+ "lodash": "~4.17.0",
+ "tslib": "~2.5.0"
},
"peerDependencies": {
- "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
}
},
- "node_modules/@graphql-tools/batch-execute": {
- "version": "8.5.22",
- "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.22.tgz",
- "integrity": "sha512-hcV1JaY6NJQFQEwCKrYhpfLK8frSXDbtNMoTur98u10Cmecy1zrqNKSqhEyGetpgHxaJRqszGzKeI3RuroDN6A==",
+ "node_modules/@graphql-codegen/plugin-helpers/node_modules/tslib": {
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
+ "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
+ "dev": true
+ },
+ "node_modules/@graphql-codegen/schema-ast": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-3.0.1.tgz",
+ "integrity": "sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw==",
"dev": true,
"dependencies": {
- "@graphql-tools/utils": "^9.2.1",
- "dataloader": "^2.2.2",
- "tslib": "^2.4.0",
- "value-or-promise": "^1.0.12"
+ "@graphql-codegen/plugin-helpers": "^4.1.0",
+ "@graphql-tools/utils": "^9.0.0",
+ "tslib": "~2.5.0"
},
"peerDependencies": {
- "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
}
},
- "node_modules/@graphql-tools/code-file-loader": {
- "version": "7.3.23",
- "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz",
- "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==",
+ "node_modules/@graphql-codegen/schema-ast/node_modules/tslib": {
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
+ "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
+ "dev": true
+ },
+ "node_modules/@graphql-codegen/typed-document-node": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/typed-document-node/-/typed-document-node-4.0.1.tgz",
+ "integrity": "sha512-mQNYCd12JsFSaK6xLry4olY9TdYG7GxQPexU6qU4Om++eKhseGwk2eGmQDRG4Qp8jEDFLMXuHMVUKqMQ1M+F/A==",
"dev": true,
"dependencies": {
- "@graphql-tools/graphql-tag-pluck": "7.5.2",
- "@graphql-tools/utils": "^9.2.1",
- "globby": "^11.0.3",
- "tslib": "^2.4.0",
- "unixify": "^1.0.0"
+ "@graphql-codegen/plugin-helpers": "^4.2.0",
+ "@graphql-codegen/visitor-plugin-common": "3.1.1",
+ "auto-bind": "~4.0.0",
+ "change-case-all": "1.0.15",
+ "tslib": "~2.5.0"
},
"peerDependencies": {
- "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
}
},
- "node_modules/@graphql-tools/delegate": {
- "version": "9.0.35",
- "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.35.tgz",
- "integrity": "sha512-jwPu8NJbzRRMqi4Vp/5QX1vIUeUPpWmlQpOkXQD2r1X45YsVceyUUBnktCrlJlDB4jPRVy7JQGwmYo3KFiOBMA==",
+ "node_modules/@graphql-codegen/typed-document-node/node_modules/tslib": {
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
+ "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
+ "dev": true
+ },
+ "node_modules/@graphql-codegen/typescript": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-3.0.4.tgz",
+ "integrity": "sha512-x4O47447DZrWNtE/l5CU9QzzW4m1RbmCEdijlA3s2flG/y1Ckqdemob4CWfilSm5/tZ3w1junVDY616RDTSvZw==",
"dev": true,
"dependencies": {
- "@graphql-tools/batch-execute": "^8.5.22",
- "@graphql-tools/executor": "^0.0.20",
- "@graphql-tools/schema": "^9.0.19",
- "@graphql-tools/utils": "^9.2.1",
- "dataloader": "^2.2.2",
- "tslib": "^2.5.0",
- "value-or-promise": "^1.0.12"
+ "@graphql-codegen/plugin-helpers": "^4.2.0",
+ "@graphql-codegen/schema-ast": "^3.0.1",
+ "@graphql-codegen/visitor-plugin-common": "3.1.1",
+ "auto-bind": "~4.0.0",
+ "tslib": "~2.5.0"
},
"peerDependencies": {
- "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
+ "graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
}
},
- "node_modules/@graphql-tools/documents": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/@graphql-tools/documents/-/documents-0.1.0.tgz",
- "integrity": "sha512-1WQeovHv5S1M3xMzQxbSrG3yl6QOnsq2JUBnlg5/0aMM5R4GNMx6Ms+ROByez/dnuA81kstRuSK+2qpe+GaRIw==",
+ "node_modules/@graphql-codegen/typescript-graphql-request": {
+ "version": "4.5.9",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-graphql-request/-/typescript-graphql-request-4.5.9.tgz",
+ "integrity": "sha512-Vtv5qymUXcR4UFdHOlJHzK5TN+CZUwMwFDGb3n4Gjcr4yln1BWbUb7DXgD0GHzpXwDIj5G2XmJnFtr0jihBfrg==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-codegen/plugin-helpers": "^3.0.0",
+ "@graphql-codegen/visitor-plugin-common": "2.13.1",
+ "auto-bind": "~4.0.0",
+ "tslib": "~2.4.0"
+ },
+ "peerDependencies": {
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0",
+ "graphql-request": "^3.4.0 || ^4.0.0 || ~5.0.0 || ~5.1.0",
+ "graphql-tag": "^2.0.0"
+ }
+ },
+ "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/plugin-helpers": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-3.1.2.tgz",
+ "integrity": "sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-tools/utils": "^9.0.0",
+ "change-case-all": "1.0.15",
+ "common-tags": "1.8.2",
+ "import-from": "4.0.0",
+ "lodash": "~4.17.0",
+ "tslib": "~2.4.0"
+ },
+ "peerDependencies": {
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ }
+ },
+ "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common": {
+ "version": "2.13.1",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.1.tgz",
+ "integrity": "sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-codegen/plugin-helpers": "^2.7.2",
+ "@graphql-tools/optimize": "^1.3.0",
+ "@graphql-tools/relay-operation-optimizer": "^6.5.0",
+ "@graphql-tools/utils": "^8.8.0",
+ "auto-bind": "~4.0.0",
+ "change-case-all": "1.0.14",
+ "dependency-graph": "^0.11.0",
+ "graphql-tag": "^2.11.0",
+ "parse-filepath": "^1.0.2",
+ "tslib": "~2.4.0"
+ },
+ "peerDependencies": {
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ }
+ },
+ "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common/node_modules/@graphql-codegen/plugin-helpers": {
+ "version": "2.7.2",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz",
+ "integrity": "sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-tools/utils": "^8.8.0",
+ "change-case-all": "1.0.14",
+ "common-tags": "1.8.2",
+ "import-from": "4.0.0",
+ "lodash": "~4.17.0",
+ "tslib": "~2.4.0"
+ },
+ "peerDependencies": {
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ }
+ },
+ "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common/node_modules/@graphql-tools/utils": {
+ "version": "8.13.1",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.13.1.tgz",
+ "integrity": "sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==",
+ "dev": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ },
+ "peerDependencies": {
+ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/@graphql-codegen/visitor-plugin-common/node_modules/change-case-all": {
+ "version": "1.0.14",
+ "resolved": "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz",
+ "integrity": "sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==",
+ "dev": true,
+ "dependencies": {
+ "change-case": "^4.1.2",
+ "is-lower-case": "^2.0.2",
+ "is-upper-case": "^2.0.2",
+ "lower-case": "^2.0.2",
+ "lower-case-first": "^2.0.2",
+ "sponge-case": "^1.0.1",
+ "swap-case": "^2.0.2",
+ "title-case": "^3.0.3",
+ "upper-case": "^2.0.2",
+ "upper-case-first": "^2.0.2"
+ }
+ },
+ "node_modules/@graphql-codegen/typescript-graphql-request/node_modules/tslib": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz",
+ "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==",
+ "dev": true
+ },
+ "node_modules/@graphql-codegen/typescript-operations": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-3.0.4.tgz",
+ "integrity": "sha512-6yE2OL2+WJ1vd5MwFEGXpaxsFGzjAGUytPVHDML3Bi3TwP1F3lnQlIko4untwvHW0JhZEGQ7Ck30H9HjcxpdKA==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-codegen/plugin-helpers": "^4.2.0",
+ "@graphql-codegen/typescript": "^3.0.4",
+ "@graphql-codegen/visitor-plugin-common": "3.1.1",
+ "auto-bind": "~4.0.0",
+ "tslib": "~2.5.0"
+ },
+ "peerDependencies": {
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ }
+ },
+ "node_modules/@graphql-codegen/typescript-operations/node_modules/tslib": {
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
+ "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
+ "dev": true
+ },
+ "node_modules/@graphql-codegen/typescript/node_modules/tslib": {
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
+ "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
+ "dev": true
+ },
+ "node_modules/@graphql-codegen/visitor-plugin-common": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-3.1.1.tgz",
+ "integrity": "sha512-uAfp+zu/009R3HUAuTK2AamR1bxIltM6rrYYI6EXSmkM3rFtFsLTuJhjUDj98HcUCszJZrADppz8KKLGRUVlNg==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-codegen/plugin-helpers": "^4.2.0",
+ "@graphql-tools/optimize": "^1.3.0",
+ "@graphql-tools/relay-operation-optimizer": "^6.5.0",
+ "@graphql-tools/utils": "^9.0.0",
+ "auto-bind": "~4.0.0",
+ "change-case-all": "1.0.15",
+ "dependency-graph": "^0.11.0",
+ "graphql-tag": "^2.11.0",
+ "parse-filepath": "^1.0.2",
+ "tslib": "~2.5.0"
+ },
+ "peerDependencies": {
+ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ }
+ },
+ "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/tslib": {
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz",
+ "integrity": "sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==",
+ "dev": true
+ },
+ "node_modules/@graphql-tools/apollo-engine-loader": {
+ "version": "7.3.26",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.3.26.tgz",
+ "integrity": "sha512-h1vfhdJFjnCYn9b5EY1Z91JTF0KB3hHVJNQIsiUV2mpQXZdeOXQoaWeYEKaiI5R6kwBw5PP9B0fv3jfUIG8LyQ==",
+ "dev": true,
+ "dependencies": {
+ "@ardatan/sync-fetch": "^0.0.1",
+ "@graphql-tools/utils": "^9.2.1",
+ "@whatwg-node/fetch": "^0.8.0",
+ "tslib": "^2.4.0"
+ },
+ "peerDependencies": {
+ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@graphql-tools/batch-execute": {
+ "version": "8.5.22",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.22.tgz",
+ "integrity": "sha512-hcV1JaY6NJQFQEwCKrYhpfLK8frSXDbtNMoTur98u10Cmecy1zrqNKSqhEyGetpgHxaJRqszGzKeI3RuroDN6A==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-tools/utils": "^9.2.1",
+ "dataloader": "^2.2.2",
+ "tslib": "^2.4.0",
+ "value-or-promise": "^1.0.12"
+ },
+ "peerDependencies": {
+ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@graphql-tools/code-file-loader": {
+ "version": "7.3.23",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz",
+ "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-tools/graphql-tag-pluck": "7.5.2",
+ "@graphql-tools/utils": "^9.2.1",
+ "globby": "^11.0.3",
+ "tslib": "^2.4.0",
+ "unixify": "^1.0.0"
+ },
+ "peerDependencies": {
+ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@graphql-tools/delegate": {
+ "version": "9.0.35",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.35.tgz",
+ "integrity": "sha512-jwPu8NJbzRRMqi4Vp/5QX1vIUeUPpWmlQpOkXQD2r1X45YsVceyUUBnktCrlJlDB4jPRVy7JQGwmYo3KFiOBMA==",
+ "dev": true,
+ "dependencies": {
+ "@graphql-tools/batch-execute": "^8.5.22",
+ "@graphql-tools/executor": "^0.0.20",
+ "@graphql-tools/schema": "^9.0.19",
+ "@graphql-tools/utils": "^9.2.1",
+ "dataloader": "^2.2.2",
+ "tslib": "^2.5.0",
+ "value-or-promise": "^1.0.12"
+ },
+ "peerDependencies": {
+ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
+ }
+ },
+ "node_modules/@graphql-tools/documents": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/@graphql-tools/documents/-/documents-0.1.0.tgz",
+ "integrity": "sha512-1WQeovHv5S1M3xMzQxbSrG3yl6QOnsq2JUBnlg5/0aMM5R4GNMx6Ms+ROByez/dnuA81kstRuSK+2qpe+GaRIw==",
"dev": true,
"dependencies": {
"lodash.sortby": "^4.7.0",
@@ -2774,10 +3131,9 @@
}
},
"node_modules/@ianvs/prettier-plugin-sort-imports": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/@ianvs/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-4.2.1.tgz",
- "integrity": "sha512-NKN1LVFWUDGDGr3vt+6Ey3qPeN/163uR1pOPAlkWpgvAqgxQ6kSdUf1F0it8aHUtKRUzEGcK38Wxd07O61d7+Q==",
- "dev": true,
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/@ianvs/prettier-plugin-sort-imports/-/prettier-plugin-sort-imports-4.3.1.tgz",
+ "integrity": "sha512-ZHwbyjkANZOjaBm3ZosADD2OUYGFzQGxfy67HmGZU94mHqe7g1LCMA7YYKB1Cq+UTPCBqlAYapY0KXAjKEw8Sg==",
"dependencies": {
"@babel/core": "^7.24.0",
"@babel/generator": "^7.23.6",
@@ -2800,7 +3156,6 @@
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "dev": true,
"dependencies": {
"yallist": "^4.0.0"
},
@@ -2812,7 +3167,6 @@
"version": "7.6.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
"integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
- "dev": true,
"dependencies": {
"lru-cache": "^6.0.0"
},
@@ -2826,8 +3180,7 @@
"node_modules/@ianvs/prettier-plugin-sort-imports/node_modules/yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "dev": true
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
},
"node_modules/@iarna/toml": {
"version": "2.2.5",
@@ -3422,10 +3775,20 @@
"node": ">=6.0.0"
}
},
+ "node_modules/@jridgewell/source-map": {
+ "version": "0.3.6",
+ "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
+ "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
+ "peer": true,
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25"
+ }
+ },
"node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.4.15",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
- "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.25",
@@ -3793,278 +4156,571 @@
"@octokit/openapi-types": "^20.0.0"
}
},
- "node_modules/@panva/hkdf": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/@panva/hkdf/-/hkdf-1.1.1.tgz",
- "integrity": "sha512-dhPeilub1NuIG0X5Kvhh9lH4iW3ZsHlnzwgwbOlgwQ2wG1IqFzsgHqmKPk3WzsdWAeaxKJxgM0+W433RmN45GA==",
- "funding": {
- "url": "https://github.com/sponsors/panva"
+ "node_modules/@opentelemetry/api": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz",
+ "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==",
+ "engines": {
+ "node": ">=8.0.0"
}
},
- "node_modules/@parcel/watcher": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz",
- "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==",
- "dev": true,
+ "node_modules/@opentelemetry/api-logs": {
+ "version": "0.53.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz",
+ "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==",
"dependencies": {
- "detect-libc": "^1.0.3",
- "is-glob": "^4.0.3",
- "micromatch": "^4.0.5",
- "node-addon-api": "^7.0.0"
+ "@opentelemetry/api": "^1.0.0"
},
"engines": {
- "node": ">= 10.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "node": ">=14"
+ }
+ },
+ "node_modules/@opentelemetry/context-async-hooks": {
+ "version": "1.26.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-1.26.0.tgz",
+ "integrity": "sha512-HedpXXYzzbaoutw6DFLWLDket2FwLkLpil4hGCZ1xYEIMTcivdfwEOISgdbLEWyG3HW52gTq2V9mOVJrONgiwg==",
+ "engines": {
+ "node": ">=14"
},
- "optionalDependencies": {
- "@parcel/watcher-android-arm64": "2.4.1",
- "@parcel/watcher-darwin-arm64": "2.4.1",
- "@parcel/watcher-darwin-x64": "2.4.1",
- "@parcel/watcher-freebsd-x64": "2.4.1",
- "@parcel/watcher-linux-arm-glibc": "2.4.1",
- "@parcel/watcher-linux-arm64-glibc": "2.4.1",
- "@parcel/watcher-linux-arm64-musl": "2.4.1",
- "@parcel/watcher-linux-x64-glibc": "2.4.1",
- "@parcel/watcher-linux-x64-musl": "2.4.1",
- "@parcel/watcher-win32-arm64": "2.4.1",
- "@parcel/watcher-win32-ia32": "2.4.1",
- "@parcel/watcher-win32-x64": "2.4.1"
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
}
},
- "node_modules/@parcel/watcher-android-arm64": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz",
- "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "android"
- ],
+ "node_modules/@opentelemetry/core": {
+ "version": "1.26.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.26.0.tgz",
+ "integrity": "sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==",
+ "dependencies": {
+ "@opentelemetry/semantic-conventions": "1.27.0"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
}
},
- "node_modules/@parcel/watcher-darwin-arm64": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz",
- "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "darwin"
- ],
+ "node_modules/@opentelemetry/instrumentation": {
+ "version": "0.53.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz",
+ "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==",
+ "dependencies": {
+ "@opentelemetry/api-logs": "0.53.0",
+ "@types/shimmer": "^1.2.0",
+ "import-in-the-middle": "^1.8.1",
+ "require-in-the-middle": "^7.1.1",
+ "semver": "^7.5.2",
+ "shimmer": "^1.2.1"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
}
},
- "node_modules/@parcel/watcher-darwin-x64": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz",
- "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "darwin"
- ],
+ "node_modules/@opentelemetry/instrumentation-amqplib": {
+ "version": "0.42.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.42.0.tgz",
+ "integrity": "sha512-fiuU6OKsqHJiydHWgTRQ7MnIrJ2lEqsdgFtNIH4LbAUJl/5XmrIeoDzDnox+hfkgWK65jsleFuQDtYb5hW1koQ==",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
}
},
- "node_modules/@parcel/watcher-freebsd-x64": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz",
- "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "freebsd"
- ],
+ "node_modules/@opentelemetry/instrumentation-connect": {
+ "version": "0.39.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-connect/-/instrumentation-connect-0.39.0.tgz",
+ "integrity": "sha512-pGBiKevLq7NNglMgqzmeKczF4XQMTOUOTkK8afRHMZMnrK3fcETyTH7lVaSozwiOM3Ws+SuEmXZT7DYrrhxGlg==",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@types/connect": "3.4.36"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
}
},
- "node_modules/@parcel/watcher-linux-arm-glibc": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz",
- "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
+ "node_modules/@opentelemetry/instrumentation-connect/node_modules/@types/connect": {
+ "version": "3.4.36",
+ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.36.tgz",
+ "integrity": "sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-dataloader": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-dataloader/-/instrumentation-dataloader-0.12.0.tgz",
+ "integrity": "sha512-pnPxatoFE0OXIZDQhL2okF//dmbiWFzcSc8pUg9TqofCLYZySSxDCgQc69CJBo5JnI3Gz1KP+mOjS4WAeRIH4g==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
}
},
- "node_modules/@parcel/watcher-linux-arm64-glibc": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz",
- "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
+ "node_modules/@opentelemetry/instrumentation-express": {
+ "version": "0.42.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-express/-/instrumentation-express-0.42.0.tgz",
+ "integrity": "sha512-YNcy7ZfGnLsVEqGXQPT+S0G1AE46N21ORY7i7yUQyfhGAL4RBjnZUqefMI0NwqIl6nGbr1IpF0rZGoN8Q7x12Q==",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
}
},
- "node_modules/@parcel/watcher-linux-arm64-musl": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz",
- "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
+ "node_modules/@opentelemetry/instrumentation-fastify": {
+ "version": "0.39.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-fastify/-/instrumentation-fastify-0.39.0.tgz",
+ "integrity": "sha512-SS9uSlKcsWZabhBp2szErkeuuBDgxOUlllwkS92dVaWRnMmwysPhcEgHKB8rUe3BHg/GnZC1eo1hbTZv4YhfoA==",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
}
},
- "node_modules/@parcel/watcher-linux-x64-glibc": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz",
- "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
+ "node_modules/@opentelemetry/instrumentation-fs": {
+ "version": "0.15.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-fs/-/instrumentation-fs-0.15.0.tgz",
+ "integrity": "sha512-JWVKdNLpu1skqZQA//jKOcKdJC66TWKqa2FUFq70rKohvaSq47pmXlnabNO+B/BvLfmidfiaN35XakT5RyMl2Q==",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.53.0"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
}
},
- "node_modules/@parcel/watcher-linux-x64-musl": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz",
- "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "linux"
- ],
+ "node_modules/@opentelemetry/instrumentation-generic-pool": {
+ "version": "0.39.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-generic-pool/-/instrumentation-generic-pool-0.39.0.tgz",
+ "integrity": "sha512-y4v8Y+tSfRB3NNBvHjbjrn7rX/7sdARG7FuK6zR8PGb28CTa0kHpEGCJqvL9L8xkTNvTXo+lM36ajFGUaK1aNw==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
}
},
- "node_modules/@parcel/watcher-win32-arm64": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz",
- "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "win32"
- ],
+ "node_modules/@opentelemetry/instrumentation-graphql": {
+ "version": "0.43.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-graphql/-/instrumentation-graphql-0.43.0.tgz",
+ "integrity": "sha512-aI3YMmC2McGd8KW5du1a2gBA0iOMOGLqg4s9YjzwbjFwjlmMNFSK1P3AIg374GWg823RPUGfVTIgZ/juk9CVOA==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
}
},
- "node_modules/@parcel/watcher-win32-ia32": {
- "version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz",
- "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "optional": true,
- "os": [
- "win32"
- ],
+ "node_modules/@opentelemetry/instrumentation-hapi": {
+ "version": "0.41.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-hapi/-/instrumentation-hapi-0.41.0.tgz",
+ "integrity": "sha512-jKDrxPNXDByPlYcMdZjNPYCvw0SQJjN+B1A+QH+sx+sAHsKSAf9hwFiJSrI6C4XdOls43V/f/fkp9ITkHhKFbQ==",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
"engines": {
- "node": ">= 10.0.0"
+ "node": ">=14"
},
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/parcel"
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
}
},
- "node_modules/@parcel/watcher-win32-x64": {
+ "node_modules/@opentelemetry/instrumentation-http": {
+ "version": "0.53.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-http/-/instrumentation-http-0.53.0.tgz",
+ "integrity": "sha512-H74ErMeDuZfj7KgYCTOFGWF5W9AfaPnqLQQxeFq85+D29wwV2yqHbz2IKLYpkOh7EI6QwDEl7rZCIxjJLyc/CQ==",
+ "dependencies": {
+ "@opentelemetry/core": "1.26.0",
+ "@opentelemetry/instrumentation": "0.53.0",
+ "@opentelemetry/semantic-conventions": "1.27.0",
+ "semver": "^7.5.2"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-http/node_modules/semver": {
+ "version": "7.6.3",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-ioredis": {
+ "version": "0.43.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-ioredis/-/instrumentation-ioredis-0.43.0.tgz",
+ "integrity": "sha512-i3Dke/LdhZbiUAEImmRG3i7Dimm/BD7t8pDDzwepSvIQ6s2X6FPia7561gw+64w+nx0+G9X14D7rEfaMEmmjig==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/redis-common": "^0.36.2",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-kafkajs": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-kafkajs/-/instrumentation-kafkajs-0.3.0.tgz",
+ "integrity": "sha512-UnkZueYK1ise8FXQeKlpBd7YYUtC7mM8J0wzUSccEfc/G8UqHQqAzIyYCUOUPUKp8GsjLnWOOK/3hJc4owb7Jg==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-koa": {
+ "version": "0.43.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-koa/-/instrumentation-koa-0.43.0.tgz",
+ "integrity": "sha512-lDAhSnmoTIN6ELKmLJBplXzT/Jqs5jGZehuG22EdSMaTwgjMpxMDI1YtlKEhiWPWkrz5LUsd0aOO0ZRc9vn3AQ==",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-lru-memoizer": {
+ "version": "0.40.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-lru-memoizer/-/instrumentation-lru-memoizer-0.40.0.tgz",
+ "integrity": "sha512-21xRwZsEdMPnROu/QsaOIODmzw59IYpGFmuC4aFWvMj6stA8+Ei1tX67nkarJttlNjoM94um0N4X26AD7ff54A==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-mongodb": {
+ "version": "0.47.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mongodb/-/instrumentation-mongodb-0.47.0.tgz",
+ "integrity": "sha512-yqyXRx2SulEURjgOQyJzhCECSh5i1uM49NUaq9TqLd6fA7g26OahyJfsr9NE38HFqGRHpi4loyrnfYGdrsoVjQ==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/sdk-metrics": "^1.9.1",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-mongoose": {
+ "version": "0.42.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mongoose/-/instrumentation-mongoose-0.42.0.tgz",
+ "integrity": "sha512-AnWv+RaR86uG3qNEMwt3plKX1ueRM7AspfszJYVkvkehiicC3bHQA6vWdb6Zvy5HAE14RyFbu9+2hUUjR2NSyg==",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-mysql": {
+ "version": "0.41.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql/-/instrumentation-mysql-0.41.0.tgz",
+ "integrity": "sha512-jnvrV6BsQWyHS2qb2fkfbfSb1R/lmYwqEZITwufuRl37apTopswu9izc0b1CYRp/34tUG/4k/V39PND6eyiNvw==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@types/mysql": "2.15.26"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-mysql2": {
+ "version": "0.41.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-mysql2/-/instrumentation-mysql2-0.41.0.tgz",
+ "integrity": "sha512-REQB0x+IzVTpoNgVmy5b+UnH1/mDByrneimP6sbDHkp1j8QOl1HyWOrBH/6YWR0nrbU3l825Em5PlybjT3232g==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@opentelemetry/sql-common": "^0.40.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-nestjs-core": {
+ "version": "0.40.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-nestjs-core/-/instrumentation-nestjs-core-0.40.0.tgz",
+ "integrity": "sha512-WF1hCUed07vKmf5BzEkL0wSPinqJgH7kGzOjjMAiTGacofNXjb/y4KQ8loj2sNsh5C/NN7s1zxQuCgbWbVTGKg==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-pg": {
+ "version": "0.44.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-pg/-/instrumentation-pg-0.44.0.tgz",
+ "integrity": "sha512-oTWVyzKqXud1BYEGX1loo2o4k4vaU1elr3vPO8NZolrBtFvQ34nx4HgUaexUDuEog00qQt+MLR5gws/p+JXMLQ==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@opentelemetry/sql-common": "^0.40.1",
+ "@types/pg": "8.6.1",
+ "@types/pg-pool": "2.0.6"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-redis-4": {
+ "version": "0.42.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-redis-4/-/instrumentation-redis-4-0.42.0.tgz",
+ "integrity": "sha512-NaD+t2JNcOzX/Qa7kMy68JbmoVIV37fT/fJYzLKu2Wwd+0NCxt+K2OOsOakA8GVg8lSpFdbx4V/suzZZ2Pvdjg==",
+ "dependencies": {
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/redis-common": "^0.36.2",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation-undici": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-undici/-/instrumentation-undici-0.6.0.tgz",
+ "integrity": "sha512-ABJBhm5OdhGmbh0S/fOTE4N69IZ00CsHC5ijMYfzbw3E5NwLgpQk5xsljaECrJ8wz1SfXbO03FiSuu5AyRAkvQ==",
+ "dependencies": {
+ "@opentelemetry/core": "^1.8.0",
+ "@opentelemetry/instrumentation": "^0.53.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.7.0"
+ }
+ },
+ "node_modules/@opentelemetry/instrumentation/node_modules/semver": {
+ "version": "7.6.3",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@opentelemetry/redis-common": {
+ "version": "0.36.2",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/redis-common/-/redis-common-0.36.2.tgz",
+ "integrity": "sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==",
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@opentelemetry/resources": {
+ "version": "1.26.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.26.0.tgz",
+ "integrity": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==",
+ "dependencies": {
+ "@opentelemetry/core": "1.26.0",
+ "@opentelemetry/semantic-conventions": "1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/sdk-metrics": {
+ "version": "1.26.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.26.0.tgz",
+ "integrity": "sha512-0SvDXmou/JjzSDOjUmetAAvcKQW6ZrvosU0rkbDGpXvvZN+pQF6JbK/Kd4hNdK4q/22yeruqvukXEJyySTzyTQ==",
+ "dependencies": {
+ "@opentelemetry/core": "1.26.0",
+ "@opentelemetry/resources": "1.26.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.3.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/sdk-trace-base": {
+ "version": "1.26.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.26.0.tgz",
+ "integrity": "sha512-olWQldtvbK4v22ymrKLbIcBi9L2SpMO84sCPY54IVsJhP9fRsxJT194C/AVaAuJzLE30EdhhM1VmvVYR7az+cw==",
+ "dependencies": {
+ "@opentelemetry/core": "1.26.0",
+ "@opentelemetry/resources": "1.26.0",
+ "@opentelemetry/semantic-conventions": "1.27.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": ">=1.0.0 <1.10.0"
+ }
+ },
+ "node_modules/@opentelemetry/semantic-conventions": {
+ "version": "1.27.0",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz",
+ "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==",
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@opentelemetry/sql-common": {
+ "version": "0.40.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/sql-common/-/sql-common-0.40.1.tgz",
+ "integrity": "sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg==",
+ "dependencies": {
+ "@opentelemetry/core": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.1.0"
+ }
+ },
+ "node_modules/@panva/hkdf": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@panva/hkdf/-/hkdf-1.1.1.tgz",
+ "integrity": "sha512-dhPeilub1NuIG0X5Kvhh9lH4iW3ZsHlnzwgwbOlgwQ2wG1IqFzsgHqmKPk3WzsdWAeaxKJxgM0+W433RmN45GA==",
+ "funding": {
+ "url": "https://github.com/sponsors/panva"
+ }
+ },
+ "node_modules/@parcel/watcher": {
"version": "2.4.1",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz",
- "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz",
+ "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==",
+ "dev": true,
+ "dependencies": {
+ "detect-libc": "^1.0.3",
+ "is-glob": "^4.0.3",
+ "micromatch": "^4.0.5",
+ "node-addon-api": "^7.0.0"
+ },
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "optionalDependencies": {
+ "@parcel/watcher-android-arm64": "2.4.1",
+ "@parcel/watcher-darwin-arm64": "2.4.1",
+ "@parcel/watcher-darwin-x64": "2.4.1",
+ "@parcel/watcher-freebsd-x64": "2.4.1",
+ "@parcel/watcher-linux-arm-glibc": "2.4.1",
+ "@parcel/watcher-linux-arm64-glibc": "2.4.1",
+ "@parcel/watcher-linux-arm64-musl": "2.4.1",
+ "@parcel/watcher-linux-x64-glibc": "2.4.1",
+ "@parcel/watcher-linux-x64-musl": "2.4.1",
+ "@parcel/watcher-win32-arm64": "2.4.1",
+ "@parcel/watcher-win32-ia32": "2.4.1",
+ "@parcel/watcher-win32-x64": "2.4.1"
+ }
+ },
+ "node_modules/@parcel/watcher-android-arm64": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz",
+ "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==",
"cpu": [
- "x64"
+ "arm64"
],
"dev": true,
"optional": true,
"os": [
- "win32"
+ "android"
],
"engines": {
"node": ">= 10.0.0"
@@ -4074,122 +4730,845 @@
"url": "https://opencollective.com/parcel"
}
},
- "node_modules/@peculiar/asn1-schema": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.3.8.tgz",
- "integrity": "sha512-ULB1XqHKx1WBU/tTFIA+uARuRoBVZ4pNdOA878RDrRbBfBGcSzi5HBkdScC6ZbHn8z7L8gmKCgPC1LHRrP46tA==",
+ "node_modules/@parcel/watcher-darwin-arm64": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz",
+ "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==",
+ "cpu": [
+ "arm64"
+ ],
"dev": true,
- "dependencies": {
- "asn1js": "^3.0.5",
- "pvtsutils": "^1.3.5",
- "tslib": "^2.6.2"
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-darwin-x64": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz",
+ "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-freebsd-x64": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz",
+ "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-arm-glibc": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz",
+ "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-arm64-glibc": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz",
+ "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-arm64-musl": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz",
+ "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-x64-glibc": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz",
+ "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-x64-musl": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz",
+ "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-win32-arm64": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz",
+ "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-win32-ia32": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz",
+ "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-win32-x64": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz",
+ "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@peculiar/asn1-schema": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.3.8.tgz",
+ "integrity": "sha512-ULB1XqHKx1WBU/tTFIA+uARuRoBVZ4pNdOA878RDrRbBfBGcSzi5HBkdScC6ZbHn8z7L8gmKCgPC1LHRrP46tA==",
+ "dev": true,
+ "dependencies": {
+ "asn1js": "^3.0.5",
+ "pvtsutils": "^1.3.5",
+ "tslib": "^2.6.2"
+ }
+ },
+ "node_modules/@peculiar/json-schema": {
+ "version": "1.1.12",
+ "resolved": "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz",
+ "integrity": "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==",
+ "dev": true,
+ "dependencies": {
+ "tslib": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/@peculiar/webcrypto": {
+ "version": "1.4.5",
+ "resolved": "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.5.tgz",
+ "integrity": "sha512-oDk93QCDGdxFRM8382Zdminzs44dg3M2+E5Np+JWkpqLDyJC9DviMh8F8mEJkYuUcUOGA5jHO5AJJ10MFWdbZw==",
+ "dev": true,
+ "dependencies": {
+ "@peculiar/asn1-schema": "^2.3.8",
+ "@peculiar/json-schema": "^1.1.12",
+ "pvtsutils": "^1.3.5",
+ "tslib": "^2.6.2",
+ "webcrypto-core": "^1.7.8"
+ },
+ "engines": {
+ "node": ">=10.12.0"
+ }
+ },
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "optional": true,
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@pnpm/config.env-replace": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz",
+ "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==",
+ "engines": {
+ "node": ">=12.22.0"
+ }
+ },
+ "node_modules/@pnpm/network.ca-file": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz",
+ "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==",
+ "dependencies": {
+ "graceful-fs": "4.2.10"
+ },
+ "engines": {
+ "node": ">=12.22.0"
+ }
+ },
+ "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": {
+ "version": "4.2.10",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
+ "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
+ },
+ "node_modules/@pnpm/npm-conf": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz",
+ "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==",
+ "dependencies": {
+ "@pnpm/config.env-replace": "^1.1.0",
+ "@pnpm/network.ca-file": "^1.0.1",
+ "config-chain": "^1.1.11"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@prisma/instrumentation": {
+ "version": "5.19.1",
+ "resolved": "https://registry.npmjs.org/@prisma/instrumentation/-/instrumentation-5.19.1.tgz",
+ "integrity": "sha512-VLnzMQq7CWroL5AeaW0Py2huiNKeoMfCH3SUxstdzPrlWQi6UQ9UrfcbUkNHlVFqOMacqy8X/8YtE0kuKDpD9w==",
+ "dependencies": {
+ "@opentelemetry/api": "^1.8",
+ "@opentelemetry/instrumentation": "^0.49 || ^0.50 || ^0.51 || ^0.52.0",
+ "@opentelemetry/sdk-trace-base": "^1.22"
+ }
+ },
+ "node_modules/@prisma/instrumentation/node_modules/@opentelemetry/api-logs": {
+ "version": "0.52.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.52.1.tgz",
+ "integrity": "sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==",
+ "dependencies": {
+ "@opentelemetry/api": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@prisma/instrumentation/node_modules/@opentelemetry/instrumentation": {
+ "version": "0.52.1",
+ "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.52.1.tgz",
+ "integrity": "sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==",
+ "dependencies": {
+ "@opentelemetry/api-logs": "0.52.1",
+ "@types/shimmer": "^1.0.2",
+ "import-in-the-middle": "^1.8.1",
+ "require-in-the-middle": "^7.1.1",
+ "semver": "^7.5.2",
+ "shimmer": "^1.2.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "peerDependencies": {
+ "@opentelemetry/api": "^1.3.0"
+ }
+ },
+ "node_modules/@prisma/instrumentation/node_modules/semver": {
+ "version": "7.6.3",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@radix-ui/number": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.1.tgz",
+ "integrity": "sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ }
+ },
+ "node_modules/@radix-ui/primitive": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz",
+ "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ }
+ },
+ "node_modules/@radix-ui/react-accordion": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-accordion/-/react-accordion-1.1.2.tgz",
+ "integrity": "sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-collapsible": "1.0.3",
+ "@radix-ui/react-collection": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-alert-dialog": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-alert-dialog/-/react-alert-dialog-1.0.5.tgz",
+ "integrity": "sha512-OrVIOcZL0tl6xibeuGt5/+UxoT2N27KCFOPjFyfXMnchxSHZ/OW7cCX2nGlIYJrbHK/fczPcFzAwvNBB6XBNMA==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-dialog": "1.0.5",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-slot": "1.0.2"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-arrow": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz",
+ "integrity": "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-avatar": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.0.4.tgz",
+ "integrity": "sha512-kVK2K7ZD3wwj3qhle0ElXhOjbezIgyl2hVvgwfIdexL3rN6zJmy5AqqIf+D31lxVppdzV8CjAfZ6PklkmInZLw==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-checkbox": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-checkbox/-/react-checkbox-1.0.4.tgz",
+ "integrity": "sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-use-previous": "1.0.1",
+ "@radix-ui/react-use-size": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-collapsible": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-collapsible/-/react-collapsible-1.0.3.tgz",
+ "integrity": "sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-collection": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.0.3.tgz",
+ "integrity": "sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-slot": "1.0.2"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz",
+ "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-context": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz",
+ "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-dialog": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.0.5.tgz",
+ "integrity": "sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-dismissable-layer": "1.0.5",
+ "@radix-ui/react-focus-guards": "1.0.1",
+ "@radix-ui/react-focus-scope": "1.0.4",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-portal": "1.0.4",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-slot": "1.0.2",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "aria-hidden": "^1.1.1",
+ "react-remove-scroll": "2.5.5"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/@peculiar/json-schema": {
- "version": "1.1.12",
- "resolved": "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz",
- "integrity": "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==",
- "dev": true,
+ "node_modules/@radix-ui/react-direction": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.1.tgz",
+ "integrity": "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==",
"dependencies": {
- "tslib": "^2.0.0"
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">=8.0.0"
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/@peculiar/webcrypto": {
- "version": "1.4.5",
- "resolved": "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.5.tgz",
- "integrity": "sha512-oDk93QCDGdxFRM8382Zdminzs44dg3M2+E5Np+JWkpqLDyJC9DviMh8F8mEJkYuUcUOGA5jHO5AJJ10MFWdbZw==",
- "dev": true,
+ "node_modules/@radix-ui/react-dismissable-layer": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz",
+ "integrity": "sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==",
"dependencies": {
- "@peculiar/asn1-schema": "^2.3.8",
- "@peculiar/json-schema": "^1.1.12",
- "pvtsutils": "^1.3.5",
- "tslib": "^2.6.2",
- "webcrypto-core": "^1.7.8"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-escape-keydown": "1.0.3"
},
- "engines": {
- "node": ">=10.12.0"
- }
- },
- "node_modules/@pkgjs/parseargs": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
- "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
- "optional": true,
- "engines": {
- "node": ">=14"
- }
- },
- "node_modules/@pnpm/config.env-replace": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz",
- "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==",
- "engines": {
- "node": ">=12.22.0"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/@pnpm/network.ca-file": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz",
- "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==",
+ "node_modules/@radix-ui/react-focus-guards": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.1.tgz",
+ "integrity": "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==",
"dependencies": {
- "graceful-fs": "4.2.10"
+ "@babel/runtime": "^7.13.10"
},
- "engines": {
- "node": ">=12.22.0"
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": {
- "version": "4.2.10",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
- "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
- },
- "node_modules/@pnpm/npm-conf": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz",
- "integrity": "sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==",
+ "node_modules/@radix-ui/react-focus-scope": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.4.tgz",
+ "integrity": "sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==",
"dependencies": {
- "@pnpm/config.env-replace": "^1.1.0",
- "@pnpm/network.ca-file": "^1.0.1",
- "config-chain": "^1.1.11"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1"
},
- "engines": {
- "node": ">=12"
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/@radix-ui/number": {
+ "node_modules/@radix-ui/react-id": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.1.tgz",
- "integrity": "sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz",
+ "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-layout-effect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
}
},
- "node_modules/@radix-ui/primitive": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz",
- "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==",
+ "node_modules/@radix-ui/react-label": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.0.2.tgz",
+ "integrity": "sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/@radix-ui/react-accordion": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-accordion/-/react-accordion-1.1.2.tgz",
- "integrity": "sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==",
+ "node_modules/@radix-ui/react-popover": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.0.7.tgz",
+ "integrity": "sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-collapsible": "1.0.3",
- "@radix-ui/react-collection": "1.0.3",
"@radix-ui/react-compose-refs": "1.0.1",
"@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-dismissable-layer": "1.0.5",
+ "@radix-ui/react-focus-guards": "1.0.1",
+ "@radix-ui/react-focus-scope": "1.0.4",
"@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-popper": "1.1.3",
+ "@radix-ui/react-portal": "1.0.4",
+ "@radix-ui/react-presence": "1.0.1",
"@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-controllable-state": "1.0.1"
+ "@radix-ui/react-slot": "1.0.2",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "aria-hidden": "^1.1.1",
+ "react-remove-scroll": "2.5.5"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-popper": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.3.tgz",
+ "integrity": "sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@floating-ui/react-dom": "^2.0.0",
+ "@radix-ui/react-arrow": "1.0.3",
+ "@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1",
+ "@radix-ui/react-use-rect": "1.0.1",
+ "@radix-ui/react-use-size": "1.0.1",
+ "@radix-ui/rect": "1.0.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-portal": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.4.tgz",
+ "integrity": "sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
},
"peerDependencies": {
"@types/react": "*",
@@ -4206,18 +5585,14 @@
}
}
},
- "node_modules/@radix-ui/react-alert-dialog": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-alert-dialog/-/react-alert-dialog-1.0.5.tgz",
- "integrity": "sha512-OrVIOcZL0tl6xibeuGt5/+UxoT2N27KCFOPjFyfXMnchxSHZ/OW7cCX2nGlIYJrbHK/fczPcFzAwvNBB6XBNMA==",
+ "node_modules/@radix-ui/react-presence": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.1.tgz",
+ "integrity": "sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==",
"dependencies": {
"@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
"@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-dialog": "1.0.5",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-slot": "1.0.2"
+ "@radix-ui/react-use-layout-effect": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
@@ -4234,13 +5609,13 @@
}
}
},
- "node_modules/@radix-ui/react-arrow": {
+ "node_modules/@radix-ui/react-primitive": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz",
- "integrity": "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz",
+ "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==",
"dependencies": {
"@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.3"
+ "@radix-ui/react-slot": "1.0.2"
},
"peerDependencies": {
"@types/react": "*",
@@ -4257,16 +5632,14 @@
}
}
},
- "node_modules/@radix-ui/react-avatar": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.0.4.tgz",
- "integrity": "sha512-kVK2K7ZD3wwj3qhle0ElXhOjbezIgyl2hVvgwfIdexL3rN6zJmy5AqqIf+D31lxVppdzV8CjAfZ6PklkmInZLw==",
+ "node_modules/@radix-ui/react-progress": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-progress/-/react-progress-1.0.3.tgz",
+ "integrity": "sha512-5G6Om/tYSxjSeEdrb1VfKkfZfn/1IlPWd731h2RfPuSbIfNUgfqAwbKfJCg/PP6nuUCTrYzalwHSpSinoWoCag==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1"
+ "@radix-ui/react-primitive": "1.0.3"
},
"peerDependencies": {
"@types/react": "*",
@@ -4283,17 +5656,19 @@
}
}
},
- "node_modules/@radix-ui/react-checkbox": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-checkbox/-/react-checkbox-1.0.4.tgz",
- "integrity": "sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==",
+ "node_modules/@radix-ui/react-radio-group": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-radio-group/-/react-radio-group-1.1.3.tgz",
+ "integrity": "sha512-x+yELayyefNeKeTx4fjK6j99Fs6c4qKm3aY38G3swQVTN6xMpsrbigC0uHs2L//g8q4qR7qOcww8430jJmi2ag==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/primitive": "1.0.1",
"@radix-ui/react-compose-refs": "1.0.1",
"@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
"@radix-ui/react-presence": "1.0.1",
"@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-roving-focus": "1.0.4",
"@radix-ui/react-use-controllable-state": "1.0.1",
"@radix-ui/react-use-previous": "1.0.1",
"@radix-ui/react-use-size": "1.0.1"
@@ -4313,20 +5688,21 @@
}
}
},
- "node_modules/@radix-ui/react-collapsible": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-collapsible/-/react-collapsible-1.0.3.tgz",
- "integrity": "sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==",
+ "node_modules/@radix-ui/react-roving-focus": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.0.4.tgz",
+ "integrity": "sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-collection": "1.0.3",
"@radix-ui/react-compose-refs": "1.0.1",
"@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
"@radix-ui/react-id": "1.0.1",
- "@radix-ui/react-presence": "1.0.1",
"@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-controllable-state": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1"
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
@@ -4343,16 +5719,21 @@
}
}
},
- "node_modules/@radix-ui/react-collection": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.0.3.tgz",
- "integrity": "sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==",
+ "node_modules/@radix-ui/react-scroll-area": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.5.tgz",
+ "integrity": "sha512-b6PAgH4GQf9QEn8zbT2XUHpW5z8BzqEc7Kl11TwDrvuTrxlkcjTD5qa/bxgKr+nmuXKu4L/W5UZ4mlP/VG/5Gw==",
"dependencies": {
"@babel/runtime": "^7.13.10",
+ "@radix-ui/number": "1.0.1",
+ "@radix-ui/primitive": "1.0.1",
"@radix-ui/react-compose-refs": "1.0.1",
"@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-presence": "1.0.1",
"@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-slot": "1.0.2"
+ "@radix-ui/react-use-callback-ref": "1.0.1",
+ "@radix-ui/react-use-layout-effect": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
@@ -4369,60 +5750,46 @@
}
}
},
- "node_modules/@radix-ui/react-compose-refs": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz",
- "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==",
+ "node_modules/@radix-ui/react-separator": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.0.3.tgz",
+ "integrity": "sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-primitive": "1.0.3"
},
"peerDependencies": {
"@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
- }
- }
- },
- "node_modules/@radix-ui/react-context": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz",
- "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==",
- "dependencies": {
- "@babel/runtime": "^7.13.10"
- },
- "peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
+ },
+ "@types/react-dom": {
"optional": true
}
}
},
- "node_modules/@radix-ui/react-dialog": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.0.5.tgz",
- "integrity": "sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==",
+ "node_modules/@radix-ui/react-slider": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.1.2.tgz",
+ "integrity": "sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw==",
"dependencies": {
"@babel/runtime": "^7.13.10",
+ "@radix-ui/number": "1.0.1",
"@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-collection": "1.0.3",
"@radix-ui/react-compose-refs": "1.0.1",
"@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-dismissable-layer": "1.0.5",
- "@radix-ui/react-focus-guards": "1.0.1",
- "@radix-ui/react-focus-scope": "1.0.4",
- "@radix-ui/react-id": "1.0.1",
- "@radix-ui/react-portal": "1.0.4",
- "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
"@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-use-controllable-state": "1.0.1",
- "aria-hidden": "^1.1.1",
- "react-remove-scroll": "2.5.5"
+ "@radix-ui/react-use-layout-effect": "1.0.1",
+ "@radix-ui/react-use-previous": "1.0.1",
+ "@radix-ui/react-use-size": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
@@ -4439,12 +5806,13 @@
}
}
},
- "node_modules/@radix-ui/react-direction": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.1.tgz",
- "integrity": "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==",
+ "node_modules/@radix-ui/react-slot": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz",
+ "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-compose-refs": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
@@ -4456,17 +5824,19 @@
}
}
},
- "node_modules/@radix-ui/react-dismissable-layer": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz",
- "integrity": "sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==",
+ "node_modules/@radix-ui/react-switch": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.0.3.tgz",
+ "integrity": "sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==",
"dependencies": {
"@babel/runtime": "^7.13.10",
"@radix-ui/primitive": "1.0.1",
"@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
"@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-escape-keydown": "1.0.3"
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-use-previous": "1.0.1",
+ "@radix-ui/react-use-size": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
@@ -4483,32 +5853,54 @@
}
}
},
- "node_modules/@radix-ui/react-focus-guards": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.1.tgz",
- "integrity": "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==",
+ "node_modules/@radix-ui/react-tabs": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.0.4.tgz",
+ "integrity": "sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-direction": "1.0.1",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-presence": "1.0.1",
+ "@radix-ui/react-primitive": "1.0.3",
+ "@radix-ui/react-roving-focus": "1.0.4",
+ "@radix-ui/react-use-controllable-state": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0",
+ "react-dom": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
}
}
},
- "node_modules/@radix-ui/react-focus-scope": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.4.tgz",
- "integrity": "sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==",
+ "node_modules/@radix-ui/react-tooltip": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.0.7.tgz",
+ "integrity": "sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==",
"dependencies": {
"@babel/runtime": "^7.13.10",
+ "@radix-ui/primitive": "1.0.1",
"@radix-ui/react-compose-refs": "1.0.1",
+ "@radix-ui/react-context": "1.0.1",
+ "@radix-ui/react-dismissable-layer": "1.0.5",
+ "@radix-ui/react-id": "1.0.1",
+ "@radix-ui/react-popper": "1.1.3",
+ "@radix-ui/react-portal": "1.0.4",
+ "@radix-ui/react-presence": "1.0.1",
"@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1"
+ "@radix-ui/react-slot": "1.0.2",
+ "@radix-ui/react-use-controllable-state": "1.0.1",
+ "@radix-ui/react-visually-hidden": "1.0.3"
},
"peerDependencies": {
"@types/react": "*",
@@ -4525,13 +5917,12 @@
}
}
},
- "node_modules/@radix-ui/react-id": {
+ "node_modules/@radix-ui/react-use-callback-ref": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz",
- "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz",
+ "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.1"
+ "@babel/runtime": "^7.13.10"
},
"peerDependencies": {
"@types/react": "*",
@@ -4543,175 +5934,118 @@
}
}
},
- "node_modules/@radix-ui/react-label": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.0.2.tgz",
- "integrity": "sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==",
+ "node_modules/@radix-ui/react-use-controllable-state": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz",
+ "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==",
"dependencies": {
"@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.3"
+ "@radix-ui/react-use-callback-ref": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
- },
- "@types/react-dom": {
- "optional": true
}
}
},
- "node_modules/@radix-ui/react-popover": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.0.7.tgz",
- "integrity": "sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-dismissable-layer": "1.0.5",
- "@radix-ui/react-focus-guards": "1.0.1",
- "@radix-ui/react-focus-scope": "1.0.4",
- "@radix-ui/react-id": "1.0.1",
- "@radix-ui/react-popper": "1.1.3",
- "@radix-ui/react-portal": "1.0.4",
- "@radix-ui/react-presence": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-slot": "1.0.2",
- "@radix-ui/react-use-controllable-state": "1.0.1",
- "aria-hidden": "^1.1.1",
- "react-remove-scroll": "2.5.5"
+ "node_modules/@radix-ui/react-use-escape-keydown": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz",
+ "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==",
+ "dependencies": {
+ "@babel/runtime": "^7.13.10",
+ "@radix-ui/react-use-callback-ref": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
- },
- "@types/react-dom": {
- "optional": true
}
}
},
- "node_modules/@radix-ui/react-popper": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.3.tgz",
- "integrity": "sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==",
+ "node_modules/@radix-ui/react-use-layout-effect": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz",
+ "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@floating-ui/react-dom": "^2.0.0",
- "@radix-ui/react-arrow": "1.0.3",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1",
- "@radix-ui/react-use-rect": "1.0.1",
- "@radix-ui/react-use-size": "1.0.1",
- "@radix-ui/rect": "1.0.1"
+ "@babel/runtime": "^7.13.10"
},
"peerDependencies": {
"@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
- },
- "@types/react-dom": {
- "optional": true
}
}
},
- "node_modules/@radix-ui/react-portal": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.4.tgz",
- "integrity": "sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==",
+ "node_modules/@radix-ui/react-use-previous": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz",
+ "integrity": "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.3"
+ "@babel/runtime": "^7.13.10"
},
"peerDependencies": {
"@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
- },
- "@types/react-dom": {
- "optional": true
}
}
},
- "node_modules/@radix-ui/react-presence": {
+ "node_modules/@radix-ui/react-use-rect": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.1.tgz",
- "integrity": "sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz",
+ "integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==",
"dependencies": {
"@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1"
+ "@radix-ui/rect": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
- },
- "@types/react-dom": {
- "optional": true
}
}
},
- "node_modules/@radix-ui/react-primitive": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz",
- "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==",
+ "node_modules/@radix-ui/react-use-size": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz",
+ "integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==",
"dependencies": {
"@babel/runtime": "^7.13.10",
- "@radix-ui/react-slot": "1.0.2"
+ "@radix-ui/react-use-layout-effect": "1.0.1"
},
"peerDependencies": {
"@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
+ "react": "^16.8 || ^17.0 || ^18.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
- },
- "@types/react-dom": {
- "optional": true
}
}
},
- "node_modules/@radix-ui/react-progress": {
+ "node_modules/@radix-ui/react-visually-hidden": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-progress/-/react-progress-1.0.3.tgz",
- "integrity": "sha512-5G6Om/tYSxjSeEdrb1VfKkfZfn/1IlPWd731h2RfPuSbIfNUgfqAwbKfJCg/PP6nuUCTrYzalwHSpSinoWoCag==",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz",
+ "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==",
"dependencies": {
"@babel/runtime": "^7.13.10",
- "@radix-ui/react-context": "1.0.1",
"@radix-ui/react-primitive": "1.0.3"
},
"peerDependencies": {
@@ -4729,430 +6063,531 @@
}
}
},
- "node_modules/@radix-ui/react-radio-group": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-radio-group/-/react-radio-group-1.1.3.tgz",
- "integrity": "sha512-x+yELayyefNeKeTx4fjK6j99Fs6c4qKm3aY38G3swQVTN6xMpsrbigC0uHs2L//g8q4qR7qOcww8430jJmi2ag==",
+ "node_modules/@radix-ui/rect": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.0.1.tgz",
+ "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-direction": "1.0.1",
- "@radix-ui/react-presence": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-roving-focus": "1.0.4",
- "@radix-ui/react-use-controllable-state": "1.0.1",
- "@radix-ui/react-use-previous": "1.0.1",
- "@radix-ui/react-use-size": "1.0.1"
+ "@babel/runtime": "^7.13.10"
+ }
+ },
+ "node_modules/@react-aria/breadcrumbs": {
+ "version": "3.5.11",
+ "resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.11.tgz",
+ "integrity": "sha512-bQz4g2tKvcWxeqPGj9O0RQf++Ka8f2o/pJMJB+QQ27DVQWhxpQpND//oFku2aFYkxHB/fyD9qVoiqpQR25bidw==",
+ "dependencies": {
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/link": "^3.6.5",
+ "@react-aria/utils": "^3.23.2",
+ "@react-types/breadcrumbs": "^3.7.3",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/button": {
+ "version": "3.9.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.9.3.tgz",
+ "integrity": "sha512-ZXo2VGTxfbaTEnfeIlm5ym4vYpGAy8sGrad8Scv+EyDAJWLMKokqctfaN6YSWbqUApC3FN63IvMqASflbmnYig==",
+ "dependencies": {
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/toggle": "^3.7.2",
+ "@react-types/button": "^3.9.2",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/calendar": {
+ "version": "3.5.6",
+ "resolved": "https://registry.npmjs.org/@react-aria/calendar/-/calendar-3.5.6.tgz",
+ "integrity": "sha512-PA0Ur5WcODMn7t2gCUvq61YktkB+WlSZjzDr5kcY3sdl53ZjiyqCa2hYgrb6R0J859LVJXAp+5Qaproz8g1oLA==",
+ "dependencies": {
+ "@internationalized/date": "^3.5.2",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/live-announcer": "^3.3.2",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/calendar": "^3.4.4",
+ "@react-types/button": "^3.9.2",
+ "@react-types/calendar": "^3.4.4",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/checkbox": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.14.1.tgz",
+ "integrity": "sha512-b4rtrg5SpRSa9jBOqzJMmprJ+jDi3KyVvUh+DsvISe5Ti7gVAhMBgnca1D0xBp22w2jhk/o4gyu1bYxGLum0GA==",
+ "dependencies": {
+ "@react-aria/form": "^3.0.3",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/label": "^3.7.6",
+ "@react-aria/toggle": "^3.10.2",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/checkbox": "^3.6.3",
+ "@react-stately/form": "^3.0.1",
+ "@react-stately/toggle": "^3.7.2",
+ "@react-types/checkbox": "^3.7.1",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/combobox": {
+ "version": "3.8.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.8.4.tgz",
+ "integrity": "sha512-HyTWIo2B/0xq0Of+sDEZCfJyf4BvCvDYIWG4UhjqL1kHIHIGQyyr+SldbVUjXVYnk8pP1eGB3ttiREujjjALPQ==",
+ "dependencies": {
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/listbox": "^3.11.5",
+ "@react-aria/live-announcer": "^3.3.2",
+ "@react-aria/menu": "^3.13.1",
+ "@react-aria/overlays": "^3.21.1",
+ "@react-aria/selection": "^3.17.5",
+ "@react-aria/textfield": "^3.14.3",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/collections": "^3.10.5",
+ "@react-stately/combobox": "^3.8.2",
+ "@react-stately/form": "^3.0.1",
+ "@react-types/button": "^3.9.2",
+ "@react-types/combobox": "^3.10.1",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/datepicker": {
+ "version": "3.9.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/datepicker/-/datepicker-3.9.3.tgz",
+ "integrity": "sha512-1AjCAizd88ACKjVNhFazX4HZZFwWi2rsSlGCTm66Nx6wm5N/Cpbm466dpYEFyQUsKSOG4CC65G1zfYoMPe48MQ==",
+ "dependencies": {
+ "@internationalized/date": "^3.5.2",
+ "@internationalized/number": "^3.5.1",
+ "@internationalized/string": "^3.2.1",
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/form": "^3.0.3",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/label": "^3.7.6",
+ "@react-aria/spinbutton": "^3.6.3",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/datepicker": "^3.9.2",
+ "@react-stately/form": "^3.0.1",
+ "@react-types/button": "^3.9.2",
+ "@react-types/calendar": "^3.4.4",
+ "@react-types/datepicker": "^3.7.2",
+ "@react-types/dialog": "^3.5.8",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/dialog": {
+ "version": "3.5.12",
+ "resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.5.12.tgz",
+ "integrity": "sha512-7UJR/h/Y364u6Ltpw0bT51B48FybTuIBacGpEJN5IxZlpxvQt0KQcBDiOWfAa/GQogw4B5hH6agaOO0nJcP49Q==",
+ "dependencies": {
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/overlays": "^3.21.1",
+ "@react-aria/utils": "^3.23.2",
+ "@react-types/dialog": "^3.5.8",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-roving-focus": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.0.4.tgz",
- "integrity": "sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==",
+ "node_modules/@react-aria/dnd": {
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/dnd/-/dnd-3.5.3.tgz",
+ "integrity": "sha512-0gi6sRnr97fSQnGy+CMt+99/+vVqr+qv2T9Ts8X9TAzxHNokz5QfSL88QSlTU36EnAVLxPY18iZQWCExSjKpEQ==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-collection": "1.0.3",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-direction": "1.0.1",
- "@radix-ui/react-id": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-controllable-state": "1.0.1"
+ "@internationalized/string": "^3.2.1",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/live-announcer": "^3.3.2",
+ "@react-aria/overlays": "^3.21.1",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/dnd": "^3.2.8",
+ "@react-types/button": "^3.9.2",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-scroll-area": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.0.5.tgz",
- "integrity": "sha512-b6PAgH4GQf9QEn8zbT2XUHpW5z8BzqEc7Kl11TwDrvuTrxlkcjTD5qa/bxgKr+nmuXKu4L/W5UZ4mlP/VG/5Gw==",
+ "node_modules/@react-aria/focus": {
+ "version": "3.16.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.16.2.tgz",
+ "integrity": "sha512-Rqo9ummmgotESfypzFjI3uh58yMpL+E+lJBbQuXkBM0u0cU2YYzu0uOrFrq3zcHk997udZvq1pGK/R+2xk9B7g==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/number": "1.0.1",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-direction": "1.0.1",
- "@radix-ui/react-presence": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-callback-ref": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1"
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/utils": "^3.23.2",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-separator": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.0.3.tgz",
- "integrity": "sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==",
+ "node_modules/@react-aria/form": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/form/-/form-3.0.3.tgz",
+ "integrity": "sha512-5Q2BHE4TTPDzGY2npCzpRRYshwWUb3SMUA/Cbz7QfEtBk+NYuVaq3KjvqLqgUUdyKtqLZ9Far0kIAexloOC4jw==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.3"
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/form": "^3.0.1",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-slider": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.1.2.tgz",
- "integrity": "sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw==",
+ "node_modules/@react-aria/grid": {
+ "version": "3.8.8",
+ "resolved": "https://registry.npmjs.org/@react-aria/grid/-/grid-3.8.8.tgz",
+ "integrity": "sha512-7Bzbya4tO0oIgqexwRb8D6ZdC0GASYq9f/pnkrqocgvG9e1SCld4zOioKbYQDvAK/NnbCgXmmdqFAcLM/iazaA==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/number": "1.0.1",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-collection": "1.0.3",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-direction": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-controllable-state": "1.0.1",
- "@radix-ui/react-use-layout-effect": "1.0.1",
- "@radix-ui/react-use-previous": "1.0.1",
- "@radix-ui/react-use-size": "1.0.1"
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/live-announcer": "^3.3.2",
+ "@react-aria/selection": "^3.17.5",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/collections": "^3.10.5",
+ "@react-stately/grid": "^3.8.5",
+ "@react-stately/selection": "^3.14.3",
+ "@react-stately/virtualizer": "^3.6.8",
+ "@react-types/checkbox": "^3.7.1",
+ "@react-types/grid": "^3.2.4",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-slot": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz",
- "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==",
+ "node_modules/@react-aria/gridlist": {
+ "version": "3.7.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/gridlist/-/gridlist-3.7.5.tgz",
+ "integrity": "sha512-RmHEJ++vngHYEWbUCtLLmGh7H3vNd2Y9S0q/9SgHFPbqPZycT5mxDZ2arqpOXeHRVRvPBaW9ZlMxI2bPOePrYw==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-compose-refs": "1.0.1"
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/grid": "^3.8.8",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/selection": "^3.17.5",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/list": "^3.10.3",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-switch": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.0.3.tgz",
- "integrity": "sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==",
+ "node_modules/@react-aria/i18n": {
+ "version": "3.10.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.10.2.tgz",
+ "integrity": "sha512-Z1ormoIvMOI4mEdcFLYsoJy9w/EzBdBmgfLP+S/Ah+1xwQOXpgwZxiKOhYHpWa0lf6hkKJL34N9MHJvCJ5Crvw==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-use-controllable-state": "1.0.1",
- "@radix-ui/react-use-previous": "1.0.1",
- "@radix-ui/react-use-size": "1.0.1"
+ "@internationalized/date": "^3.5.2",
+ "@internationalized/message": "^3.1.2",
+ "@internationalized/number": "^3.5.1",
+ "@internationalized/string": "^3.2.1",
+ "@react-aria/ssr": "^3.9.2",
+ "@react-aria/utils": "^3.23.2",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-tabs": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.0.4.tgz",
- "integrity": "sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==",
- "dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-direction": "1.0.1",
- "@radix-ui/react-id": "1.0.1",
- "@radix-ui/react-presence": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-roving-focus": "1.0.4",
- "@radix-ui/react-use-controllable-state": "1.0.1"
+ "node_modules/@react-aria/interactions": {
+ "version": "3.21.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.1.tgz",
+ "integrity": "sha512-AlHf5SOzsShkHfV8GLLk3v9lEmYqYHURKcXWue0JdYbmquMRkUsf/+Tjl1+zHVAQ8lKqRnPYbTmc4AcZbqxltw==",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.2",
+ "@react-aria/utils": "^3.23.2",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-tooltip": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.0.7.tgz",
- "integrity": "sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==",
+ "node_modules/@react-aria/label": {
+ "version": "3.7.6",
+ "resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.7.6.tgz",
+ "integrity": "sha512-ap9iFS+6RUOqeW/F2JoNpERqMn1PvVIo3tTMrJ1TY1tIwyJOxdCBRgx9yjnPBnr+Ywguep+fkPNNi/m74+tXVQ==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/primitive": "1.0.1",
- "@radix-ui/react-compose-refs": "1.0.1",
- "@radix-ui/react-context": "1.0.1",
- "@radix-ui/react-dismissable-layer": "1.0.5",
- "@radix-ui/react-id": "1.0.1",
- "@radix-ui/react-popper": "1.1.3",
- "@radix-ui/react-portal": "1.0.4",
- "@radix-ui/react-presence": "1.0.1",
- "@radix-ui/react-primitive": "1.0.3",
- "@radix-ui/react-slot": "1.0.2",
- "@radix-ui/react-use-controllable-state": "1.0.1",
- "@radix-ui/react-visually-hidden": "1.0.3"
+ "@react-aria/utils": "^3.23.2",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-use-callback-ref": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz",
- "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==",
+ "node_modules/@react-aria/link": {
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.6.5.tgz",
+ "integrity": "sha512-kg8CxKqkciQFzODvLAfxEs8gbqNXFZCW/ISOE2LHYKbh9pA144LVo71qO3SPeYVVzIjmZeW4vEMdZwqkNozecw==",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/utils": "^3.23.2",
+ "@react-types/link": "^3.5.3",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-use-controllable-state": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz",
- "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==",
+ "node_modules/@react-aria/listbox": {
+ "version": "3.11.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.11.5.tgz",
+ "integrity": "sha512-y3a3zQYjT+JKgugCMMKS7K9sRoCoP1Z6Fiiyfd77OHXWzh9RlnvWGsseljynmbxLzSuPwFtCYkU1Jz4QwsPUIg==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.1"
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/label": "^3.7.6",
+ "@react-aria/selection": "^3.17.5",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/collections": "^3.10.5",
+ "@react-stately/list": "^3.10.3",
+ "@react-types/listbox": "^3.4.7",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-use-escape-keydown": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz",
- "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==",
+ "node_modules/@react-aria/live-announcer": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/live-announcer/-/live-announcer-3.3.2.tgz",
+ "integrity": "sha512-aOyPcsfyY9tLCBhuUaYCruwcd1IrYLc47Ou+J7wMzjeN9v4lsaEfiN12WFl8pDqOwfy6/7It2wmlm5hOuZY8wQ==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-callback-ref": "1.0.1"
+ "@swc/helpers": "^0.5.0"
+ }
+ },
+ "node_modules/@react-aria/menu": {
+ "version": "3.13.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.13.1.tgz",
+ "integrity": "sha512-jF80YIcvD16Fgwm5pj7ViUE3Dj7z5iewQixLaFVdvpgfyE58SD/ZVU9/JkK5g/03DYM0sjpUKZGkdFxxw8eKnw==",
+ "dependencies": {
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/overlays": "^3.21.1",
+ "@react-aria/selection": "^3.17.5",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/collections": "^3.10.5",
+ "@react-stately/menu": "^3.6.1",
+ "@react-stately/tree": "^3.7.6",
+ "@react-types/button": "^3.9.2",
+ "@react-types/menu": "^3.9.7",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-use-layout-effect": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz",
- "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==",
+ "node_modules/@react-aria/meter": {
+ "version": "3.4.11",
+ "resolved": "https://registry.npmjs.org/@react-aria/meter/-/meter-3.4.11.tgz",
+ "integrity": "sha512-P1G3Jdh0f/uieUDqvc3Ee4wzqBJa7H077BVSC3KPRqEp6YY7JimZGWjOwbFlO2PXhryXm/dI8EzUmh+4ZXjq/g==",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@react-aria/progress": "^3.4.11",
+ "@react-types/meter": "^3.3.7",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-use-previous": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz",
- "integrity": "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==",
+ "node_modules/@react-aria/numberfield": {
+ "version": "3.11.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/numberfield/-/numberfield-3.11.1.tgz",
+ "integrity": "sha512-JQ1Z+Ho5H+jeav7jt9A4vBsIQR/Dd2CFbObrULjGkqSrnWjARFZBv3gZwmfGCtplEPeAv9buYKHAqebPtJNUww==",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/spinbutton": "^3.6.3",
+ "@react-aria/textfield": "^3.14.3",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/form": "^3.0.1",
+ "@react-stately/numberfield": "^3.9.1",
+ "@react-types/button": "^3.9.2",
+ "@react-types/numberfield": "^3.8.1",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/overlays": {
+ "version": "3.21.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.21.1.tgz",
+ "integrity": "sha512-djEBDF+TbIIOHWWNpdm19+z8xtY8U+T+wKVQg/UZ6oWnclSqSWeGl70vu73Cg4HVBJ4hKf1SRx4Z/RN6VvH4Yw==",
+ "dependencies": {
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/ssr": "^3.9.2",
+ "@react-aria/utils": "^3.23.2",
+ "@react-aria/visually-hidden": "^3.8.10",
+ "@react-stately/overlays": "^3.6.5",
+ "@react-types/button": "^3.9.2",
+ "@react-types/overlays": "^3.8.5",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-use-rect": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz",
- "integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==",
+ "node_modules/@react-aria/progress": {
+ "version": "3.4.11",
+ "resolved": "https://registry.npmjs.org/@react-aria/progress/-/progress-3.4.11.tgz",
+ "integrity": "sha512-RePHbS15/KYFiApYLdwazwvWKsB9q0Kn5DGCSb0hqCC+k2Eui8iVVOsegswiP+xqkk/TiUCIkBEw22W3Az4kTg==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/rect": "1.0.1"
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/label": "^3.7.6",
+ "@react-aria/utils": "^3.23.2",
+ "@react-types/progress": "^3.5.2",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/radio": {
+ "version": "3.10.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/radio/-/radio-3.10.2.tgz",
+ "integrity": "sha512-CTUTR+qt3BLjmyQvKHZuVm+1kyvT72ZptOty++sowKXgJApTLdjq8so1IpaLAr8JIfzqD5I4tovsYwIQOX8log==",
+ "dependencies": {
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/form": "^3.0.3",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/label": "^3.7.6",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/radio": "^3.10.2",
+ "@react-types/radio": "^3.7.1",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-use-size": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz",
- "integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==",
+ "node_modules/@react-aria/searchfield": {
+ "version": "3.7.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/searchfield/-/searchfield-3.7.3.tgz",
+ "integrity": "sha512-mnYI969R7tU3yMRIGmY1+peq7tmEW0W3MB/J2ImK36Obz/91tTtspHHEeFtPlQDLIyvVPB0Ucam4LIxCKPJm/Q==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-use-layout-effect": "1.0.1"
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/textfield": "^3.14.3",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/searchfield": "^3.5.1",
+ "@react-types/button": "^3.9.2",
+ "@react-types/searchfield": "^3.5.3",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "react": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/react-visually-hidden": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz",
- "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==",
+ "node_modules/@react-aria/select": {
+ "version": "3.14.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/select/-/select-3.14.3.tgz",
+ "integrity": "sha512-9KCxI41FI+jTxEfUzRsMdJsZvjkCuuhL4UHig8MZXtXs0nsi7Ir3ezUDQ9m5MSG+ooBYM/CA9DyLDvo5Ioef+g==",
"dependencies": {
- "@babel/runtime": "^7.13.10",
- "@radix-ui/react-primitive": "1.0.3"
+ "@react-aria/form": "^3.0.3",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/label": "^3.7.6",
+ "@react-aria/listbox": "^3.11.5",
+ "@react-aria/menu": "^3.13.1",
+ "@react-aria/selection": "^3.17.5",
+ "@react-aria/utils": "^3.23.2",
+ "@react-aria/visually-hidden": "^3.8.10",
+ "@react-stately/select": "^3.6.2",
+ "@react-types/button": "^3.9.2",
+ "@react-types/select": "^3.9.2",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "@types/react": "*",
- "@types/react-dom": "*",
- "react": "^16.8 || ^17.0 || ^18.0",
- "react-dom": "^16.8 || ^17.0 || ^18.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- },
- "@types/react-dom": {
- "optional": true
- }
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@radix-ui/rect": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.0.1.tgz",
- "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==",
+ "node_modules/@react-aria/selection": {
+ "version": "3.17.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.17.5.tgz",
+ "integrity": "sha512-gO5jBUkc7WdkiFMlWt3x9pTSuj3Yeegsxfo44qU5NPlKrnGtPRZDWrlACNgkDHu645RNNPhlyoX0C+G8mUg1xA==",
"dependencies": {
- "@babel/runtime": "^7.13.10"
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/selection": "^3.14.3",
+ "@react-types/shared": "^3.22.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/breadcrumbs": {
- "version": "3.5.11",
- "resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.11.tgz",
- "integrity": "sha512-bQz4g2tKvcWxeqPGj9O0RQf++Ka8f2o/pJMJB+QQ27DVQWhxpQpND//oFku2aFYkxHB/fyD9qVoiqpQR25bidw==",
+ "node_modules/@react-aria/separator": {
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/@react-aria/separator/-/separator-3.3.11.tgz",
+ "integrity": "sha512-UTla+3P2pELpP73WSfbwZgP1y1wODFBQbEOHnUxxO8ocyaUyQLJdvc07bBLLpPoyutlggRG0v9ACo0Rui7AjOg==",
"dependencies": {
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/link": "^3.6.5",
"@react-aria/utils": "^3.23.2",
- "@react-types/breadcrumbs": "^3.7.3",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5160,36 +6595,34 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/button": {
- "version": "3.9.3",
- "resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.9.3.tgz",
- "integrity": "sha512-ZXo2VGTxfbaTEnfeIlm5ym4vYpGAy8sGrad8Scv+EyDAJWLMKokqctfaN6YSWbqUApC3FN63IvMqASflbmnYig==",
+ "node_modules/@react-aria/slider": {
+ "version": "3.7.6",
+ "resolved": "https://registry.npmjs.org/@react-aria/slider/-/slider-3.7.6.tgz",
+ "integrity": "sha512-ZeZhyHzhk9gxGuThPKgX2K3RKsxPxsFig1iYoJvqP8485NtHYQIPht2YcpEKA9siLxGF0DR9VCfouVhSoW0AEA==",
"dependencies": {
"@react-aria/focus": "^3.16.2",
+ "@react-aria/i18n": "^3.10.2",
"@react-aria/interactions": "^3.21.1",
+ "@react-aria/label": "^3.7.6",
"@react-aria/utils": "^3.23.2",
- "@react-stately/toggle": "^3.7.2",
- "@react-types/button": "^3.9.2",
+ "@react-stately/slider": "^3.5.2",
"@react-types/shared": "^3.22.1",
+ "@react-types/slider": "^3.7.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/calendar": {
- "version": "3.5.6",
- "resolved": "https://registry.npmjs.org/@react-aria/calendar/-/calendar-3.5.6.tgz",
- "integrity": "sha512-PA0Ur5WcODMn7t2gCUvq61YktkB+WlSZjzDr5kcY3sdl53ZjiyqCa2hYgrb6R0J859LVJXAp+5Qaproz8g1oLA==",
+ "node_modules/@react-aria/spinbutton": {
+ "version": "3.6.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/spinbutton/-/spinbutton-3.6.3.tgz",
+ "integrity": "sha512-IlfhRu/pc9zOt2C5zSEB7NmmzddvWisGx2iGzw8BwIKMD+cN3uy+Qwp+sG6Z/JzFEBN0F6Mxm3l5lhbiqjpICQ==",
"dependencies": {
- "@internationalized/date": "^3.5.2",
"@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
"@react-aria/live-announcer": "^3.3.2",
"@react-aria/utils": "^3.23.2",
- "@react-stately/calendar": "^3.4.4",
"@react-types/button": "^3.9.2",
- "@react-types/calendar": "^3.4.4",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5198,46 +6631,54 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/checkbox": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.14.1.tgz",
- "integrity": "sha512-b4rtrg5SpRSa9jBOqzJMmprJ+jDi3KyVvUh+DsvISe5Ti7gVAhMBgnca1D0xBp22w2jhk/o4gyu1bYxGLum0GA==",
+ "node_modules/@react-aria/ssr": {
+ "version": "3.9.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.2.tgz",
+ "integrity": "sha512-0gKkgDYdnq1w+ey8KzG9l+H5Z821qh9vVjztk55rUg71vTk/Eaebeir+WtzcLLwTjw3m/asIjx8Y59y1lJZhBw==",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "engines": {
+ "node": ">= 12"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/switch": {
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/switch/-/switch-3.6.2.tgz",
+ "integrity": "sha512-X5m/omyhXK+V/vhJFsHuRs2zmt9Asa/RuzlldbXnWohLdeuHMPgQnV8C9hg3f+sRi3sh9UUZ64H61pCtRoZNwg==",
"dependencies": {
- "@react-aria/form": "^3.0.3",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/label": "^3.7.6",
"@react-aria/toggle": "^3.10.2",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/checkbox": "^3.6.3",
- "@react-stately/form": "^3.0.1",
"@react-stately/toggle": "^3.7.2",
- "@react-types/checkbox": "^3.7.1",
- "@react-types/shared": "^3.22.1",
+ "@react-types/switch": "^3.5.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/combobox": {
- "version": "3.8.4",
- "resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.8.4.tgz",
- "integrity": "sha512-HyTWIo2B/0xq0Of+sDEZCfJyf4BvCvDYIWG4UhjqL1kHIHIGQyyr+SldbVUjXVYnk8pP1eGB3ttiREujjjALPQ==",
+ "node_modules/@react-aria/table": {
+ "version": "3.13.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/table/-/table-3.13.5.tgz",
+ "integrity": "sha512-P2nHEDk2CCoEbMFKNCyBC9qvmv7F/IXARDt/7z/J4mKFgU2iNSK+/zw6yrb38q33Zlk8hDaqSYNxHlMrh+/1MQ==",
"dependencies": {
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/grid": "^3.8.8",
"@react-aria/i18n": "^3.10.2",
- "@react-aria/listbox": "^3.11.5",
+ "@react-aria/interactions": "^3.21.1",
"@react-aria/live-announcer": "^3.3.2",
- "@react-aria/menu": "^3.13.1",
- "@react-aria/overlays": "^3.21.1",
- "@react-aria/selection": "^3.17.5",
- "@react-aria/textfield": "^3.14.3",
"@react-aria/utils": "^3.23.2",
+ "@react-aria/visually-hidden": "^3.8.10",
"@react-stately/collections": "^3.10.5",
- "@react-stately/combobox": "^3.8.2",
- "@react-stately/form": "^3.0.1",
- "@react-types/button": "^3.9.2",
- "@react-types/combobox": "^3.10.1",
+ "@react-stately/flags": "^3.0.1",
+ "@react-stately/table": "^3.11.6",
+ "@react-stately/virtualizer": "^3.6.8",
+ "@react-types/checkbox": "^3.7.1",
+ "@react-types/grid": "^3.2.4",
"@react-types/shared": "^3.22.1",
+ "@react-types/table": "^3.9.3",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -5245,27 +6686,38 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/datepicker": {
- "version": "3.9.3",
- "resolved": "https://registry.npmjs.org/@react-aria/datepicker/-/datepicker-3.9.3.tgz",
- "integrity": "sha512-1AjCAizd88ACKjVNhFazX4HZZFwWi2rsSlGCTm66Nx6wm5N/Cpbm466dpYEFyQUsKSOG4CC65G1zfYoMPe48MQ==",
+ "node_modules/@react-aria/tabs": {
+ "version": "3.8.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/tabs/-/tabs-3.8.5.tgz",
+ "integrity": "sha512-Jvt33/W+66n5oCxVwHAYarJ3Fit61vULiPcG7uTez0Mf11cq/C72wOrj+ZuNz6PTLTi2veBNQ7MauY72SnOjRg==",
"dependencies": {
- "@internationalized/date": "^3.5.2",
- "@internationalized/number": "^3.5.1",
- "@internationalized/string": "^3.2.1",
"@react-aria/focus": "^3.16.2",
- "@react-aria/form": "^3.0.3",
+ "@react-aria/i18n": "^3.10.2",
+ "@react-aria/selection": "^3.17.5",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/tabs": "^3.6.4",
+ "@react-types/shared": "^3.22.1",
+ "@react-types/tabs": "^3.3.5",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/tag": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/tag/-/tag-3.3.3.tgz",
+ "integrity": "sha512-tlJD9qj1XcsPIZD7DVJ6tWv8t7Z87/8qkbRDx7ugNqeHso9z0WqH9ZkSt17OFUWE2IQIk3V8D3iBSOtmhXcZGQ==",
+ "dependencies": {
+ "@react-aria/gridlist": "^3.7.5",
"@react-aria/i18n": "^3.10.2",
"@react-aria/interactions": "^3.21.1",
"@react-aria/label": "^3.7.6",
- "@react-aria/spinbutton": "^3.6.3",
+ "@react-aria/selection": "^3.17.5",
"@react-aria/utils": "^3.23.2",
- "@react-stately/datepicker": "^3.9.2",
- "@react-stately/form": "^3.0.1",
+ "@react-stately/list": "^3.10.3",
"@react-types/button": "^3.9.2",
- "@react-types/calendar": "^3.4.4",
- "@react-types/datepicker": "^3.7.2",
- "@react-types/dialog": "^3.5.8",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5274,51 +6726,65 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/dialog": {
- "version": "3.5.12",
- "resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.5.12.tgz",
- "integrity": "sha512-7UJR/h/Y364u6Ltpw0bT51B48FybTuIBacGpEJN5IxZlpxvQt0KQcBDiOWfAa/GQogw4B5hH6agaOO0nJcP49Q==",
+ "node_modules/@react-aria/textfield": {
+ "version": "3.14.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/textfield/-/textfield-3.14.3.tgz",
+ "integrity": "sha512-wPSjj/mTABspYQdahg+l5YMtEQ3m5iPCTtb5g6nR1U1rzJkvS4i5Pug6PUXeLeMz2H3ToflPWGlNOqBioAFaOQ==",
"dependencies": {
"@react-aria/focus": "^3.16.2",
- "@react-aria/overlays": "^3.21.1",
+ "@react-aria/form": "^3.0.3",
+ "@react-aria/label": "^3.7.6",
"@react-aria/utils": "^3.23.2",
- "@react-types/dialog": "^3.5.8",
+ "@react-stately/form": "^3.0.1",
+ "@react-stately/utils": "^3.9.1",
"@react-types/shared": "^3.22.1",
+ "@react-types/textfield": "^3.9.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/dnd": {
- "version": "3.5.3",
- "resolved": "https://registry.npmjs.org/@react-aria/dnd/-/dnd-3.5.3.tgz",
- "integrity": "sha512-0gi6sRnr97fSQnGy+CMt+99/+vVqr+qv2T9Ts8X9TAzxHNokz5QfSL88QSlTU36EnAVLxPY18iZQWCExSjKpEQ==",
+ "node_modules/@react-aria/toggle": {
+ "version": "3.10.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/toggle/-/toggle-3.10.2.tgz",
+ "integrity": "sha512-DgitscHWgI6IFgnvp2HcMpLGX/cAn+XX9kF5RJQbRQ9NqUgruU5cEEGSOLMrEJ6zXDa2xmOiQ+kINcyNhA+JLg==",
+ "dependencies": {
+ "@react-aria/focus": "^3.16.2",
+ "@react-aria/interactions": "^3.21.1",
+ "@react-aria/utils": "^3.23.2",
+ "@react-stately/toggle": "^3.7.2",
+ "@react-types/checkbox": "^3.7.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-aria/tooltip": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/tooltip/-/tooltip-3.7.2.tgz",
+ "integrity": "sha512-6jXOSGPao3gPgUQWLbH2r/jxGMqIaIKrJgfwu9TQrh+UkwwiTYW20EpEDCYY2nRFlcoi7EYAiPDSEbHCwXS7Lg==",
"dependencies": {
- "@internationalized/string": "^3.2.1",
- "@react-aria/i18n": "^3.10.2",
+ "@react-aria/focus": "^3.16.2",
"@react-aria/interactions": "^3.21.1",
- "@react-aria/live-announcer": "^3.3.2",
- "@react-aria/overlays": "^3.21.1",
"@react-aria/utils": "^3.23.2",
- "@react-stately/dnd": "^3.2.8",
- "@react-types/button": "^3.9.2",
+ "@react-stately/tooltip": "^3.4.7",
"@react-types/shared": "^3.22.1",
+ "@react-types/tooltip": "^3.4.7",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/focus": {
- "version": "3.16.2",
- "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.16.2.tgz",
- "integrity": "sha512-Rqo9ummmgotESfypzFjI3uh58yMpL+E+lJBbQuXkBM0u0cU2YYzu0uOrFrq3zcHk997udZvq1pGK/R+2xk9B7g==",
+ "node_modules/@react-aria/utils": {
+ "version": "3.23.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.23.2.tgz",
+ "integrity": "sha512-yznR9jJ0GG+YJvTMZxijQwVp+ahP66DY0apZf7X+dllyN+ByEDW+yaL1ewYPIpugxVzH5P8jhnBXsIyHKN411g==",
"dependencies": {
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/utils": "^3.23.2",
+ "@react-aria/ssr": "^3.9.2",
+ "@react-stately/utils": "^3.9.1",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0",
"clsx": "^2.0.0"
@@ -5327,14 +6793,13 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/form": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@react-aria/form/-/form-3.0.3.tgz",
- "integrity": "sha512-5Q2BHE4TTPDzGY2npCzpRRYshwWUb3SMUA/Cbz7QfEtBk+NYuVaq3KjvqLqgUUdyKtqLZ9Far0kIAexloOC4jw==",
+ "node_modules/@react-aria/visually-hidden": {
+ "version": "3.8.10",
+ "resolved": "https://registry.npmjs.org/@react-aria/visually-hidden/-/visually-hidden-3.8.10.tgz",
+ "integrity": "sha512-np8c4wxdbE7ZrMv/bnjwEfpX0/nkWy9sELEb0sK8n4+HJ+WycoXXrVxBUb9tXgL/GCx5ReeDQChjQWwajm/z3A==",
"dependencies": {
"@react-aria/interactions": "^3.21.1",
"@react-aria/utils": "^3.23.2",
- "@react-stately/form": "^3.0.1",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5342,62 +6807,51 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/grid": {
- "version": "3.8.8",
- "resolved": "https://registry.npmjs.org/@react-aria/grid/-/grid-3.8.8.tgz",
- "integrity": "sha512-7Bzbya4tO0oIgqexwRb8D6ZdC0GASYq9f/pnkrqocgvG9e1SCld4zOioKbYQDvAK/NnbCgXmmdqFAcLM/iazaA==",
+ "node_modules/@react-leaflet/core": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz",
+ "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==",
+ "peerDependencies": {
+ "leaflet": "^1.9.0",
+ "react": "^18.0.0",
+ "react-dom": "^18.0.0"
+ }
+ },
+ "node_modules/@react-stately/calendar": {
+ "version": "3.4.4",
+ "resolved": "https://registry.npmjs.org/@react-stately/calendar/-/calendar-3.4.4.tgz",
+ "integrity": "sha512-f9ZOd096gGGD+3LmU1gkmfqytGyQtrgi+Qjn+70GbM2Jy65pwOR4I9YrobbmeAFov5Tff13mQEa0yqWvbcDLZQ==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/live-announcer": "^3.3.2",
- "@react-aria/selection": "^3.17.5",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/collections": "^3.10.5",
- "@react-stately/grid": "^3.8.5",
- "@react-stately/selection": "^3.14.3",
- "@react-stately/virtualizer": "^3.6.8",
- "@react-types/checkbox": "^3.7.1",
- "@react-types/grid": "^3.2.4",
+ "@internationalized/date": "^3.5.2",
+ "@react-stately/utils": "^3.9.1",
+ "@react-types/calendar": "^3.4.4",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/gridlist": {
- "version": "3.7.5",
- "resolved": "https://registry.npmjs.org/@react-aria/gridlist/-/gridlist-3.7.5.tgz",
- "integrity": "sha512-RmHEJ++vngHYEWbUCtLLmGh7H3vNd2Y9S0q/9SgHFPbqPZycT5mxDZ2arqpOXeHRVRvPBaW9ZlMxI2bPOePrYw==",
+ "node_modules/@react-stately/checkbox": {
+ "version": "3.6.3",
+ "resolved": "https://registry.npmjs.org/@react-stately/checkbox/-/checkbox-3.6.3.tgz",
+ "integrity": "sha512-hWp0GXVbMI4sS2NbBjWgOnHNrRqSV4jeftP8zc5JsIYRmrWBUZitxluB34QuVPzrBO29bGsF0GTArSiQZt6BWw==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/grid": "^3.8.8",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/selection": "^3.17.5",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/list": "^3.10.3",
+ "@react-stately/form": "^3.0.1",
+ "@react-stately/utils": "^3.9.1",
+ "@react-types/checkbox": "^3.7.1",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/i18n": {
- "version": "3.10.2",
- "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.10.2.tgz",
- "integrity": "sha512-Z1ormoIvMOI4mEdcFLYsoJy9w/EzBdBmgfLP+S/Ah+1xwQOXpgwZxiKOhYHpWa0lf6hkKJL34N9MHJvCJ5Crvw==",
+ "node_modules/@react-stately/collections": {
+ "version": "3.10.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.10.5.tgz",
+ "integrity": "sha512-k8Q29Nnvb7iAia1QvTanZsrWP2aqVNBy/1SlE6kLL6vDqtKZC+Esd1SDLHRmIcYIp5aTdfwIGd0NuiRQA7a81Q==",
"dependencies": {
- "@internationalized/date": "^3.5.2",
- "@internationalized/message": "^3.1.2",
- "@internationalized/number": "^3.5.1",
- "@internationalized/string": "^3.2.1",
- "@react-aria/ssr": "^3.9.2",
- "@react-aria/utils": "^3.23.2",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5405,13 +6859,18 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/interactions": {
- "version": "3.21.1",
- "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.1.tgz",
- "integrity": "sha512-AlHf5SOzsShkHfV8GLLk3v9lEmYqYHURKcXWue0JdYbmquMRkUsf/+Tjl1+zHVAQ8lKqRnPYbTmc4AcZbqxltw==",
+ "node_modules/@react-stately/combobox": {
+ "version": "3.8.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/combobox/-/combobox-3.8.2.tgz",
+ "integrity": "sha512-f+IHuFW848VoMbvTfSakn2WIh2urDxO355LrKxnisXPCkpQHpq3lvT2mJtKJwkPxjAy7xPjpV8ejgga2R6p53Q==",
"dependencies": {
- "@react-aria/ssr": "^3.9.2",
- "@react-aria/utils": "^3.23.2",
+ "@react-stately/collections": "^3.10.5",
+ "@react-stately/form": "^3.0.1",
+ "@react-stately/list": "^3.10.3",
+ "@react-stately/overlays": "^3.6.5",
+ "@react-stately/select": "^3.6.2",
+ "@react-stately/utils": "^3.9.1",
+ "@react-types/combobox": "^3.10.1",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5419,12 +6878,11 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/label": {
- "version": "3.7.6",
- "resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.7.6.tgz",
- "integrity": "sha512-ap9iFS+6RUOqeW/F2JoNpERqMn1PvVIo3tTMrJ1TY1tIwyJOxdCBRgx9yjnPBnr+Ywguep+fkPNNi/m74+tXVQ==",
+ "node_modules/@react-stately/data": {
+ "version": "3.11.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/data/-/data-3.11.2.tgz",
+ "integrity": "sha512-yhK2upk2WbJeiLBRWHrh/4G2CvmmozCzoivLaRAPYu53m1J3MyzVGCLJgnZMbMZvAbNcYWZK6IzO6VqZ2y1fOw==",
"dependencies": {
- "@react-aria/utils": "^3.23.2",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5432,15 +6890,17 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/link": {
- "version": "3.6.5",
- "resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.6.5.tgz",
- "integrity": "sha512-kg8CxKqkciQFzODvLAfxEs8gbqNXFZCW/ISOE2LHYKbh9pA144LVo71qO3SPeYVVzIjmZeW4vEMdZwqkNozecw==",
+ "node_modules/@react-stately/datepicker": {
+ "version": "3.9.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/datepicker/-/datepicker-3.9.2.tgz",
+ "integrity": "sha512-Z6FrK6Af7R5BizqHhJFCj3Hn32mg5iLSDdEgFQAuO043guOXUKFUAnbxfbQUjL6PGE6QwWMfQD7PPGebHn9Ifw==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/utils": "^3.23.2",
- "@react-types/link": "^3.5.3",
+ "@internationalized/date": "^3.5.2",
+ "@internationalized/string": "^3.2.1",
+ "@react-stately/form": "^3.0.1",
+ "@react-stately/overlays": "^3.6.5",
+ "@react-stately/utils": "^3.9.1",
+ "@react-types/datepicker": "^3.7.2",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5448,65 +6908,56 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/listbox": {
- "version": "3.11.5",
- "resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.11.5.tgz",
- "integrity": "sha512-y3a3zQYjT+JKgugCMMKS7K9sRoCoP1Z6Fiiyfd77OHXWzh9RlnvWGsseljynmbxLzSuPwFtCYkU1Jz4QwsPUIg==",
+ "node_modules/@react-stately/dnd": {
+ "version": "3.2.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/dnd/-/dnd-3.2.8.tgz",
+ "integrity": "sha512-oSo+2Bzum3Q1/d+3FuaDmpVHqqBB004tycuQDDFtad3N1BKm+fNfmslRK1ioLkPLK4sm1130V+BZBY3JXLe80A==",
"dependencies": {
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/label": "^3.7.6",
- "@react-aria/selection": "^3.17.5",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/collections": "^3.10.5",
- "@react-stately/list": "^3.10.3",
- "@react-types/listbox": "^3.4.7",
+ "@react-stately/selection": "^3.14.3",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/live-announcer": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/@react-aria/live-announcer/-/live-announcer-3.3.2.tgz",
- "integrity": "sha512-aOyPcsfyY9tLCBhuUaYCruwcd1IrYLc47Ou+J7wMzjeN9v4lsaEfiN12WFl8pDqOwfy6/7It2wmlm5hOuZY8wQ==",
+ "node_modules/@react-stately/flags": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/flags/-/flags-3.0.1.tgz",
+ "integrity": "sha512-h5PcDMj54aipQNO18ig/IMI1kzPwcvSwVq5M6Ib6XE1WIkOH0dIuW2eADdAOhcGi3KXJtXVdD29zh0Eox1TKgQ==",
"dependencies": {
- "@swc/helpers": "^0.5.0"
+ "@swc/helpers": "^0.4.14"
}
},
- "node_modules/@react-aria/menu": {
- "version": "3.13.1",
- "resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.13.1.tgz",
- "integrity": "sha512-jF80YIcvD16Fgwm5pj7ViUE3Dj7z5iewQixLaFVdvpgfyE58SD/ZVU9/JkK5g/03DYM0sjpUKZGkdFxxw8eKnw==",
+ "node_modules/@react-stately/flags/node_modules/@swc/helpers": {
+ "version": "0.4.36",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.36.tgz",
+ "integrity": "sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q==",
+ "dependencies": {
+ "legacy-swc-helpers": "npm:@swc/helpers@=0.4.14",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@react-stately/form": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/form/-/form-3.0.1.tgz",
+ "integrity": "sha512-T1Ul2Ou0uE/S4ECLcGKa0OfXjffdjEHfUFZAk7OZl0Mqq/F7dl5WpoLWJ4d4IyvZzGO6anFNenP+vODWbrF3NA==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/overlays": "^3.21.1",
- "@react-aria/selection": "^3.17.5",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/collections": "^3.10.5",
- "@react-stately/menu": "^3.6.1",
- "@react-stately/tree": "^3.7.6",
- "@react-types/button": "^3.9.2",
- "@react-types/menu": "^3.9.7",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/meter": {
- "version": "3.4.11",
- "resolved": "https://registry.npmjs.org/@react-aria/meter/-/meter-3.4.11.tgz",
- "integrity": "sha512-P1G3Jdh0f/uieUDqvc3Ee4wzqBJa7H077BVSC3KPRqEp6YY7JimZGWjOwbFlO2PXhryXm/dI8EzUmh+4ZXjq/g==",
+ "node_modules/@react-stately/grid": {
+ "version": "3.8.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/grid/-/grid-3.8.5.tgz",
+ "integrity": "sha512-KCzi0x0p1ZKK+OptonvJqMbn6Vlgo6GfOIlgcDd0dNYDP8TJ+3QFJAFre5mCr7Fubx7LcAOio4Rij0l/R8fkXQ==",
"dependencies": {
- "@react-aria/progress": "^3.4.11",
- "@react-types/meter": "^3.3.7",
+ "@react-stately/collections": "^3.10.5",
+ "@react-stately/selection": "^3.14.3",
+ "@react-types/grid": "^3.2.4",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5514,97 +6965,71 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/numberfield": {
- "version": "3.11.1",
- "resolved": "https://registry.npmjs.org/@react-aria/numberfield/-/numberfield-3.11.1.tgz",
- "integrity": "sha512-JQ1Z+Ho5H+jeav7jt9A4vBsIQR/Dd2CFbObrULjGkqSrnWjARFZBv3gZwmfGCtplEPeAv9buYKHAqebPtJNUww==",
+ "node_modules/@react-stately/list": {
+ "version": "3.10.3",
+ "resolved": "https://registry.npmjs.org/@react-stately/list/-/list-3.10.3.tgz",
+ "integrity": "sha512-Ul8el0tQy2Ucl3qMQ0fiqdJ874W1ZNjURVSgSxN+pGwVLNBVRjd6Fl7YwZFCXER2YOlzkwg+Zqozf/ZlS0EdXA==",
"dependencies": {
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/spinbutton": "^3.6.3",
- "@react-aria/textfield": "^3.14.3",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/form": "^3.0.1",
- "@react-stately/numberfield": "^3.9.1",
- "@react-types/button": "^3.9.2",
- "@react-types/numberfield": "^3.8.1",
+ "@react-stately/collections": "^3.10.5",
+ "@react-stately/selection": "^3.14.3",
+ "@react-stately/utils": "^3.9.1",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/overlays": {
- "version": "3.21.1",
- "resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.21.1.tgz",
- "integrity": "sha512-djEBDF+TbIIOHWWNpdm19+z8xtY8U+T+wKVQg/UZ6oWnclSqSWeGl70vu73Cg4HVBJ4hKf1SRx4Z/RN6VvH4Yw==",
+ "node_modules/@react-stately/menu": {
+ "version": "3.6.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/menu/-/menu-3.6.1.tgz",
+ "integrity": "sha512-3v0vkTm/kInuuG8jG7jbxXDBnMQcoDZKWvYsBQq7+POt0LmijbLdbdZPBoz9TkZ3eo/OoP194LLHOaFTQyHhlw==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/ssr": "^3.9.2",
- "@react-aria/utils": "^3.23.2",
- "@react-aria/visually-hidden": "^3.8.10",
"@react-stately/overlays": "^3.6.5",
- "@react-types/button": "^3.9.2",
- "@react-types/overlays": "^3.8.5",
+ "@react-types/menu": "^3.9.7",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/progress": {
- "version": "3.4.11",
- "resolved": "https://registry.npmjs.org/@react-aria/progress/-/progress-3.4.11.tgz",
- "integrity": "sha512-RePHbS15/KYFiApYLdwazwvWKsB9q0Kn5DGCSb0hqCC+k2Eui8iVVOsegswiP+xqkk/TiUCIkBEw22W3Az4kTg==",
+ "node_modules/@react-stately/numberfield": {
+ "version": "3.9.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/numberfield/-/numberfield-3.9.1.tgz",
+ "integrity": "sha512-btBIcBEfSVCUm6NwJrMrMygoIu/fQGazzD0RhF7PNsfvkFiWn+TSOyQqSXcsUJVOnBfoS/dVWj6r57KA7zl3FA==",
"dependencies": {
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/label": "^3.7.6",
- "@react-aria/utils": "^3.23.2",
- "@react-types/progress": "^3.5.2",
- "@react-types/shared": "^3.22.1",
+ "@internationalized/number": "^3.5.1",
+ "@react-stately/form": "^3.0.1",
+ "@react-stately/utils": "^3.9.1",
+ "@react-types/numberfield": "^3.8.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/radio": {
- "version": "3.10.2",
- "resolved": "https://registry.npmjs.org/@react-aria/radio/-/radio-3.10.2.tgz",
- "integrity": "sha512-CTUTR+qt3BLjmyQvKHZuVm+1kyvT72ZptOty++sowKXgJApTLdjq8so1IpaLAr8JIfzqD5I4tovsYwIQOX8log==",
+ "node_modules/@react-stately/overlays": {
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.5.tgz",
+ "integrity": "sha512-U4rCFj6TPJPXLUvYXAcvh+yP/CO2W+7f0IuqP7ZZGE+Osk9qFkT+zRK5/6ayhBDFpmueNfjIEAzT9gYPQwNHFw==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/form": "^3.0.3",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/label": "^3.7.6",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/radio": "^3.10.2",
- "@react-types/radio": "^3.7.1",
- "@react-types/shared": "^3.22.1",
+ "@react-stately/utils": "^3.9.1",
+ "@react-types/overlays": "^3.8.5",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/searchfield": {
- "version": "3.7.3",
- "resolved": "https://registry.npmjs.org/@react-aria/searchfield/-/searchfield-3.7.3.tgz",
- "integrity": "sha512-mnYI969R7tU3yMRIGmY1+peq7tmEW0W3MB/J2ImK36Obz/91tTtspHHEeFtPlQDLIyvVPB0Ucam4LIxCKPJm/Q==",
+ "node_modules/@react-stately/radio": {
+ "version": "3.10.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/radio/-/radio-3.10.2.tgz",
+ "integrity": "sha512-JW5ZWiNMKcZvMTsuPeWJQLHXD5rlqy7Qk6fwUx/ZgeibvMBW/NnW19mm2+IMinzmbtERXvR6nsiA837qI+4dew==",
"dependencies": {
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/textfield": "^3.14.3",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/searchfield": "^3.5.1",
- "@react-types/button": "^3.9.2",
- "@react-types/searchfield": "^3.5.3",
+ "@react-stately/form": "^3.0.1",
+ "@react-stately/utils": "^3.9.1",
+ "@react-types/radio": "^3.7.1",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5612,55 +7037,42 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/select": {
- "version": "3.14.3",
- "resolved": "https://registry.npmjs.org/@react-aria/select/-/select-3.14.3.tgz",
- "integrity": "sha512-9KCxI41FI+jTxEfUzRsMdJsZvjkCuuhL4UHig8MZXtXs0nsi7Ir3ezUDQ9m5MSG+ooBYM/CA9DyLDvo5Ioef+g==",
+ "node_modules/@react-stately/searchfield": {
+ "version": "3.5.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/searchfield/-/searchfield-3.5.1.tgz",
+ "integrity": "sha512-9A8Wghx1avRHhMpNH1Nj+jFfiF1bhsff2GEC5PZgWYzhCykw3G5bywn3JAuUS4kh7Vpqhbu4KpHAhmWPSv4B/Q==",
"dependencies": {
- "@react-aria/form": "^3.0.3",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/label": "^3.7.6",
- "@react-aria/listbox": "^3.11.5",
- "@react-aria/menu": "^3.13.1",
- "@react-aria/selection": "^3.17.5",
- "@react-aria/utils": "^3.23.2",
- "@react-aria/visually-hidden": "^3.8.10",
- "@react-stately/select": "^3.6.2",
- "@react-types/button": "^3.9.2",
- "@react-types/select": "^3.9.2",
- "@react-types/shared": "^3.22.1",
+ "@react-stately/utils": "^3.9.1",
+ "@react-types/searchfield": "^3.5.3",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/selection": {
- "version": "3.17.5",
- "resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.17.5.tgz",
- "integrity": "sha512-gO5jBUkc7WdkiFMlWt3x9pTSuj3Yeegsxfo44qU5NPlKrnGtPRZDWrlACNgkDHu645RNNPhlyoX0C+G8mUg1xA==",
+ "node_modules/@react-stately/select": {
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/select/-/select-3.6.2.tgz",
+ "integrity": "sha512-duOxdHKol93h6Ew6fap6Amz+zngoERKZLSKVm/8I8uaBgkoBhEeTFv7mlpHTgINxymMw3mMrvy6GL/gfKFwkqg==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/selection": "^3.14.3",
+ "@react-stately/form": "^3.0.1",
+ "@react-stately/list": "^3.10.3",
+ "@react-stately/overlays": "^3.6.5",
+ "@react-types/select": "^3.9.2",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/separator": {
- "version": "3.3.11",
- "resolved": "https://registry.npmjs.org/@react-aria/separator/-/separator-3.3.11.tgz",
- "integrity": "sha512-UTla+3P2pELpP73WSfbwZgP1y1wODFBQbEOHnUxxO8ocyaUyQLJdvc07bBLLpPoyutlggRG0v9ACo0Rui7AjOg==",
+ "node_modules/@react-stately/selection": {
+ "version": "3.14.3",
+ "resolved": "https://registry.npmjs.org/@react-stately/selection/-/selection-3.14.3.tgz",
+ "integrity": "sha512-d/t0rIWieqQ7wjLoMoWnuHEUSMoVXxkPBFuSlJF3F16289FiQ+b8aeKFDzFTYN7fFD8rkZTnpuE4Tcxg3TmA+w==",
"dependencies": {
- "@react-aria/utils": "^3.23.2",
+ "@react-stately/collections": "^3.10.5",
+ "@react-stately/utils": "^3.9.1",
"@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
@@ -5668,17 +7080,12 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/slider": {
- "version": "3.7.6",
- "resolved": "https://registry.npmjs.org/@react-aria/slider/-/slider-3.7.6.tgz",
- "integrity": "sha512-ZeZhyHzhk9gxGuThPKgX2K3RKsxPxsFig1iYoJvqP8485NtHYQIPht2YcpEKA9siLxGF0DR9VCfouVhSoW0AEA==",
+ "node_modules/@react-stately/slider": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/slider/-/slider-3.5.2.tgz",
+ "integrity": "sha512-ntH3NLRG+AwVC7q4Dx9DcmMkMh9vmHjHNXAgaoqNjhvwfSIae7sQ69CkVe6XeJjIBy6LlH81Kgapz+ABe5a1ZA==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/label": "^3.7.6",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/slider": "^3.5.2",
+ "@react-stately/utils": "^3.9.1",
"@react-types/shared": "^3.22.1",
"@react-types/slider": "^3.7.1",
"@swc/helpers": "^0.5.0"
@@ -5687,924 +7094,1062 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/spinbutton": {
- "version": "3.6.3",
- "resolved": "https://registry.npmjs.org/@react-aria/spinbutton/-/spinbutton-3.6.3.tgz",
- "integrity": "sha512-IlfhRu/pc9zOt2C5zSEB7NmmzddvWisGx2iGzw8BwIKMD+cN3uy+Qwp+sG6Z/JzFEBN0F6Mxm3l5lhbiqjpICQ==",
+ "node_modules/@react-stately/table": {
+ "version": "3.11.6",
+ "resolved": "https://registry.npmjs.org/@react-stately/table/-/table-3.11.6.tgz",
+ "integrity": "sha512-34YsfOILXusj3p6QNcKEaDWVORhM6WEhwPSLCZlkwAJvkxuRQFdih5rQKoIDc0uV5aZsB6bYBqiFhnjY0VERhw==",
"dependencies": {
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/live-announcer": "^3.3.2",
- "@react-aria/utils": "^3.23.2",
- "@react-types/button": "^3.9.2",
+ "@react-stately/collections": "^3.10.5",
+ "@react-stately/flags": "^3.0.1",
+ "@react-stately/grid": "^3.8.5",
+ "@react-stately/selection": "^3.14.3",
+ "@react-stately/utils": "^3.9.1",
+ "@react-types/grid": "^3.2.4",
"@react-types/shared": "^3.22.1",
+ "@react-types/table": "^3.9.3",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/ssr": {
- "version": "3.9.2",
- "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.2.tgz",
- "integrity": "sha512-0gKkgDYdnq1w+ey8KzG9l+H5Z821qh9vVjztk55rUg71vTk/Eaebeir+WtzcLLwTjw3m/asIjx8Y59y1lJZhBw==",
+ "node_modules/@react-stately/tabs": {
+ "version": "3.6.4",
+ "resolved": "https://registry.npmjs.org/@react-stately/tabs/-/tabs-3.6.4.tgz",
+ "integrity": "sha512-WZJgMBqzLgN88RN8AxhY4aH1+I+4w1qQA0Lh3LRSDegaytd+NHixCWaP3IPjePgCB5N1UsPe96Xglw75zjHmDg==",
"dependencies": {
+ "@react-stately/list": "^3.10.3",
+ "@react-types/shared": "^3.22.1",
+ "@react-types/tabs": "^3.3.5",
"@swc/helpers": "^0.5.0"
},
- "engines": {
- "node": ">= 12"
- },
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/switch": {
- "version": "3.6.2",
- "resolved": "https://registry.npmjs.org/@react-aria/switch/-/switch-3.6.2.tgz",
- "integrity": "sha512-X5m/omyhXK+V/vhJFsHuRs2zmt9Asa/RuzlldbXnWohLdeuHMPgQnV8C9hg3f+sRi3sh9UUZ64H61pCtRoZNwg==",
+ "node_modules/@react-stately/toggle": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/toggle/-/toggle-3.7.2.tgz",
+ "integrity": "sha512-SHCF2btcoK57c4lyhucRbyPBAFpp0Pdp0vcPdn3hUgqbu6e5gE0CwG/mgFmZRAQoc7PRc7XifL0uNw8diJJI0Q==",
"dependencies": {
- "@react-aria/toggle": "^3.10.2",
- "@react-stately/toggle": "^3.7.2",
- "@react-types/switch": "^3.5.1",
+ "@react-stately/utils": "^3.9.1",
+ "@react-types/checkbox": "^3.7.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/table": {
- "version": "3.13.5",
- "resolved": "https://registry.npmjs.org/@react-aria/table/-/table-3.13.5.tgz",
- "integrity": "sha512-P2nHEDk2CCoEbMFKNCyBC9qvmv7F/IXARDt/7z/J4mKFgU2iNSK+/zw6yrb38q33Zlk8hDaqSYNxHlMrh+/1MQ==",
+ "node_modules/@react-stately/tooltip": {
+ "version": "3.4.7",
+ "resolved": "https://registry.npmjs.org/@react-stately/tooltip/-/tooltip-3.4.7.tgz",
+ "integrity": "sha512-ACtRgBQ8rphBtsUaaxvEAM0HHN9PvMuyvL0vUHd7jvBDCVZJ6it1BKu9SBKjekBkoBOw9nemtkplh9R2CA6V8Q==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/grid": "^3.8.8",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/live-announcer": "^3.3.2",
- "@react-aria/utils": "^3.23.2",
- "@react-aria/visually-hidden": "^3.8.10",
- "@react-stately/collections": "^3.10.5",
- "@react-stately/flags": "^3.0.1",
- "@react-stately/table": "^3.11.6",
- "@react-stately/virtualizer": "^3.6.8",
- "@react-types/checkbox": "^3.7.1",
- "@react-types/grid": "^3.2.4",
- "@react-types/shared": "^3.22.1",
- "@react-types/table": "^3.9.3",
+ "@react-stately/overlays": "^3.6.5",
+ "@react-types/tooltip": "^3.4.7",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/tabs": {
- "version": "3.8.5",
- "resolved": "https://registry.npmjs.org/@react-aria/tabs/-/tabs-3.8.5.tgz",
- "integrity": "sha512-Jvt33/W+66n5oCxVwHAYarJ3Fit61vULiPcG7uTez0Mf11cq/C72wOrj+ZuNz6PTLTi2veBNQ7MauY72SnOjRg==",
+ "node_modules/@react-stately/tree": {
+ "version": "3.7.6",
+ "resolved": "https://registry.npmjs.org/@react-stately/tree/-/tree-3.7.6.tgz",
+ "integrity": "sha512-y8KvEoZX6+YvqjNCVGS3zA/BKw4D3XrUtUKIDme3gu5Mn6z97u+hUXKdXVCniZR7yvV3fHAIXwE5V2K8Oit4aw==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/selection": "^3.17.5",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/tabs": "^3.6.4",
+ "@react-stately/collections": "^3.10.5",
+ "@react-stately/selection": "^3.14.3",
+ "@react-stately/utils": "^3.9.1",
"@react-types/shared": "^3.22.1",
- "@react-types/tabs": "^3.3.5",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/tag": {
- "version": "3.3.3",
- "resolved": "https://registry.npmjs.org/@react-aria/tag/-/tag-3.3.3.tgz",
- "integrity": "sha512-tlJD9qj1XcsPIZD7DVJ6tWv8t7Z87/8qkbRDx7ugNqeHso9z0WqH9ZkSt17OFUWE2IQIk3V8D3iBSOtmhXcZGQ==",
+ "node_modules/@react-stately/utils": {
+ "version": "3.9.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.9.1.tgz",
+ "integrity": "sha512-yzw75GE0iUWiyps02BOAPTrybcsMIxEJlzXqtvllAb01O9uX5n0i3X+u2eCpj2UoDF4zS08Ps0jPgWxg8xEYtA==",
"dependencies": {
- "@react-aria/gridlist": "^3.7.5",
- "@react-aria/i18n": "^3.10.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/label": "^3.7.6",
- "@react-aria/selection": "^3.17.5",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/list": "^3.10.3",
- "@react-types/button": "^3.9.2",
- "@react-types/shared": "^3.22.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
- "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/textfield": {
- "version": "3.14.3",
- "resolved": "https://registry.npmjs.org/@react-aria/textfield/-/textfield-3.14.3.tgz",
- "integrity": "sha512-wPSjj/mTABspYQdahg+l5YMtEQ3m5iPCTtb5g6nR1U1rzJkvS4i5Pug6PUXeLeMz2H3ToflPWGlNOqBioAFaOQ==",
+ "node_modules/@react-stately/virtualizer": {
+ "version": "3.6.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/virtualizer/-/virtualizer-3.6.8.tgz",
+ "integrity": "sha512-Pf06ihTwExRJltGhi72tmLIo0pcjkL55nu7ifMafAAdxZK4ONxRLSuUjjpvYf/0Rs92xRZy2t/XmHREnfirdkQ==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/form": "^3.0.3",
- "@react-aria/label": "^3.7.6",
"@react-aria/utils": "^3.23.2",
- "@react-stately/form": "^3.0.1",
- "@react-stately/utils": "^3.9.1",
"@react-types/shared": "^3.22.1",
- "@react-types/textfield": "^3.9.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/toggle": {
- "version": "3.10.2",
- "resolved": "https://registry.npmjs.org/@react-aria/toggle/-/toggle-3.10.2.tgz",
- "integrity": "sha512-DgitscHWgI6IFgnvp2HcMpLGX/cAn+XX9kF5RJQbRQ9NqUgruU5cEEGSOLMrEJ6zXDa2xmOiQ+kINcyNhA+JLg==",
+ "node_modules/@react-types/breadcrumbs": {
+ "version": "3.7.3",
+ "resolved": "https://registry.npmjs.org/@react-types/breadcrumbs/-/breadcrumbs-3.7.3.tgz",
+ "integrity": "sha512-eFto/+6J+JR58vThNcALZRA1OlqlG3GzQ/bq3q8IrrkOZcrfbEJJCWit/+53Ia98siJKuF4OJHnotxIVIz5I3w==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/toggle": "^3.7.2",
- "@react-types/checkbox": "^3.7.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/link": "^3.5.3",
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/tooltip": {
- "version": "3.7.2",
- "resolved": "https://registry.npmjs.org/@react-aria/tooltip/-/tooltip-3.7.2.tgz",
- "integrity": "sha512-6jXOSGPao3gPgUQWLbH2r/jxGMqIaIKrJgfwu9TQrh+UkwwiTYW20EpEDCYY2nRFlcoi7EYAiPDSEbHCwXS7Lg==",
+ "node_modules/@react-types/button": {
+ "version": "3.9.2",
+ "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.9.2.tgz",
+ "integrity": "sha512-EnPTkGHZRtiwAoJy5q9lDjoG30bEzA/qnvKG29VVXKYAGeqY2IlFs1ypmU+z1X/CpJgPcG3I5cakM7yTVm3pSg==",
"dependencies": {
- "@react-aria/focus": "^3.16.2",
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/utils": "^3.23.2",
- "@react-stately/tooltip": "^3.4.7",
- "@react-types/shared": "^3.22.1",
- "@react-types/tooltip": "^3.4.7",
- "@swc/helpers": "^0.5.0"
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/utils": {
- "version": "3.23.2",
- "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.23.2.tgz",
- "integrity": "sha512-yznR9jJ0GG+YJvTMZxijQwVp+ahP66DY0apZf7X+dllyN+ByEDW+yaL1ewYPIpugxVzH5P8jhnBXsIyHKN411g==",
+ "node_modules/@react-types/calendar": {
+ "version": "3.4.4",
+ "resolved": "https://registry.npmjs.org/@react-types/calendar/-/calendar-3.4.4.tgz",
+ "integrity": "sha512-hV1Thmb/AES5OmfPvvmyjSkmsEULjiDfA7Yyy70L/YKuSNKb7Su+Bf2VnZuDW3ec+GxO4JJNlpJ0AkbphWBvcg==",
"dependencies": {
- "@react-aria/ssr": "^3.9.2",
- "@react-stately/utils": "^3.9.1",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0",
- "clsx": "^2.0.0"
+ "@internationalized/date": "^3.5.2",
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-aria/visually-hidden": {
- "version": "3.8.10",
- "resolved": "https://registry.npmjs.org/@react-aria/visually-hidden/-/visually-hidden-3.8.10.tgz",
- "integrity": "sha512-np8c4wxdbE7ZrMv/bnjwEfpX0/nkWy9sELEb0sK8n4+HJ+WycoXXrVxBUb9tXgL/GCx5ReeDQChjQWwajm/z3A==",
+ "node_modules/@react-types/checkbox": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/@react-types/checkbox/-/checkbox-3.7.1.tgz",
+ "integrity": "sha512-kuGqjQFex0As/3gfWyk+e9njCcad/ZdnYLLiNvhlk15730xfa0MmnOdpqo9jfuFSXBjOcpxoofvEhvrRMtEdUA==",
"dependencies": {
- "@react-aria/interactions": "^3.21.1",
- "@react-aria/utils": "^3.23.2",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-leaflet/core": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz",
- "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==",
+ "node_modules/@react-types/combobox": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@react-types/combobox/-/combobox-3.10.1.tgz",
+ "integrity": "sha512-XMno1rgVRNta49vf5nV7VJpVSVAV20tt79t618gG1qRKH5Kt2Cy8lz2fQ5vHG6UTv/6jUOvU8g5Pc93sLaTmoA==",
+ "dependencies": {
+ "@react-types/shared": "^3.22.1"
+ },
"peerDependencies": {
- "leaflet": "^1.9.0",
- "react": "^18.0.0",
- "react-dom": "^18.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/calendar": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/@react-stately/calendar/-/calendar-3.4.4.tgz",
- "integrity": "sha512-f9ZOd096gGGD+3LmU1gkmfqytGyQtrgi+Qjn+70GbM2Jy65pwOR4I9YrobbmeAFov5Tff13mQEa0yqWvbcDLZQ==",
+ "node_modules/@react-types/datepicker": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/@react-types/datepicker/-/datepicker-3.7.2.tgz",
+ "integrity": "sha512-zThqFAdhQL1dqyVDsDSSTdfCjoD6634eyg/B0ZJfQxcLUR/5pch3v/gxBhbyCVDGMNHRWUWIJvY9DVOepuoSug==",
"dependencies": {
"@internationalized/date": "^3.5.2",
- "@react-stately/utils": "^3.9.1",
"@react-types/calendar": "^3.4.4",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/overlays": "^3.8.5",
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/checkbox": {
- "version": "3.6.3",
- "resolved": "https://registry.npmjs.org/@react-stately/checkbox/-/checkbox-3.6.3.tgz",
- "integrity": "sha512-hWp0GXVbMI4sS2NbBjWgOnHNrRqSV4jeftP8zc5JsIYRmrWBUZitxluB34QuVPzrBO29bGsF0GTArSiQZt6BWw==",
+ "node_modules/@react-types/dialog": {
+ "version": "3.5.8",
+ "resolved": "https://registry.npmjs.org/@react-types/dialog/-/dialog-3.5.8.tgz",
+ "integrity": "sha512-RX8JsMvty8ADHRqVEkppoynXLtN4IzUh8d5z88UEBbcvWKlHfd6bOBQjQcBH3AUue5wjfpPIt6brw2VzgBY/3Q==",
"dependencies": {
- "@react-stately/form": "^3.0.1",
- "@react-stately/utils": "^3.9.1",
- "@react-types/checkbox": "^3.7.1",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/overlays": "^3.8.5",
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/collections": {
- "version": "3.10.5",
- "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.10.5.tgz",
- "integrity": "sha512-k8Q29Nnvb7iAia1QvTanZsrWP2aqVNBy/1SlE6kLL6vDqtKZC+Esd1SDLHRmIcYIp5aTdfwIGd0NuiRQA7a81Q==",
+ "node_modules/@react-types/grid": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/@react-types/grid/-/grid-3.2.4.tgz",
+ "integrity": "sha512-sDVoyQcH7MoGdx5nBi5ZOU/mVFBt9YTxhvr0PZ97dMdEHZtJC1w9SuezwWS34f50yb8YAXQRTICbZYcK4bAlDA==",
"dependencies": {
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/combobox": {
- "version": "3.8.2",
- "resolved": "https://registry.npmjs.org/@react-stately/combobox/-/combobox-3.8.2.tgz",
- "integrity": "sha512-f+IHuFW848VoMbvTfSakn2WIh2urDxO355LrKxnisXPCkpQHpq3lvT2mJtKJwkPxjAy7xPjpV8ejgga2R6p53Q==",
+ "node_modules/@react-types/link": {
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/@react-types/link/-/link-3.5.3.tgz",
+ "integrity": "sha512-yVafjW3IejyVnK3oMBNjFABCGG6J27EUG8rvkaGaI1uB6srGUEhpJ97XLv11aj1QkXHBy3VGXqxEV3S7wn4HTw==",
"dependencies": {
- "@react-stately/collections": "^3.10.5",
- "@react-stately/form": "^3.0.1",
- "@react-stately/list": "^3.10.3",
- "@react-stately/overlays": "^3.6.5",
- "@react-stately/select": "^3.6.2",
- "@react-stately/utils": "^3.9.1",
- "@react-types/combobox": "^3.10.1",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/data": {
- "version": "3.11.2",
- "resolved": "https://registry.npmjs.org/@react-stately/data/-/data-3.11.2.tgz",
- "integrity": "sha512-yhK2upk2WbJeiLBRWHrh/4G2CvmmozCzoivLaRAPYu53m1J3MyzVGCLJgnZMbMZvAbNcYWZK6IzO6VqZ2y1fOw==",
+ "node_modules/@react-types/listbox": {
+ "version": "3.4.7",
+ "resolved": "https://registry.npmjs.org/@react-types/listbox/-/listbox-3.4.7.tgz",
+ "integrity": "sha512-68y5H9CVSPFiwO6MOFxTbry9JQMK/Lb1M9i3M8TDyq1AbJxBPpgAvJ9RaqIMCucsnqCzpY/zA3D/X417zByL1w==",
"dependencies": {
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/datepicker": {
- "version": "3.9.2",
- "resolved": "https://registry.npmjs.org/@react-stately/datepicker/-/datepicker-3.9.2.tgz",
- "integrity": "sha512-Z6FrK6Af7R5BizqHhJFCj3Hn32mg5iLSDdEgFQAuO043guOXUKFUAnbxfbQUjL6PGE6QwWMfQD7PPGebHn9Ifw==",
+ "node_modules/@react-types/menu": {
+ "version": "3.9.7",
+ "resolved": "https://registry.npmjs.org/@react-types/menu/-/menu-3.9.7.tgz",
+ "integrity": "sha512-K6KhloJVoGsqwkdeez72fkNI9dfrmLI/sNrB4XuOKo2crDQ/eyZYWyJmzz8giz/tHME9w774k487rVoefoFh5w==",
"dependencies": {
- "@internationalized/date": "^3.5.2",
- "@internationalized/string": "^3.2.1",
- "@react-stately/form": "^3.0.1",
- "@react-stately/overlays": "^3.6.5",
- "@react-stately/utils": "^3.9.1",
- "@react-types/datepicker": "^3.7.2",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/overlays": "^3.8.5",
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/dnd": {
- "version": "3.2.8",
- "resolved": "https://registry.npmjs.org/@react-stately/dnd/-/dnd-3.2.8.tgz",
- "integrity": "sha512-oSo+2Bzum3Q1/d+3FuaDmpVHqqBB004tycuQDDFtad3N1BKm+fNfmslRK1ioLkPLK4sm1130V+BZBY3JXLe80A==",
+ "node_modules/@react-types/meter": {
+ "version": "3.3.7",
+ "resolved": "https://registry.npmjs.org/@react-types/meter/-/meter-3.3.7.tgz",
+ "integrity": "sha512-p+YJ0+Lpn5MLmlbFZbDH1P0ILv1+AuMcUbxLcXMIVMGn7o0FO7eVZnFuq76D+qTDm9all+TRLJix7bctOrP+5Q==",
"dependencies": {
- "@react-stately/selection": "^3.14.3",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/progress": "^3.5.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/flags": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@react-stately/flags/-/flags-3.0.1.tgz",
- "integrity": "sha512-h5PcDMj54aipQNO18ig/IMI1kzPwcvSwVq5M6Ib6XE1WIkOH0dIuW2eADdAOhcGi3KXJtXVdD29zh0Eox1TKgQ==",
+ "node_modules/@react-types/numberfield": {
+ "version": "3.8.1",
+ "resolved": "https://registry.npmjs.org/@react-types/numberfield/-/numberfield-3.8.1.tgz",
+ "integrity": "sha512-GaCjLQgXUGCt40SLjKk3/COMWFlN2vV/3Xs3VSLAEdFZpk99b+Ik1oR21+7ZP5/iMHuQDc1MJRWdFfIjxCvVDQ==",
"dependencies": {
- "@swc/helpers": "^0.4.14"
+ "@react-types/shared": "^3.22.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/flags/node_modules/@swc/helpers": {
- "version": "0.4.36",
- "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.36.tgz",
- "integrity": "sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q==",
+ "node_modules/@react-types/overlays": {
+ "version": "3.8.5",
+ "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.8.5.tgz",
+ "integrity": "sha512-4D7EEBQigD/m8hE68Ys8eloyyZFHHduqykSIgINJ0edmo0jygRbWlTwuhWFR9USgSP4dK54duN0Mvq0m4HEVEw==",
"dependencies": {
- "legacy-swc-helpers": "npm:@swc/helpers@=0.4.14",
- "tslib": "^2.4.0"
+ "@react-types/shared": "^3.22.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/form": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@react-stately/form/-/form-3.0.1.tgz",
- "integrity": "sha512-T1Ul2Ou0uE/S4ECLcGKa0OfXjffdjEHfUFZAk7OZl0Mqq/F7dl5WpoLWJ4d4IyvZzGO6anFNenP+vODWbrF3NA==",
+ "node_modules/@react-types/progress": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/@react-types/progress/-/progress-3.5.2.tgz",
+ "integrity": "sha512-aQql22kusEudsHwDEzq6y/Mh29AM+ftRDKdS5E5g4MkCY5J4FMbOYco1T5So83NIvvG9+eKcxPoJUMjQQACAyA==",
+ "dependencies": {
+ "@react-types/shared": "^3.22.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-types/radio": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/@react-types/radio/-/radio-3.7.1.tgz",
+ "integrity": "sha512-Zut3rN1odIUBLZdijeyou+UqsLeRE76d9A+npykYGu29ndqmo3w4sLn8QeQcdj1IR71ZnG0pW2Y2BazhK5XrrQ==",
+ "dependencies": {
+ "@react-types/shared": "^3.22.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-types/searchfield": {
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/@react-types/searchfield/-/searchfield-3.5.3.tgz",
+ "integrity": "sha512-gBfsT1WpY8UIb74yyYmnjiHpVasph2mdmGj9i8cGF2HUYwx5p+Fr85mtCGDph0uirvRoM5ExMp4snD+ueNAVCg==",
"dependencies": {
"@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/textfield": "^3.9.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-types/select": {
+ "version": "3.9.2",
+ "resolved": "https://registry.npmjs.org/@react-types/select/-/select-3.9.2.tgz",
+ "integrity": "sha512-fGFrunednY3Pq/BBwVOf87Fsuyo/SlevL0wFIE9OOl2V5NXVaTY7/7RYA8hIOHPzmvsMbndy419BEudiNGhv4A==",
+ "dependencies": {
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/grid": {
- "version": "3.8.5",
- "resolved": "https://registry.npmjs.org/@react-stately/grid/-/grid-3.8.5.tgz",
- "integrity": "sha512-KCzi0x0p1ZKK+OptonvJqMbn6Vlgo6GfOIlgcDd0dNYDP8TJ+3QFJAFre5mCr7Fubx7LcAOio4Rij0l/R8fkXQ==",
- "dependencies": {
- "@react-stately/collections": "^3.10.5",
- "@react-stately/selection": "^3.14.3",
- "@react-types/grid": "^3.2.4",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
- },
+ "node_modules/@react-types/shared": {
+ "version": "3.22.1",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.22.1.tgz",
+ "integrity": "sha512-PCpa+Vo6BKnRMuOEzy5zAZ3/H5tnQg1e80khMhK2xys0j6ZqzkgQC+fHMNZ7VDFNLqqNMj/o0eVeSBDh2POjkw==",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/list": {
- "version": "3.10.3",
- "resolved": "https://registry.npmjs.org/@react-stately/list/-/list-3.10.3.tgz",
- "integrity": "sha512-Ul8el0tQy2Ucl3qMQ0fiqdJ874W1ZNjURVSgSxN+pGwVLNBVRjd6Fl7YwZFCXER2YOlzkwg+Zqozf/ZlS0EdXA==",
+ "node_modules/@react-types/slider": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/@react-types/slider/-/slider-3.7.1.tgz",
+ "integrity": "sha512-FKO3YZYdrBs00XbBW5acP+0L1cCdevl/uRJiXbnLpGysO5PrSFIRS7Wlv4M7ztf6gT7b1Ao4FNC9crbxBr6BzA==",
"dependencies": {
- "@react-stately/collections": "^3.10.5",
- "@react-stately/selection": "^3.14.3",
- "@react-stately/utils": "^3.9.1",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/menu": {
- "version": "3.6.1",
- "resolved": "https://registry.npmjs.org/@react-stately/menu/-/menu-3.6.1.tgz",
- "integrity": "sha512-3v0vkTm/kInuuG8jG7jbxXDBnMQcoDZKWvYsBQq7+POt0LmijbLdbdZPBoz9TkZ3eo/OoP194LLHOaFTQyHhlw==",
+ "node_modules/@react-types/switch": {
+ "version": "3.5.1",
+ "resolved": "https://registry.npmjs.org/@react-types/switch/-/switch-3.5.1.tgz",
+ "integrity": "sha512-2LFEKMGeufqyYmeN/5dtkDkCPG6x9O4eu6aaBaJmPGon7C/l3yiFEgRue6oCUYc1HixR7Qlp0sPxk0tQeWzrSg==",
"dependencies": {
- "@react-stately/overlays": "^3.6.5",
- "@react-types/menu": "^3.9.7",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/numberfield": {
- "version": "3.9.1",
- "resolved": "https://registry.npmjs.org/@react-stately/numberfield/-/numberfield-3.9.1.tgz",
- "integrity": "sha512-btBIcBEfSVCUm6NwJrMrMygoIu/fQGazzD0RhF7PNsfvkFiWn+TSOyQqSXcsUJVOnBfoS/dVWj6r57KA7zl3FA==",
+ "node_modules/@react-types/table": {
+ "version": "3.9.3",
+ "resolved": "https://registry.npmjs.org/@react-types/table/-/table-3.9.3.tgz",
+ "integrity": "sha512-Hs/pMbxJdga2zBol4H5pV1FVIiRjCuSTXst6idJjkctanTexR4xkyrtBwl+rdLNoGwQ2pGii49vgklc5bFK7zA==",
"dependencies": {
- "@internationalized/number": "^3.5.1",
- "@react-stately/form": "^3.0.1",
- "@react-stately/utils": "^3.9.1",
- "@react-types/numberfield": "^3.8.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/grid": "^3.2.4",
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/overlays": {
- "version": "3.6.5",
- "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.5.tgz",
- "integrity": "sha512-U4rCFj6TPJPXLUvYXAcvh+yP/CO2W+7f0IuqP7ZZGE+Osk9qFkT+zRK5/6ayhBDFpmueNfjIEAzT9gYPQwNHFw==",
+ "node_modules/@react-types/tabs": {
+ "version": "3.3.5",
+ "resolved": "https://registry.npmjs.org/@react-types/tabs/-/tabs-3.3.5.tgz",
+ "integrity": "sha512-6NTSZBOWekCtApdZrhu5tHhE/8q52oVohQN+J5T7shAXd6ZAtu8PABVR/nH4BWucc8FL0OUajRqunqzQMU13gA==",
"dependencies": {
- "@react-stately/utils": "^3.9.1",
- "@react-types/overlays": "^3.8.5",
- "@swc/helpers": "^0.5.0"
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/radio": {
- "version": "3.10.2",
- "resolved": "https://registry.npmjs.org/@react-stately/radio/-/radio-3.10.2.tgz",
- "integrity": "sha512-JW5ZWiNMKcZvMTsuPeWJQLHXD5rlqy7Qk6fwUx/ZgeibvMBW/NnW19mm2+IMinzmbtERXvR6nsiA837qI+4dew==",
+ "node_modules/@react-types/textfield": {
+ "version": "3.9.1",
+ "resolved": "https://registry.npmjs.org/@react-types/textfield/-/textfield-3.9.1.tgz",
+ "integrity": "sha512-JBHY9M2CkL6xFaGSfWmUJVu3tEK09FaeB1dU3IEh6P41xxbFnPakYHSSAdnwMXBtXPoSHIVsUBickW/pjgfe5g==",
"dependencies": {
- "@react-stately/form": "^3.0.1",
- "@react-stately/utils": "^3.9.1",
- "@react-types/radio": "^3.7.1",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/searchfield": {
- "version": "3.5.1",
- "resolved": "https://registry.npmjs.org/@react-stately/searchfield/-/searchfield-3.5.1.tgz",
- "integrity": "sha512-9A8Wghx1avRHhMpNH1Nj+jFfiF1bhsff2GEC5PZgWYzhCykw3G5bywn3JAuUS4kh7Vpqhbu4KpHAhmWPSv4B/Q==",
+ "node_modules/@react-types/tooltip": {
+ "version": "3.4.7",
+ "resolved": "https://registry.npmjs.org/@react-types/tooltip/-/tooltip-3.4.7.tgz",
+ "integrity": "sha512-rV4HZRQxLRNhe24yATOxnFQtGRUmsR7mqxMupXCmd1vrw8h+rdKlQv1zW2q8nALAKNmnRXZJHxYQ1SFzb98fgg==",
"dependencies": {
- "@react-stately/utils": "^3.9.1",
- "@react-types/searchfield": "^3.5.3",
- "@swc/helpers": "^0.5.0"
+ "@react-types/overlays": "^3.8.5",
+ "@react-types/shared": "^3.22.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@react-stately/select": {
- "version": "3.6.2",
- "resolved": "https://registry.npmjs.org/@react-stately/select/-/select-3.6.2.tgz",
- "integrity": "sha512-duOxdHKol93h6Ew6fap6Amz+zngoERKZLSKVm/8I8uaBgkoBhEeTFv7mlpHTgINxymMw3mMrvy6GL/gfKFwkqg==",
+ "node_modules/@release-it/conventional-changelog": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/@release-it/conventional-changelog/-/conventional-changelog-8.0.1.tgz",
+ "integrity": "sha512-pwc9jaBYDaSX5TXw6rEnPfqDkKJN2sFBhYpON1kBi9T3sA9EOBncC4ed0Bv3L1ciNb6eqEJXPfp+tQMqVlv/eg==",
"dependencies": {
- "@react-stately/form": "^3.0.1",
- "@react-stately/list": "^3.10.3",
- "@react-stately/overlays": "^3.6.5",
- "@react-types/select": "^3.9.2",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "concat-stream": "^2.0.0",
+ "conventional-changelog": "^5.1.0",
+ "conventional-recommended-bump": "^9.0.0",
+ "semver": "^7.5.4"
+ },
+ "engines": {
+ "node": ">=18"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "release-it": "^17.0.0"
}
},
- "node_modules/@react-stately/selection": {
- "version": "3.14.3",
- "resolved": "https://registry.npmjs.org/@react-stately/selection/-/selection-3.14.3.tgz",
- "integrity": "sha512-d/t0rIWieqQ7wjLoMoWnuHEUSMoVXxkPBFuSlJF3F16289FiQ+b8aeKFDzFTYN7fFD8rkZTnpuE4Tcxg3TmA+w==",
+ "node_modules/@release-it/conventional-changelog/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
"dependencies": {
- "@react-stately/collections": "^3.10.5",
- "@react-stately/utils": "^3.9.1",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "yallist": "^4.0.0"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@react-stately/slider": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@react-stately/slider/-/slider-3.5.2.tgz",
- "integrity": "sha512-ntH3NLRG+AwVC7q4Dx9DcmMkMh9vmHjHNXAgaoqNjhvwfSIae7sQ69CkVe6XeJjIBy6LlH81Kgapz+ABe5a1ZA==",
+ "node_modules/@release-it/conventional-changelog/node_modules/semver": {
+ "version": "7.6.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
+ "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
"dependencies": {
- "@react-stately/utils": "^3.9.1",
- "@react-types/shared": "^3.22.1",
- "@react-types/slider": "^3.7.1",
- "@swc/helpers": "^0.5.0"
+ "lru-cache": "^6.0.0"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@react-stately/table": {
- "version": "3.11.6",
- "resolved": "https://registry.npmjs.org/@react-stately/table/-/table-3.11.6.tgz",
- "integrity": "sha512-34YsfOILXusj3p6QNcKEaDWVORhM6WEhwPSLCZlkwAJvkxuRQFdih5rQKoIDc0uV5aZsB6bYBqiFhnjY0VERhw==",
+ "node_modules/@release-it/conventional-changelog/node_modules/yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
+ },
+ "node_modules/@repeaterjs/repeater": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.5.tgz",
+ "integrity": "sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA==",
+ "dev": true
+ },
+ "node_modules/@rollup/plugin-commonjs": {
+ "version": "26.0.1",
+ "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-26.0.1.tgz",
+ "integrity": "sha512-UnsKoZK6/aGIH6AdkptXhNvhaqftcjq3zZdT+LY5Ftms6JR06nADcDsYp5hTU9E2lbJUEOhdlY5J4DNTneM+jQ==",
"dependencies": {
- "@react-stately/collections": "^3.10.5",
- "@react-stately/flags": "^3.0.1",
- "@react-stately/grid": "^3.8.5",
- "@react-stately/selection": "^3.14.3",
- "@react-stately/utils": "^3.9.1",
- "@react-types/grid": "^3.2.4",
- "@react-types/shared": "^3.22.1",
- "@react-types/table": "^3.9.3",
- "@swc/helpers": "^0.5.0"
+ "@rollup/pluginutils": "^5.0.1",
+ "commondir": "^1.0.1",
+ "estree-walker": "^2.0.2",
+ "glob": "^10.4.1",
+ "is-reference": "1.2.1",
+ "magic-string": "^0.30.3"
+ },
+ "engines": {
+ "node": ">=16.0.0 || 14 >= 14.17"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "rollup": "^2.68.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
}
},
- "node_modules/@react-stately/tabs": {
- "version": "3.6.4",
- "resolved": "https://registry.npmjs.org/@react-stately/tabs/-/tabs-3.6.4.tgz",
- "integrity": "sha512-WZJgMBqzLgN88RN8AxhY4aH1+I+4w1qQA0Lh3LRSDegaytd+NHixCWaP3IPjePgCB5N1UsPe96Xglw75zjHmDg==",
+ "node_modules/@rollup/plugin-commonjs/node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="
+ },
+ "node_modules/@rollup/plugin-commonjs/node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
"dependencies": {
- "@react-stately/list": "^3.10.3",
- "@react-types/shared": "^3.22.1",
- "@react-types/tabs": "^3.3.5",
- "@swc/helpers": "^0.5.0"
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@react-stately/toggle": {
- "version": "3.7.2",
- "resolved": "https://registry.npmjs.org/@react-stately/toggle/-/toggle-3.7.2.tgz",
- "integrity": "sha512-SHCF2btcoK57c4lyhucRbyPBAFpp0Pdp0vcPdn3hUgqbu6e5gE0CwG/mgFmZRAQoc7PRc7XifL0uNw8diJJI0Q==",
+ "node_modules/@rollup/plugin-commonjs/node_modules/jackspeak": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
"dependencies": {
- "@react-stately/utils": "^3.9.1",
- "@react-types/checkbox": "^3.7.1",
- "@swc/helpers": "^0.5.0"
+ "@isaacs/cliui": "^8.0.2"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ },
+ "optionalDependencies": {
+ "@pkgjs/parseargs": "^0.11.0"
}
},
- "node_modules/@react-stately/tooltip": {
- "version": "3.4.7",
- "resolved": "https://registry.npmjs.org/@react-stately/tooltip/-/tooltip-3.4.7.tgz",
- "integrity": "sha512-ACtRgBQ8rphBtsUaaxvEAM0HHN9PvMuyvL0vUHd7jvBDCVZJ6it1BKu9SBKjekBkoBOw9nemtkplh9R2CA6V8Q==",
+ "node_modules/@rollup/plugin-commonjs/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"dependencies": {
- "@react-stately/overlays": "^3.6.5",
- "@react-types/tooltip": "^3.4.7",
- "@swc/helpers": "^0.5.0"
+ "brace-expansion": "^2.0.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@react-stately/tree": {
- "version": "3.7.6",
- "resolved": "https://registry.npmjs.org/@react-stately/tree/-/tree-3.7.6.tgz",
- "integrity": "sha512-y8KvEoZX6+YvqjNCVGS3zA/BKw4D3XrUtUKIDme3gu5Mn6z97u+hUXKdXVCniZR7yvV3fHAIXwE5V2K8Oit4aw==",
+ "node_modules/@rollup/plugin-commonjs/node_modules/minipass": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/@rollup/pluginutils": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.2.tgz",
+ "integrity": "sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==",
"dependencies": {
- "@react-stately/collections": "^3.10.5",
- "@react-stately/selection": "^3.14.3",
- "@react-stately/utils": "^3.9.1",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@types/estree": "^1.0.0",
+ "estree-walker": "^2.0.2",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "rollup": {
+ "optional": true
+ }
}
},
- "node_modules/@react-stately/utils": {
- "version": "3.9.1",
- "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.9.1.tgz",
- "integrity": "sha512-yzw75GE0iUWiyps02BOAPTrybcsMIxEJlzXqtvllAb01O9uX5n0i3X+u2eCpj2UoDF4zS08Ps0jPgWxg8xEYtA==",
+ "node_modules/@rollup/pluginutils/node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w=="
+ },
+ "node_modules/@rushstack/eslint-patch": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz",
+ "integrity": "sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==",
+ "dev": true
+ },
+ "node_modules/@sentry-internal/browser-utils": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry-internal/browser-utils/-/browser-utils-8.33.1.tgz",
+ "integrity": "sha512-TW6/r+Gl5jiXv54iK1xZ3mlVgTS/jaBp4vcQ0xGMdgiQ3WchEPcFSeYovL+YHT3tSud0GZqVtDQCz+5i76puqA==",
"dependencies": {
- "@swc/helpers": "^0.5.0"
+ "@sentry/core": "8.33.1",
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=14.18"
}
},
- "node_modules/@react-stately/virtualizer": {
- "version": "3.6.8",
- "resolved": "https://registry.npmjs.org/@react-stately/virtualizer/-/virtualizer-3.6.8.tgz",
- "integrity": "sha512-Pf06ihTwExRJltGhi72tmLIo0pcjkL55nu7ifMafAAdxZK4ONxRLSuUjjpvYf/0Rs92xRZy2t/XmHREnfirdkQ==",
+ "node_modules/@sentry-internal/feedback": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry-internal/feedback/-/feedback-8.33.1.tgz",
+ "integrity": "sha512-qauMRTm3qDaLqZ3ibI03cj4gLF40y0ij65nj+cns6iWxGCtPrO8tjvXFWuQsE7Aye9dGMnBgmv7uN+NTUtC3RA==",
"dependencies": {
- "@react-aria/utils": "^3.23.2",
- "@react-types/shared": "^3.22.1",
- "@swc/helpers": "^0.5.0"
+ "@sentry/core": "8.33.1",
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=14.18"
}
},
- "node_modules/@react-types/breadcrumbs": {
- "version": "3.7.3",
- "resolved": "https://registry.npmjs.org/@react-types/breadcrumbs/-/breadcrumbs-3.7.3.tgz",
- "integrity": "sha512-eFto/+6J+JR58vThNcALZRA1OlqlG3GzQ/bq3q8IrrkOZcrfbEJJCWit/+53Ia98siJKuF4OJHnotxIVIz5I3w==",
+ "node_modules/@sentry-internal/replay": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry-internal/replay/-/replay-8.33.1.tgz",
+ "integrity": "sha512-fm4coIOjmanU29NOVN9MyaP4fUCOYytbtFqVSKRFNZQ/xAgNeySiBIbUd6IjujMmnOk9bY0WEUMcdm3Uotjdog==",
"dependencies": {
- "@react-types/link": "^3.5.3",
- "@react-types/shared": "^3.22.1"
+ "@sentry-internal/browser-utils": "8.33.1",
+ "@sentry/core": "8.33.1",
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=14.18"
}
},
- "node_modules/@react-types/button": {
- "version": "3.9.2",
- "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.9.2.tgz",
- "integrity": "sha512-EnPTkGHZRtiwAoJy5q9lDjoG30bEzA/qnvKG29VVXKYAGeqY2IlFs1ypmU+z1X/CpJgPcG3I5cakM7yTVm3pSg==",
+ "node_modules/@sentry-internal/replay-canvas": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry-internal/replay-canvas/-/replay-canvas-8.33.1.tgz",
+ "integrity": "sha512-nsxTFTPCT10Ty/v6+AiST3+yotGP1sUb8xqfKB9fPnS1hZHFryp0NnEls7xFjBsBbZPU1GpFkzrk/E6JFzixDQ==",
"dependencies": {
- "@react-types/shared": "^3.22.1"
+ "@sentry-internal/replay": "8.33.1",
+ "@sentry/core": "8.33.1",
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=14.18"
}
},
- "node_modules/@react-types/calendar": {
- "version": "3.4.4",
- "resolved": "https://registry.npmjs.org/@react-types/calendar/-/calendar-3.4.4.tgz",
- "integrity": "sha512-hV1Thmb/AES5OmfPvvmyjSkmsEULjiDfA7Yyy70L/YKuSNKb7Su+Bf2VnZuDW3ec+GxO4JJNlpJ0AkbphWBvcg==",
- "dependencies": {
- "@internationalized/date": "^3.5.2",
- "@react-types/shared": "^3.22.1"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "node_modules/@sentry/babel-plugin-component-annotate": {
+ "version": "2.22.3",
+ "resolved": "https://registry.npmjs.org/@sentry/babel-plugin-component-annotate/-/babel-plugin-component-annotate-2.22.3.tgz",
+ "integrity": "sha512-OlHA+i+vnQHRIdry4glpiS/xTOtgjmpXOt6IBOUqynx5Jd/iK1+fj+t8CckqOx9wRacO/hru2wfW/jFq0iViLg==",
+ "engines": {
+ "node": ">= 14"
}
},
- "node_modules/@react-types/checkbox": {
- "version": "3.7.1",
- "resolved": "https://registry.npmjs.org/@react-types/checkbox/-/checkbox-3.7.1.tgz",
- "integrity": "sha512-kuGqjQFex0As/3gfWyk+e9njCcad/ZdnYLLiNvhlk15730xfa0MmnOdpqo9jfuFSXBjOcpxoofvEhvrRMtEdUA==",
+ "node_modules/@sentry/browser": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-8.33.1.tgz",
+ "integrity": "sha512-c6zI/igexkLwZuGk+u8Rj26ChjxGgkhe6ZbKFsXCYaKAp5ep5X7HQRkkqgbxApiqlC0LduHdd/ymzh139JLg8w==",
"dependencies": {
- "@react-types/shared": "^3.22.1"
+ "@sentry-internal/browser-utils": "8.33.1",
+ "@sentry-internal/feedback": "8.33.1",
+ "@sentry-internal/replay": "8.33.1",
+ "@sentry-internal/replay-canvas": "8.33.1",
+ "@sentry/core": "8.33.1",
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=14.18"
}
},
- "node_modules/@react-types/combobox": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@react-types/combobox/-/combobox-3.10.1.tgz",
- "integrity": "sha512-XMno1rgVRNta49vf5nV7VJpVSVAV20tt79t618gG1qRKH5Kt2Cy8lz2fQ5vHG6UTv/6jUOvU8g5Pc93sLaTmoA==",
+ "node_modules/@sentry/bundler-plugin-core": {
+ "version": "2.22.3",
+ "resolved": "https://registry.npmjs.org/@sentry/bundler-plugin-core/-/bundler-plugin-core-2.22.3.tgz",
+ "integrity": "sha512-DeoUl0WffcqZZRl5Wy9aHvX4WfZbbWt0QbJ7NJrcEViq+dRAI2FQTYECFLwdZi5Gtb3oyqZICO+P7k8wDnzsjQ==",
"dependencies": {
- "@react-types/shared": "^3.22.1"
+ "@babel/core": "^7.18.5",
+ "@sentry/babel-plugin-component-annotate": "2.22.3",
+ "@sentry/cli": "^2.33.1",
+ "dotenv": "^16.3.1",
+ "find-up": "^5.0.0",
+ "glob": "^9.3.2",
+ "magic-string": "0.30.8",
+ "unplugin": "1.0.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">= 14"
}
},
- "node_modules/@react-types/datepicker": {
- "version": "3.7.2",
- "resolved": "https://registry.npmjs.org/@react-types/datepicker/-/datepicker-3.7.2.tgz",
- "integrity": "sha512-zThqFAdhQL1dqyVDsDSSTdfCjoD6634eyg/B0ZJfQxcLUR/5pch3v/gxBhbyCVDGMNHRWUWIJvY9DVOepuoSug==",
+ "node_modules/@sentry/bundler-plugin-core/node_modules/glob": {
+ "version": "9.3.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz",
+ "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==",
"dependencies": {
- "@internationalized/date": "^3.5.2",
- "@react-types/calendar": "^3.4.4",
- "@react-types/overlays": "^3.8.5",
- "@react-types/shared": "^3.22.1"
+ "fs.realpath": "^1.0.0",
+ "minimatch": "^8.0.2",
+ "minipass": "^4.2.4",
+ "path-scurry": "^1.6.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@react-types/dialog": {
- "version": "3.5.8",
- "resolved": "https://registry.npmjs.org/@react-types/dialog/-/dialog-3.5.8.tgz",
- "integrity": "sha512-RX8JsMvty8ADHRqVEkppoynXLtN4IzUh8d5z88UEBbcvWKlHfd6bOBQjQcBH3AUue5wjfpPIt6brw2VzgBY/3Q==",
+ "node_modules/@sentry/bundler-plugin-core/node_modules/magic-string": {
+ "version": "0.30.8",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.8.tgz",
+ "integrity": "sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==",
"dependencies": {
- "@react-types/overlays": "^3.8.5",
- "@react-types/shared": "^3.22.1"
+ "@jridgewell/sourcemap-codec": "^1.4.15"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=12"
}
},
- "node_modules/@react-types/grid": {
- "version": "3.2.4",
- "resolved": "https://registry.npmjs.org/@react-types/grid/-/grid-3.2.4.tgz",
- "integrity": "sha512-sDVoyQcH7MoGdx5nBi5ZOU/mVFBt9YTxhvr0PZ97dMdEHZtJC1w9SuezwWS34f50yb8YAXQRTICbZYcK4bAlDA==",
+ "node_modules/@sentry/bundler-plugin-core/node_modules/minimatch": {
+ "version": "8.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz",
+ "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==",
"dependencies": {
- "@react-types/shared": "^3.22.1"
+ "brace-expansion": "^2.0.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/@react-types/link": {
- "version": "3.5.3",
- "resolved": "https://registry.npmjs.org/@react-types/link/-/link-3.5.3.tgz",
- "integrity": "sha512-yVafjW3IejyVnK3oMBNjFABCGG6J27EUG8rvkaGaI1uB6srGUEhpJ97XLv11aj1QkXHBy3VGXqxEV3S7wn4HTw==",
- "dependencies": {
- "@react-types/shared": "^3.22.1"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "node_modules/@sentry/bundler-plugin-core/node_modules/minipass": {
+ "version": "4.2.8",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz",
+ "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==",
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/@react-types/listbox": {
- "version": "3.4.7",
- "resolved": "https://registry.npmjs.org/@react-types/listbox/-/listbox-3.4.7.tgz",
- "integrity": "sha512-68y5H9CVSPFiwO6MOFxTbry9JQMK/Lb1M9i3M8TDyq1AbJxBPpgAvJ9RaqIMCucsnqCzpY/zA3D/X417zByL1w==",
+ "node_modules/@sentry/cli": {
+ "version": "2.37.0",
+ "resolved": "https://registry.npmjs.org/@sentry/cli/-/cli-2.37.0.tgz",
+ "integrity": "sha512-fM3V4gZRJR/s8lafc3O07hhOYRnvkySdPkvL/0e0XW0r+xRwqIAgQ5ECbsZO16A5weUiXVSf03ztDL1FcmbJCQ==",
+ "hasInstallScript": true,
"dependencies": {
- "@react-types/shared": "^3.22.1"
+ "https-proxy-agent": "^5.0.0",
+ "node-fetch": "^2.6.7",
+ "progress": "^2.0.3",
+ "proxy-from-env": "^1.1.0",
+ "which": "^2.0.2"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "bin": {
+ "sentry-cli": "bin/sentry-cli"
+ },
+ "engines": {
+ "node": ">= 10"
+ },
+ "optionalDependencies": {
+ "@sentry/cli-darwin": "2.37.0",
+ "@sentry/cli-linux-arm": "2.37.0",
+ "@sentry/cli-linux-arm64": "2.37.0",
+ "@sentry/cli-linux-i686": "2.37.0",
+ "@sentry/cli-linux-x64": "2.37.0",
+ "@sentry/cli-win32-i686": "2.37.0",
+ "@sentry/cli-win32-x64": "2.37.0"
+ }
+ },
+ "node_modules/@sentry/cli-darwin": {
+ "version": "2.37.0",
+ "resolved": "https://registry.npmjs.org/@sentry/cli-darwin/-/cli-darwin-2.37.0.tgz",
+ "integrity": "sha512-CsusyMvO0eCPSN7H+sKHXS1pf637PWbS4rZak/7giz/z31/6qiXmeMlcL3f9lLZKtFPJmXVFO9uprn1wbBVF8A==",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@react-types/menu": {
- "version": "3.9.7",
- "resolved": "https://registry.npmjs.org/@react-types/menu/-/menu-3.9.7.tgz",
- "integrity": "sha512-K6KhloJVoGsqwkdeez72fkNI9dfrmLI/sNrB4XuOKo2crDQ/eyZYWyJmzz8giz/tHME9w774k487rVoefoFh5w==",
- "dependencies": {
- "@react-types/overlays": "^3.8.5",
- "@react-types/shared": "^3.22.1"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "node_modules/@sentry/cli-linux-arm": {
+ "version": "2.37.0",
+ "resolved": "https://registry.npmjs.org/@sentry/cli-linux-arm/-/cli-linux-arm-2.37.0.tgz",
+ "integrity": "sha512-Dz0qH4Yt+gGUgoVsqVt72oDj4VQynRF1QB1/Sr8g76Vbi+WxWZmUh0iFwivYVwWxdQGu/OQrE0tx946HToCRyA==",
+ "cpu": [
+ "arm"
+ ],
+ "optional": true,
+ "os": [
+ "linux",
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@react-types/meter": {
- "version": "3.3.7",
- "resolved": "https://registry.npmjs.org/@react-types/meter/-/meter-3.3.7.tgz",
- "integrity": "sha512-p+YJ0+Lpn5MLmlbFZbDH1P0ILv1+AuMcUbxLcXMIVMGn7o0FO7eVZnFuq76D+qTDm9all+TRLJix7bctOrP+5Q==",
- "dependencies": {
- "@react-types/progress": "^3.5.2"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "node_modules/@sentry/cli-linux-arm64": {
+ "version": "2.37.0",
+ "resolved": "https://registry.npmjs.org/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.37.0.tgz",
+ "integrity": "sha512-2vzUWHLZ3Ct5gpcIlfd/2Qsha+y9M8LXvbZE26VxzYrIkRoLAWcnClBv8m4XsHLMURYvz3J9QSZHMZHSO7kAzw==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux",
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@react-types/numberfield": {
- "version": "3.8.1",
- "resolved": "https://registry.npmjs.org/@react-types/numberfield/-/numberfield-3.8.1.tgz",
- "integrity": "sha512-GaCjLQgXUGCt40SLjKk3/COMWFlN2vV/3Xs3VSLAEdFZpk99b+Ik1oR21+7ZP5/iMHuQDc1MJRWdFfIjxCvVDQ==",
- "dependencies": {
- "@react-types/shared": "^3.22.1"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "node_modules/@sentry/cli-linux-i686": {
+ "version": "2.37.0",
+ "resolved": "https://registry.npmjs.org/@sentry/cli-linux-i686/-/cli-linux-i686-2.37.0.tgz",
+ "integrity": "sha512-MHRLGs4t/CQE1pG+mZBQixyWL6xDZfNalCjO8GMcTTbZFm44S3XRHfYJZNVCgdtnUP7b6OHGcu1v3SWE10LcwQ==",
+ "cpu": [
+ "x86",
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "linux",
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@react-types/overlays": {
- "version": "3.8.5",
- "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.8.5.tgz",
- "integrity": "sha512-4D7EEBQigD/m8hE68Ys8eloyyZFHHduqykSIgINJ0edmo0jygRbWlTwuhWFR9USgSP4dK54duN0Mvq0m4HEVEw==",
- "dependencies": {
- "@react-types/shared": "^3.22.1"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "node_modules/@sentry/cli-linux-x64": {
+ "version": "2.37.0",
+ "resolved": "https://registry.npmjs.org/@sentry/cli-linux-x64/-/cli-linux-x64-2.37.0.tgz",
+ "integrity": "sha512-k76ClefKZaDNJZU/H3mGeR8uAzAGPzDRG/A7grzKfBeyhP3JW09L7Nz9IQcSjCK+xr399qLhM2HFCaPWQ6dlMw==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux",
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@react-types/progress": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/@react-types/progress/-/progress-3.5.2.tgz",
- "integrity": "sha512-aQql22kusEudsHwDEzq6y/Mh29AM+ftRDKdS5E5g4MkCY5J4FMbOYco1T5So83NIvvG9+eKcxPoJUMjQQACAyA==",
- "dependencies": {
- "@react-types/shared": "^3.22.1"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "node_modules/@sentry/cli-win32-i686": {
+ "version": "2.37.0",
+ "resolved": "https://registry.npmjs.org/@sentry/cli-win32-i686/-/cli-win32-i686-2.37.0.tgz",
+ "integrity": "sha512-FFyi5RNYQQkEg4GkP2f3BJcgQn0F4fjFDMiWkjCkftNPXQG+HFUEtrGsWr6mnHPdFouwbYg3tEPUWNxAoypvTw==",
+ "cpu": [
+ "x86",
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@react-types/radio": {
- "version": "3.7.1",
- "resolved": "https://registry.npmjs.org/@react-types/radio/-/radio-3.7.1.tgz",
- "integrity": "sha512-Zut3rN1odIUBLZdijeyou+UqsLeRE76d9A+npykYGu29ndqmo3w4sLn8QeQcdj1IR71ZnG0pW2Y2BazhK5XrrQ==",
- "dependencies": {
- "@react-types/shared": "^3.22.1"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "node_modules/@sentry/cli-win32-x64": {
+ "version": "2.37.0",
+ "resolved": "https://registry.npmjs.org/@sentry/cli-win32-x64/-/cli-win32-x64-2.37.0.tgz",
+ "integrity": "sha512-nSMj4OcfQmyL+Tu/jWCJwhKCXFsCZW1MUk6wjjQlRt9SDLfgeapaMlK1ZvT1eZv5ZH6bj3qJfefwj4U8160uOA==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=10"
}
},
- "node_modules/@react-types/searchfield": {
- "version": "3.5.3",
- "resolved": "https://registry.npmjs.org/@react-types/searchfield/-/searchfield-3.5.3.tgz",
- "integrity": "sha512-gBfsT1WpY8UIb74yyYmnjiHpVasph2mdmGj9i8cGF2HUYwx5p+Fr85mtCGDph0uirvRoM5ExMp4snD+ueNAVCg==",
+ "node_modules/@sentry/cli/node_modules/agent-base": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
+ "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
"dependencies": {
- "@react-types/shared": "^3.22.1",
- "@react-types/textfield": "^3.9.1"
+ "debug": "4"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">= 6.0.0"
}
},
- "node_modules/@react-types/select": {
- "version": "3.9.2",
- "resolved": "https://registry.npmjs.org/@react-types/select/-/select-3.9.2.tgz",
- "integrity": "sha512-fGFrunednY3Pq/BBwVOf87Fsuyo/SlevL0wFIE9OOl2V5NXVaTY7/7RYA8hIOHPzmvsMbndy419BEudiNGhv4A==",
+ "node_modules/@sentry/cli/node_modules/https-proxy-agent": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
"dependencies": {
- "@react-types/shared": "^3.22.1"
+ "agent-base": "6",
+ "debug": "4"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
- }
- },
- "node_modules/@react-types/shared": {
- "version": "3.22.1",
- "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.22.1.tgz",
- "integrity": "sha512-PCpa+Vo6BKnRMuOEzy5zAZ3/H5tnQg1e80khMhK2xys0j6ZqzkgQC+fHMNZ7VDFNLqqNMj/o0eVeSBDh2POjkw==",
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">= 6"
}
},
- "node_modules/@react-types/slider": {
- "version": "3.7.1",
- "resolved": "https://registry.npmjs.org/@react-types/slider/-/slider-3.7.1.tgz",
- "integrity": "sha512-FKO3YZYdrBs00XbBW5acP+0L1cCdevl/uRJiXbnLpGysO5PrSFIRS7Wlv4M7ztf6gT7b1Ao4FNC9crbxBr6BzA==",
+ "node_modules/@sentry/core": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry/core/-/core-8.33.1.tgz",
+ "integrity": "sha512-3SS41suXLFzxL3OQvTMZ6q92ZapELVq2l2SoWlZopcamWhog2Ru0dp2vkunq97kFHb2TzKRTlFH4+4gbT8SJug==",
"dependencies": {
- "@react-types/shared": "^3.22.1"
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=14.18"
}
},
- "node_modules/@react-types/switch": {
- "version": "3.5.1",
- "resolved": "https://registry.npmjs.org/@react-types/switch/-/switch-3.5.1.tgz",
- "integrity": "sha512-2LFEKMGeufqyYmeN/5dtkDkCPG6x9O4eu6aaBaJmPGon7C/l3yiFEgRue6oCUYc1HixR7Qlp0sPxk0tQeWzrSg==",
+ "node_modules/@sentry/nextjs": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry/nextjs/-/nextjs-8.33.1.tgz",
+ "integrity": "sha512-XLUyib6bCv2iynKaoYIotVKzLsGc9lr6QI4ZV3/PstiiXKwtTm1TPdBfIlrDJMGIMxH7Z/DmkvJNSESV19Ui6Q==",
"dependencies": {
- "@react-types/shared": "^3.22.1"
+ "@opentelemetry/instrumentation-http": "0.53.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@rollup/plugin-commonjs": "26.0.1",
+ "@sentry-internal/browser-utils": "8.33.1",
+ "@sentry/core": "8.33.1",
+ "@sentry/node": "8.33.1",
+ "@sentry/opentelemetry": "8.33.1",
+ "@sentry/react": "8.33.1",
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1",
+ "@sentry/vercel-edge": "8.33.1",
+ "@sentry/webpack-plugin": "2.22.3",
+ "chalk": "3.0.0",
+ "resolve": "1.22.8",
+ "rollup": "3.29.5",
+ "stacktrace-parser": "^0.1.10"
+ },
+ "engines": {
+ "node": ">=14.18"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "next": "^13.2.0 || ^14.0 || ^15.0.0-rc.0",
+ "webpack": ">=5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "webpack": {
+ "optional": true
+ }
}
},
- "node_modules/@react-types/table": {
- "version": "3.9.3",
- "resolved": "https://registry.npmjs.org/@react-types/table/-/table-3.9.3.tgz",
- "integrity": "sha512-Hs/pMbxJdga2zBol4H5pV1FVIiRjCuSTXst6idJjkctanTexR4xkyrtBwl+rdLNoGwQ2pGii49vgklc5bFK7zA==",
+ "node_modules/@sentry/nextjs/node_modules/chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
"dependencies": {
- "@react-types/grid": "^3.2.4",
- "@react-types/shared": "^3.22.1"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=8"
}
},
- "node_modules/@react-types/tabs": {
- "version": "3.3.5",
- "resolved": "https://registry.npmjs.org/@react-types/tabs/-/tabs-3.3.5.tgz",
- "integrity": "sha512-6NTSZBOWekCtApdZrhu5tHhE/8q52oVohQN+J5T7shAXd6ZAtu8PABVR/nH4BWucc8FL0OUajRqunqzQMU13gA==",
+ "node_modules/@sentry/node": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry/node/-/node-8.33.1.tgz",
+ "integrity": "sha512-0Xmlrl5nU5Bx6YybaIfztyOIiIXW5X64vcK0u94Sg4uHcDO7YvEbhflKjp669ds2I6ZQ/czqxnaAY8gM6P2SCA==",
"dependencies": {
- "@react-types/shared": "^3.22.1"
+ "@opentelemetry/api": "^1.9.0",
+ "@opentelemetry/context-async-hooks": "^1.25.1",
+ "@opentelemetry/core": "^1.25.1",
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/instrumentation-amqplib": "^0.42.0",
+ "@opentelemetry/instrumentation-connect": "0.39.0",
+ "@opentelemetry/instrumentation-dataloader": "0.12.0",
+ "@opentelemetry/instrumentation-express": "0.42.0",
+ "@opentelemetry/instrumentation-fastify": "0.39.0",
+ "@opentelemetry/instrumentation-fs": "0.15.0",
+ "@opentelemetry/instrumentation-generic-pool": "0.39.0",
+ "@opentelemetry/instrumentation-graphql": "0.43.0",
+ "@opentelemetry/instrumentation-hapi": "0.41.0",
+ "@opentelemetry/instrumentation-http": "0.53.0",
+ "@opentelemetry/instrumentation-ioredis": "0.43.0",
+ "@opentelemetry/instrumentation-kafkajs": "0.3.0",
+ "@opentelemetry/instrumentation-koa": "0.43.0",
+ "@opentelemetry/instrumentation-lru-memoizer": "0.40.0",
+ "@opentelemetry/instrumentation-mongodb": "0.47.0",
+ "@opentelemetry/instrumentation-mongoose": "0.42.0",
+ "@opentelemetry/instrumentation-mysql": "0.41.0",
+ "@opentelemetry/instrumentation-mysql2": "0.41.0",
+ "@opentelemetry/instrumentation-nestjs-core": "0.40.0",
+ "@opentelemetry/instrumentation-pg": "0.44.0",
+ "@opentelemetry/instrumentation-redis-4": "0.42.0",
+ "@opentelemetry/instrumentation-undici": "0.6.0",
+ "@opentelemetry/resources": "^1.26.0",
+ "@opentelemetry/sdk-trace-base": "^1.26.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0",
+ "@prisma/instrumentation": "5.19.1",
+ "@sentry/core": "8.33.1",
+ "@sentry/opentelemetry": "8.33.1",
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1",
+ "import-in-the-middle": "^1.11.0"
},
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "engines": {
+ "node": ">=14.18"
}
},
- "node_modules/@react-types/textfield": {
- "version": "3.9.1",
- "resolved": "https://registry.npmjs.org/@react-types/textfield/-/textfield-3.9.1.tgz",
- "integrity": "sha512-JBHY9M2CkL6xFaGSfWmUJVu3tEK09FaeB1dU3IEh6P41xxbFnPakYHSSAdnwMXBtXPoSHIVsUBickW/pjgfe5g==",
+ "node_modules/@sentry/opentelemetry": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry/opentelemetry/-/opentelemetry-8.33.1.tgz",
+ "integrity": "sha512-D2aE2G0DUHLLnfbOXrTjiNJKAs/RZfOBJMidI4fC2AIwqCmrp55Aex4dRq4hxd8MPLR92Kt/ikHeJxlzWB15KA==",
"dependencies": {
- "@react-types/shared": "^3.22.1"
+ "@sentry/core": "8.33.1",
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1"
+ },
+ "engines": {
+ "node": ">=14.18"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "@opentelemetry/api": "^1.9.0",
+ "@opentelemetry/core": "^1.25.1",
+ "@opentelemetry/instrumentation": "^0.53.0",
+ "@opentelemetry/sdk-trace-base": "^1.26.0",
+ "@opentelemetry/semantic-conventions": "^1.27.0"
}
},
- "node_modules/@react-types/tooltip": {
- "version": "3.4.7",
- "resolved": "https://registry.npmjs.org/@react-types/tooltip/-/tooltip-3.4.7.tgz",
- "integrity": "sha512-rV4HZRQxLRNhe24yATOxnFQtGRUmsR7mqxMupXCmd1vrw8h+rdKlQv1zW2q8nALAKNmnRXZJHxYQ1SFzb98fgg==",
+ "node_modules/@sentry/react": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry/react/-/react-8.33.1.tgz",
+ "integrity": "sha512-SsEX05xfcfOvo7/pK1UyeyTAYWH8iSIsXXlsjvnSRsbuJkjb0c+q6yiZpj3A2PRdbcx43nTVE1n0lSpgaqj2HA==",
"dependencies": {
- "@react-types/overlays": "^3.8.5",
- "@react-types/shared": "^3.22.1"
+ "@sentry/browser": "8.33.1",
+ "@sentry/core": "8.33.1",
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1",
+ "hoist-non-react-statics": "^3.3.2"
+ },
+ "engines": {
+ "node": ">=14.18"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ "react": "^16.14.0 || 17.x || 18.x || 19.x"
}
},
- "node_modules/@release-it/conventional-changelog": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/@release-it/conventional-changelog/-/conventional-changelog-8.0.1.tgz",
- "integrity": "sha512-pwc9jaBYDaSX5TXw6rEnPfqDkKJN2sFBhYpON1kBi9T3sA9EOBncC4ed0Bv3L1ciNb6eqEJXPfp+tQMqVlv/eg==",
+ "node_modules/@sentry/types": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry/types/-/types-8.33.1.tgz",
+ "integrity": "sha512-GjoAMvwtpIemoF/IiwZ7A60g4nQv3qwzR21GvJqDVUoKD0e8pv9OLX+HyXoUat4wEDGSuDUcUyUKD2G+od73QA==",
+ "engines": {
+ "node": ">=14.18"
+ }
+ },
+ "node_modules/@sentry/utils": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-8.33.1.tgz",
+ "integrity": "sha512-uzuYpiiJuFY3N4WNHMBWUQX5oNv2t/TbG0OHRp3Rr7yeu+HSfD542TIp9/gMZ+G0Cxd8AmVO3wkKIFbk0TL4Qg==",
"dependencies": {
- "concat-stream": "^2.0.0",
- "conventional-changelog": "^5.1.0",
- "conventional-recommended-bump": "^9.0.0",
- "semver": "^7.5.4"
+ "@sentry/types": "8.33.1"
},
"engines": {
- "node": ">=18"
- },
- "peerDependencies": {
- "release-it": "^17.0.0"
+ "node": ">=14.18"
}
},
- "node_modules/@release-it/conventional-changelog/node_modules/lru-cache": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "node_modules/@sentry/vercel-edge": {
+ "version": "8.33.1",
+ "resolved": "https://registry.npmjs.org/@sentry/vercel-edge/-/vercel-edge-8.33.1.tgz",
+ "integrity": "sha512-YKAsFAm4ctsKRdoS3LkYF4oG5BD1chT4Uqy4AaBhlz0s5iHxBI7YzZFbcW4YiNnDWT80tdF+FS7AvUAjy+npoA==",
"dependencies": {
- "yallist": "^4.0.0"
+ "@sentry/core": "8.33.1",
+ "@sentry/types": "8.33.1",
+ "@sentry/utils": "8.33.1"
},
"engines": {
- "node": ">=10"
+ "node": ">=14.18"
}
},
- "node_modules/@release-it/conventional-changelog/node_modules/semver": {
- "version": "7.6.0",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
- "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
+ "node_modules/@sentry/webpack-plugin": {
+ "version": "2.22.3",
+ "resolved": "https://registry.npmjs.org/@sentry/webpack-plugin/-/webpack-plugin-2.22.3.tgz",
+ "integrity": "sha512-Sq1S6bL3nuoTP5typkj+HPjQ13dqftIE8kACAq4tKkXOpWO9bf6HtqcruEQCxMekbWDTdljsrknQ17ZBx2q66Q==",
"dependencies": {
- "lru-cache": "^6.0.0"
- },
- "bin": {
- "semver": "bin/semver.js"
+ "@sentry/bundler-plugin-core": "2.22.3",
+ "unplugin": "1.0.1",
+ "uuid": "^9.0.0"
},
"engines": {
- "node": ">=10"
+ "node": ">= 14"
+ },
+ "peerDependencies": {
+ "webpack": ">=4.40.0"
}
},
- "node_modules/@release-it/conventional-changelog/node_modules/yallist": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
- },
- "node_modules/@repeaterjs/repeater": {
- "version": "3.0.5",
- "resolved": "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.5.tgz",
- "integrity": "sha512-l3YHBLAol6d/IKnB9LhpD0cEZWAoe3eFKUyTYWmFmCO2Q/WOckxLQAUyMZWwZV2M/m3+4vgRoaolFqaII82/TA==",
- "dev": true
- },
- "node_modules/@rushstack/eslint-patch": {
- "version": "1.7.2",
- "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz",
- "integrity": "sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==",
- "dev": true
+ "node_modules/@sentry/webpack-plugin/node_modules/uuid": {
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
+ "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
+ "funding": [
+ "https://github.com/sponsors/broofa",
+ "https://github.com/sponsors/ctavan"
+ ],
+ "bin": {
+ "uuid": "dist/bin/uuid"
+ }
},
"node_modules/@shuding/opentype.js": {
"version": "1.4.0-beta.0",
@@ -7146,8 +8691,7 @@
"node_modules/@types/json-schema": {
"version": "7.0.15",
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
- "dev": true
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA=="
},
"node_modules/@types/json-stable-stringify": {
"version": "1.0.36",
@@ -7166,6 +8710,14 @@
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz",
"integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w=="
},
+ "node_modules/@types/mysql": {
+ "version": "2.15.26",
+ "resolved": "https://registry.npmjs.org/@types/mysql/-/mysql-2.15.26.tgz",
+ "integrity": "sha512-DSLCOXhkvfS5WNNPbfn2KdICAmk8lLc+/PNvnPnF7gOdMZCxopXduqv0OQ13y/yA/zXTSikZZqVgybUxOEg6YQ==",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
"node_modules/@types/node": {
"version": "20.11.28",
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.28.tgz",
@@ -7185,6 +8737,24 @@
"integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
"dev": true
},
+ "node_modules/@types/pg": {
+ "version": "8.6.1",
+ "resolved": "https://registry.npmjs.org/@types/pg/-/pg-8.6.1.tgz",
+ "integrity": "sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==",
+ "dependencies": {
+ "@types/node": "*",
+ "pg-protocol": "*",
+ "pg-types": "^2.2.0"
+ }
+ },
+ "node_modules/@types/pg-pool": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@types/pg-pool/-/pg-pool-2.0.6.tgz",
+ "integrity": "sha512-TaAUE5rq2VQYxab5Ts7WZhKNmuN78Q6PiFonTDdpbx8a1H0M1vhy3rhiMjl+e2iHmogyMw7jZF4FrE6eJUy5HQ==",
+ "dependencies": {
+ "@types/pg": "*"
+ }
+ },
"node_modules/@types/prop-types": {
"version": "15.7.11",
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz",
@@ -7248,6 +8818,11 @@
"@types/send": "*"
}
},
+ "node_modules/@types/shimmer": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@types/shimmer/-/shimmer-1.2.0.tgz",
+ "integrity": "sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg=="
+ },
"node_modules/@types/ws": {
"version": "8.5.10",
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz",
@@ -7673,6 +9248,152 @@
"resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
"integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="
},
+ "node_modules/@webassemblyjs/ast": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz",
+ "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/helper-numbers": "1.11.6",
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6"
+ }
+ },
+ "node_modules/@webassemblyjs/floating-point-hex-parser": {
+ "version": "1.11.6",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz",
+ "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==",
+ "peer": true
+ },
+ "node_modules/@webassemblyjs/helper-api-error": {
+ "version": "1.11.6",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz",
+ "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==",
+ "peer": true
+ },
+ "node_modules/@webassemblyjs/helper-buffer": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz",
+ "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==",
+ "peer": true
+ },
+ "node_modules/@webassemblyjs/helper-numbers": {
+ "version": "1.11.6",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz",
+ "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/floating-point-hex-parser": "1.11.6",
+ "@webassemblyjs/helper-api-error": "1.11.6",
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "node_modules/@webassemblyjs/helper-wasm-bytecode": {
+ "version": "1.11.6",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz",
+ "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==",
+ "peer": true
+ },
+ "node_modules/@webassemblyjs/helper-wasm-section": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz",
+ "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.12.1",
+ "@webassemblyjs/helper-buffer": "1.12.1",
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+ "@webassemblyjs/wasm-gen": "1.12.1"
+ }
+ },
+ "node_modules/@webassemblyjs/ieee754": {
+ "version": "1.11.6",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz",
+ "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==",
+ "peer": true,
+ "dependencies": {
+ "@xtuc/ieee754": "^1.2.0"
+ }
+ },
+ "node_modules/@webassemblyjs/leb128": {
+ "version": "1.11.6",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz",
+ "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==",
+ "peer": true,
+ "dependencies": {
+ "@xtuc/long": "4.2.2"
+ }
+ },
+ "node_modules/@webassemblyjs/utf8": {
+ "version": "1.11.6",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz",
+ "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==",
+ "peer": true
+ },
+ "node_modules/@webassemblyjs/wasm-edit": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz",
+ "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.12.1",
+ "@webassemblyjs/helper-buffer": "1.12.1",
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+ "@webassemblyjs/helper-wasm-section": "1.12.1",
+ "@webassemblyjs/wasm-gen": "1.12.1",
+ "@webassemblyjs/wasm-opt": "1.12.1",
+ "@webassemblyjs/wasm-parser": "1.12.1",
+ "@webassemblyjs/wast-printer": "1.12.1"
+ }
+ },
+ "node_modules/@webassemblyjs/wasm-gen": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz",
+ "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.12.1",
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+ "@webassemblyjs/ieee754": "1.11.6",
+ "@webassemblyjs/leb128": "1.11.6",
+ "@webassemblyjs/utf8": "1.11.6"
+ }
+ },
+ "node_modules/@webassemblyjs/wasm-opt": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz",
+ "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.12.1",
+ "@webassemblyjs/helper-buffer": "1.12.1",
+ "@webassemblyjs/wasm-gen": "1.12.1",
+ "@webassemblyjs/wasm-parser": "1.12.1"
+ }
+ },
+ "node_modules/@webassemblyjs/wasm-parser": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz",
+ "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.12.1",
+ "@webassemblyjs/helper-api-error": "1.11.6",
+ "@webassemblyjs/helper-wasm-bytecode": "1.11.6",
+ "@webassemblyjs/ieee754": "1.11.6",
+ "@webassemblyjs/leb128": "1.11.6",
+ "@webassemblyjs/utf8": "1.11.6"
+ }
+ },
+ "node_modules/@webassemblyjs/wast-printer": {
+ "version": "1.12.1",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz",
+ "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==",
+ "peer": true,
+ "dependencies": {
+ "@webassemblyjs/ast": "1.12.1",
+ "@xtuc/long": "4.2.2"
+ }
+ },
"node_modules/@whatwg-node/events": {
"version": "0.0.3",
"resolved": "https://registry.npmjs.org/@whatwg-node/events/-/events-0.0.3.tgz",
@@ -7705,11 +9426,22 @@
"tslib": "^2.3.1"
}
},
+ "node_modules/@xtuc/ieee754": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
+ "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
+ "peer": true
+ },
+ "node_modules/@xtuc/long": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
+ "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
+ "peer": true
+ },
"node_modules/acorn": {
"version": "8.11.3",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz",
"integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==",
- "dev": true,
"bin": {
"acorn": "bin/acorn"
},
@@ -7717,6 +9449,14 @@
"node": ">=0.4.0"
}
},
+ "node_modules/acorn-import-attributes": {
+ "version": "1.9.5",
+ "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz",
+ "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==",
+ "peerDependencies": {
+ "acorn": "^8"
+ }
+ },
"node_modules/acorn-jsx": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
@@ -7759,7 +9499,6 @@
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
- "dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -7771,6 +9510,15 @@
"url": "https://github.com/sponsors/epoberezkin"
}
},
+ "node_modules/ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "peer": true,
+ "peerDependencies": {
+ "ajv": "^6.9.1"
+ }
+ },
"node_modules/ansi-align": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
@@ -8797,6 +10545,15 @@
"node": ">= 6"
}
},
+ "node_modules/chrome-trace-event": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz",
+ "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==",
+ "peer": true,
+ "engines": {
+ "node": ">=6.0"
+ }
+ },
"node_modules/chrono-node": {
"version": "2.7.5",
"resolved": "https://registry.npmjs.org/chrono-node/-/chrono-node-2.7.5.tgz",
@@ -8822,6 +10579,11 @@
"node": ">=8"
}
},
+ "node_modules/cjs-module-lexer": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz",
+ "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA=="
+ },
"node_modules/clean-stack": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
@@ -9256,6 +11018,11 @@
"node": ">=4.0.0"
}
},
+ "node_modules/commondir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="
+ },
"node_modules/compare-func": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz",
@@ -9564,8 +11331,7 @@
"node_modules/convert-source-map": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
- "dev": true
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
},
"node_modules/cookie": {
"version": "0.5.0",
@@ -9691,6 +11457,93 @@
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
},
+ "node_modules/d3-array": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz",
+ "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==",
+ "dependencies": {
+ "internmap": "1 - 2"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/d3-color": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
+ "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/d3-format": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz",
+ "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/d3-interpolate": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
+ "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
+ "dependencies": {
+ "d3-color": "1 - 3"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/d3-scale": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
+ "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
+ "dependencies": {
+ "d3-array": "2.10.0 - 3",
+ "d3-format": "1 - 3",
+ "d3-interpolate": "1.2.0 - 3",
+ "d3-time": "2.1.1 - 3",
+ "d3-time-format": "2 - 4"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/d3-scale-chromatic": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz",
+ "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==",
+ "dependencies": {
+ "d3-color": "1 - 3",
+ "d3-interpolate": "1 - 3"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/d3-time": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
+ "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
+ "dependencies": {
+ "d3-array": "2 - 3"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/d3-time-format": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
+ "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
+ "dependencies": {
+ "d3-time": "1 - 3"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/damerau-levenshtein": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
@@ -9782,11 +11635,11 @@
"dev": true
},
"node_modules/debug": {
- "version": "4.3.4",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
- "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "version": "4.3.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
+ "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
"dependencies": {
- "ms": "2.1.2"
+ "ms": "^2.1.3"
},
"engines": {
"node": ">=6.0"
@@ -10119,7 +11972,6 @@
"version": "16.4.5",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz",
"integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==",
- "dev": true,
"engines": {
"node": ">=12"
},
@@ -10204,10 +12056,9 @@
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
},
"node_modules/enhanced-resolve": {
- "version": "5.16.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz",
- "integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==",
- "dev": true,
+ "version": "5.17.1",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz",
+ "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==",
"dependencies": {
"graceful-fs": "^4.2.4",
"tapable": "^2.2.0"
@@ -10359,6 +12210,12 @@
"node": ">= 0.4"
}
},
+ "node_modules/es-module-lexer": {
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz",
+ "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==",
+ "peer": true
+ },
"node_modules/es-object-atoms": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
@@ -10408,6 +12265,45 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/esbuild": {
+ "version": "0.24.2",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz",
+ "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==",
+ "hasInstallScript": true,
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.24.2",
+ "@esbuild/android-arm": "0.24.2",
+ "@esbuild/android-arm64": "0.24.2",
+ "@esbuild/android-x64": "0.24.2",
+ "@esbuild/darwin-arm64": "0.24.2",
+ "@esbuild/darwin-x64": "0.24.2",
+ "@esbuild/freebsd-arm64": "0.24.2",
+ "@esbuild/freebsd-x64": "0.24.2",
+ "@esbuild/linux-arm": "0.24.2",
+ "@esbuild/linux-arm64": "0.24.2",
+ "@esbuild/linux-ia32": "0.24.2",
+ "@esbuild/linux-loong64": "0.24.2",
+ "@esbuild/linux-mips64el": "0.24.2",
+ "@esbuild/linux-ppc64": "0.24.2",
+ "@esbuild/linux-riscv64": "0.24.2",
+ "@esbuild/linux-s390x": "0.24.2",
+ "@esbuild/linux-x64": "0.24.2",
+ "@esbuild/netbsd-arm64": "0.24.2",
+ "@esbuild/netbsd-x64": "0.24.2",
+ "@esbuild/openbsd-arm64": "0.24.2",
+ "@esbuild/openbsd-x64": "0.24.2",
+ "@esbuild/sunos-x64": "0.24.2",
+ "@esbuild/win32-arm64": "0.24.2",
+ "@esbuild/win32-ia32": "0.24.2",
+ "@esbuild/win32-x64": "0.24.2"
+ }
+ },
"node_modules/escalade": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz",
@@ -10971,7 +12867,6 @@
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
- "dev": true,
"dependencies": {
"estraverse": "^5.2.0"
},
@@ -11003,6 +12898,15 @@
"node": ">=0.10.0"
}
},
+ "node_modules/events": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
+ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
+ "peer": true,
+ "engines": {
+ "node": ">=0.8.x"
+ }
+ },
"node_modules/execa": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz",
@@ -11126,8 +13030,7 @@
"node_modules/fast-json-stable-stringify": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "dev": true
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
},
"node_modules/fast-levenshtein": {
"version": "2.0.6",
@@ -11294,7 +13197,6 @@
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
- "dev": true,
"dependencies": {
"locate-path": "^6.0.0",
"path-exists": "^4.0.0"
@@ -11473,7 +13375,6 @@
"version": "1.0.0-beta.2",
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "dev": true,
"engines": {
"node": ">=6.9.0"
}
@@ -11705,6 +13606,12 @@
"node": ">=10.13.0"
}
},
+ "node_modules/glob-to-regexp": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
+ "peer": true
+ },
"node_modules/glob/node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
@@ -11765,7 +13672,6 @@
"version": "11.12.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "dev": true,
"engines": {
"node": ">=4"
}
@@ -12112,6 +14018,14 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/hoist-non-react-statics": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
+ "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
+ "dependencies": {
+ "react-is": "^16.7.0"
+ }
+ },
"node_modules/holy-loader": {
"version": "2.2.10",
"resolved": "https://registry.npmjs.org/holy-loader/-/holy-loader-2.2.10.tgz",
@@ -12287,6 +14201,17 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/import-in-the-middle": {
+ "version": "1.11.2",
+ "resolved": "https://registry.npmjs.org/import-in-the-middle/-/import-in-the-middle-1.11.2.tgz",
+ "integrity": "sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==",
+ "dependencies": {
+ "acorn": "^8.8.2",
+ "acorn-import-attributes": "^1.9.5",
+ "cjs-module-lexer": "^1.2.2",
+ "module-details-from-path": "^1.0.3"
+ }
+ },
"node_modules/import-lazy": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz",
@@ -12381,6 +14306,14 @@
"node": ">= 0.4"
}
},
+ "node_modules/internmap": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
+ "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/interpret": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz",
@@ -12790,6 +14723,14 @@
"node": ">=8"
}
},
+ "node_modules/is-reference": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz",
+ "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==",
+ "dependencies": {
+ "@types/estree": "*"
+ }
+ },
"node_modules/is-regex": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
@@ -13095,6 +15036,35 @@
"@pkgjs/parseargs": "^0.11.0"
}
},
+ "node_modules/jest-worker": {
+ "version": "27.5.1",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
+ "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
+ "peer": true,
+ "dependencies": {
+ "@types/node": "*",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ }
+ },
+ "node_modules/jest-worker/node_modules/supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "peer": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
"node_modules/jiti": {
"version": "1.21.0",
"resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz",
@@ -13136,7 +15106,6 @@
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
"integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
- "dev": true,
"bin": {
"jsesc": "bin/jsesc"
},
@@ -13157,8 +15126,7 @@
"node_modules/json-schema-traverse": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
- "dev": true
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
},
"node_modules/json-stable-stringify": {
"version": "1.1.1",
@@ -13206,7 +15174,6 @@
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
- "dev": true,
"bin": {
"json5": "lib/cli.js"
},
@@ -13432,11 +15399,19 @@
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
+ "node_modules/loader-runner": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz",
+ "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==",
+ "peer": true,
+ "engines": {
+ "node": ">=6.11.5"
+ }
+ },
"node_modules/locate-path": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
- "dev": true,
"dependencies": {
"p-locate": "^5.0.0"
},
@@ -13630,7 +15605,6 @@
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
- "dev": true,
"dependencies": {
"yallist": "^3.0.2"
}
@@ -13654,6 +15628,14 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/magic-string": {
+ "version": "0.30.11",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz",
+ "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.0"
+ }
+ },
"node_modules/map-cache": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
@@ -13824,10 +15806,15 @@
"resolved": "https://registry.npmjs.org/modern-screenshot/-/modern-screenshot-4.4.38.tgz",
"integrity": "sha512-WeC3BuaJYjKvtXPSvSZRV5uvoJ4A1yrdb4mu1w5eLWkrONwD2mxYecRIJx3scf6/IwNl4zRh1SBrMibeJHMrYQ=="
},
+ "node_modules/module-details-from-path": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/module-details-from-path/-/module-details-from-path-1.0.3.tgz",
+ "integrity": "sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A=="
+ },
"node_modules/ms": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
},
"node_modules/mute-stream": {
"version": "0.0.8",
@@ -14436,12 +16423,13 @@
}
},
"node_modules/opub-ui": {
- "version": "0.3.31",
- "resolved": "https://registry.npmjs.org/opub-ui/-/opub-ui-0.3.31.tgz",
- "integrity": "sha512-5hIUqZesnj1/eV8iptokfYNCLjHGZNshqSxLtvNubY1KteaavtrUV1hvUxiUDcVPXAyfOBJ7ZmDnqN9X+YVi5A==",
+ "version": "0.3.86",
+ "resolved": "https://registry.npmjs.org/opub-ui/-/opub-ui-0.3.86.tgz",
+ "integrity": "sha512-MrEC3YxCM9ZThNk4B6xKvGWPmJ5GwCkQhUmY3sQorzw4lO2/ut7r0mxroJ04OSZsaPaansssfH35DHPboOseWA==",
"dependencies": {
"@ariakit/react": "^0.3.14",
"@hookform/resolvers": "^3.3.4",
+ "@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@internationalized/date": "^3.2.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.3",
@@ -14469,9 +16457,12 @@
"chrono-node": "^2.7.5",
"clsx": "^2.1.0",
"cmdk": "^0.2.0",
+ "d3-scale": "^4.0.2",
+ "d3-scale-chromatic": "^3.1.0",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
"embla-carousel-react": "8.0.0-rc15",
+ "esbuild": "^0.24.0",
"intl-segmenter-polyfill": "^0.4.4",
"leaflet": "^1.9.4",
"match-sorter": "^6.3.3",
@@ -14659,7 +16650,6 @@
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
"dependencies": {
"yocto-queue": "^0.1.0"
},
@@ -14674,7 +16664,6 @@
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
- "dev": true,
"dependencies": {
"p-limit": "^3.0.2"
},
@@ -14780,6 +16769,11 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/package-json-from-dist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw=="
+ },
"node_modules/package-json/node_modules/get-stream": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
@@ -14951,7 +16945,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true,
"engines": {
"node": ">=8"
}
@@ -14999,15 +16992,15 @@
}
},
"node_modules/path-scurry": {
- "version": "1.10.1",
- "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz",
- "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==",
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
"dependencies": {
- "lru-cache": "^9.1.1 || ^10.0.0",
+ "lru-cache": "^10.2.0",
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
},
"engines": {
- "node": ">=16 || 14 >=14.17"
+ "node": ">=16 || 14 >=14.18"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
@@ -15038,6 +17031,34 @@
"node": "*"
}
},
+ "node_modules/pg-int8": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz",
+ "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==",
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/pg-protocol": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.7.0.tgz",
+ "integrity": "sha512-hTK/mE36i8fDDhgDFjy6xNOG+LCorxLG3WO17tku+ij6sVHXh1jQUJ8hYAnRhNla4QVD2H8er/FOjc/+EgC6yQ=="
+ },
+ "node_modules/pg-types": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz",
+ "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==",
+ "dependencies": {
+ "pg-int8": "1.0.1",
+ "postgres-array": "~2.0.0",
+ "postgres-bytea": "~1.0.0",
+ "postgres-date": "~1.0.4",
+ "postgres-interval": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/picocolors": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
@@ -15230,6 +17251,41 @@
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
},
+ "node_modules/postgres-array": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz",
+ "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postgres-bytea": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz",
+ "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/postgres-date": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz",
+ "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/postgres-interval": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz",
+ "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==",
+ "dependencies": {
+ "xtend": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/preact": {
"version": "10.19.6",
"resolved": "https://registry.npmjs.org/preact/-/preact-10.19.6.tgz",
@@ -15263,7 +17319,6 @@
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz",
"integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==",
- "dev": true,
"bin": {
"prettier": "bin/prettier.cjs"
},
@@ -15352,6 +17407,14 @@
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-3.8.0.tgz",
"integrity": "sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew=="
},
+ "node_modules/progress": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
"node_modules/promise": {
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
@@ -15546,6 +17609,15 @@
"url": "https://opencollective.com/ramda"
}
},
+ "node_modules/randombytes": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
+ "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
+ "peer": true,
+ "dependencies": {
+ "safe-buffer": "^5.1.0"
+ }
+ },
"node_modules/rc": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
@@ -16565,6 +18637,19 @@
"node": ">=0.10.0"
}
},
+ "node_modules/require-in-the-middle": {
+ "version": "7.4.0",
+ "resolved": "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-7.4.0.tgz",
+ "integrity": "sha512-X34iHADNbNDfr6OTStIAHWSAvvKQRYgLO6duASaVf7J2VA3lvmNYboAHOuLC2huav1IwgZJtyEcJCKVzFxOSMQ==",
+ "dependencies": {
+ "debug": "^4.3.5",
+ "module-details-from-path": "^1.0.3",
+ "resolve": "^1.22.8"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
"node_modules/require-main-filename": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
@@ -16673,6 +18758,21 @@
"url": "https://github.com/sponsors/isaacs"
}
},
+ "node_modules/rollup": {
+ "version": "3.29.5",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz",
+ "integrity": "sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==",
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=14.18.0",
+ "npm": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.2"
+ }
+ },
"node_modules/run-applescript": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz",
@@ -16834,6 +18934,24 @@
"loose-envify": "^1.1.0"
}
},
+ "node_modules/schema-utils": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
+ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
+ "peer": true,
+ "dependencies": {
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
"node_modules/screenfull": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/screenfull/-/screenfull-6.0.2.tgz",
@@ -16855,7 +18973,6 @@
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "dev": true,
"bin": {
"semver": "bin/semver.js"
}
@@ -16915,6 +19032,15 @@
"upper-case-first": "^2.0.2"
}
},
+ "node_modules/serialize-javascript": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
+ "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
+ "peer": true,
+ "dependencies": {
+ "randombytes": "^2.1.0"
+ }
+ },
"node_modules/set-blocking": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
@@ -17078,6 +19204,11 @@
"node": ">=4"
}
},
+ "node_modules/shimmer": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/shimmer/-/shimmer-1.2.1.tgz",
+ "integrity": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw=="
+ },
"node_modules/side-channel": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz",
@@ -17217,6 +19348,16 @@
"node": ">=0.10.0"
}
},
+ "node_modules/source-map-support": {
+ "version": "0.5.21",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+ "peer": true,
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
"node_modules/spdx-correct": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
@@ -17267,6 +19408,25 @@
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz",
"integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA=="
},
+ "node_modules/stacktrace-parser": {
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz",
+ "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==",
+ "dependencies": {
+ "type-fest": "^0.7.1"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/stacktrace-parser/node_modules/type-fest": {
+ "version": "0.7.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz",
+ "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/stdin-discarder": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz",
@@ -17695,7 +19855,6 @@
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
"integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
- "dev": true,
"engines": {
"node": ">=6"
}
@@ -17708,6 +19867,64 @@
"memoizerific": "^1.11.3"
}
},
+ "node_modules/terser": {
+ "version": "5.34.1",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.34.1.tgz",
+ "integrity": "sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==",
+ "peer": true,
+ "dependencies": {
+ "@jridgewell/source-map": "^0.3.3",
+ "acorn": "^8.8.2",
+ "commander": "^2.20.0",
+ "source-map-support": "~0.5.20"
+ },
+ "bin": {
+ "terser": "bin/terser"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/terser-webpack-plugin": {
+ "version": "5.3.10",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz",
+ "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==",
+ "peer": true,
+ "dependencies": {
+ "@jridgewell/trace-mapping": "^0.3.20",
+ "jest-worker": "^27.4.5",
+ "schema-utils": "^3.1.1",
+ "serialize-javascript": "^6.0.1",
+ "terser": "^5.26.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependencies": {
+ "webpack": "^5.1.0"
+ },
+ "peerDependenciesMeta": {
+ "@swc/core": {
+ "optional": true
+ },
+ "esbuild": {
+ "optional": true
+ },
+ "uglify-js": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/terser/node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
+ "peer": true
+ },
"node_modules/text-extensions": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz",
@@ -17797,7 +20014,6 @@
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
"integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
- "dev": true,
"engines": {
"node": ">=4"
}
@@ -18137,6 +20353,17 @@
"node": ">=0.10.0"
}
},
+ "node_modules/unplugin": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.0.1.tgz",
+ "integrity": "sha512-aqrHaVBWW1JVKBHmGo33T5TxeL0qWzfvjWokObHA9bYmN7eNDkwOxmLjhioHl9878qDFMAaT51XNroRyuz7WxA==",
+ "dependencies": {
+ "acorn": "^8.8.1",
+ "chokidar": "^3.5.3",
+ "webpack-sources": "^3.2.3",
+ "webpack-virtual-modules": "^0.5.0"
+ }
+ },
"node_modules/update-browserslist-db": {
"version": "1.0.13",
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz",
@@ -18465,6 +20692,19 @@
"react-dom": "^16.8 || ^17.0 || ^18.0"
}
},
+ "node_modules/watchpack": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz",
+ "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==",
+ "peer": true,
+ "dependencies": {
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.1.2"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
"node_modules/wcwidth": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
@@ -18499,6 +20739,87 @@
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ=="
},
+ "node_modules/webpack": {
+ "version": "5.95.0",
+ "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.95.0.tgz",
+ "integrity": "sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==",
+ "peer": true,
+ "dependencies": {
+ "@types/estree": "^1.0.5",
+ "@webassemblyjs/ast": "^1.12.1",
+ "@webassemblyjs/wasm-edit": "^1.12.1",
+ "@webassemblyjs/wasm-parser": "^1.12.1",
+ "acorn": "^8.7.1",
+ "acorn-import-attributes": "^1.9.5",
+ "browserslist": "^4.21.10",
+ "chrome-trace-event": "^1.0.2",
+ "enhanced-resolve": "^5.17.1",
+ "es-module-lexer": "^1.2.1",
+ "eslint-scope": "5.1.1",
+ "events": "^3.2.0",
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.2.11",
+ "json-parse-even-better-errors": "^2.3.1",
+ "loader-runner": "^4.2.0",
+ "mime-types": "^2.1.27",
+ "neo-async": "^2.6.2",
+ "schema-utils": "^3.2.0",
+ "tapable": "^2.1.1",
+ "terser-webpack-plugin": "^5.3.10",
+ "watchpack": "^2.4.1",
+ "webpack-sources": "^3.2.3"
+ },
+ "bin": {
+ "webpack": "bin/webpack.js"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ },
+ "peerDependenciesMeta": {
+ "webpack-cli": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/webpack-sources": {
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
+ "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/webpack-virtual-modules": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz",
+ "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw=="
+ },
+ "node_modules/webpack/node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
+ "peer": true,
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/webpack/node_modules/estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "peer": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
"node_modules/whatwg-url": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
@@ -18832,6 +21153,14 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/xtend": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
+ "engines": {
+ "node": ">=0.4"
+ }
+ },
"node_modules/y18n": {
"version": "5.0.8",
"resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
@@ -18843,8 +21172,7 @@
"node_modules/yallist": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
- "dev": true
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
},
"node_modules/yaml": {
"version": "1.10.2",
@@ -18890,7 +21218,6 @@
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
"engines": {
"node": ">=10"
},
diff --git a/package.json b/package.json
index 3567650d..5be0db08 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
"version": "0.1.3",
"private": true,
"scripts": {
- "dev": "next dev",
+ "dev": "graphql-codegen --config ./config/codegen.ts && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
@@ -16,6 +16,7 @@
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@release-it/conventional-changelog": "^8.0.1",
+ "@sentry/nextjs": "^8.32.0",
"@t3-oss/env-nextjs": "^0.9.2",
"@tabler/icons-react": "^3.2.0",
"@tanstack/react-query": "^4.29.5",
@@ -34,7 +35,7 @@
"next-auth": "^4.24.7",
"next-intl": "^3.4.0",
"next-usequerystate": "^1.17.2",
- "opub-ui": "latest",
+ "opub-ui": "0.3.86",
"react": "^18.2.0",
"react-aria": "3.22.0",
"react-dom": "^18.2.0",
diff --git a/public/1org.png b/public/1org.png
new file mode 100644
index 00000000..68f83cf0
Binary files /dev/null and b/public/1org.png differ
diff --git a/public/1profile.png b/public/1profile.png
new file mode 100644
index 00000000..59b4a011
Binary files /dev/null and b/public/1profile.png differ
diff --git a/public/About/ca.png b/public/About/ca.png
new file mode 100644
index 00000000..0637167f
Binary files /dev/null and b/public/About/ca.png differ
diff --git a/public/About/dpg.png b/public/About/dpg.png
new file mode 100644
index 00000000..05526e23
Binary files /dev/null and b/public/About/dpg.png differ
diff --git a/public/About/l&j.png b/public/About/l&j.png
new file mode 100644
index 00000000..6f147416
Binary files /dev/null and b/public/About/l&j.png differ
diff --git a/public/About/oci.png b/public/About/oci.png
new file mode 100644
index 00000000..a8a9a358
Binary files /dev/null and b/public/About/oci.png differ
diff --git a/public/About/pf.png b/public/About/pf.png
new file mode 100644
index 00000000..983af707
Binary files /dev/null and b/public/About/pf.png differ
diff --git a/public/About/ud.png b/public/About/ud.png
new file mode 100644
index 00000000..7dfebca5
Binary files /dev/null and b/public/About/ud.png differ
diff --git a/public/SDG/SDG1.png b/public/SDG/SDG1.png
new file mode 100644
index 00000000..c11a735e
Binary files /dev/null and b/public/SDG/SDG1.png differ
diff --git a/public/SDG/SDG1.svg b/public/SDG/SDG1.svg
new file mode 100644
index 00000000..53f6f20b
--- /dev/null
+++ b/public/SDG/SDG1.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG10.png b/public/SDG/SDG10.png
new file mode 100644
index 00000000..a207cf7e
Binary files /dev/null and b/public/SDG/SDG10.png differ
diff --git a/public/SDG/SDG10.svg b/public/SDG/SDG10.svg
new file mode 100644
index 00000000..77c089bf
--- /dev/null
+++ b/public/SDG/SDG10.svg
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG11.png b/public/SDG/SDG11.png
new file mode 100644
index 00000000..df3ada65
Binary files /dev/null and b/public/SDG/SDG11.png differ
diff --git a/public/SDG/SDG11.svg b/public/SDG/SDG11.svg
new file mode 100644
index 00000000..706d12b2
--- /dev/null
+++ b/public/SDG/SDG11.svg
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG12.png b/public/SDG/SDG12.png
new file mode 100644
index 00000000..f16c606f
Binary files /dev/null and b/public/SDG/SDG12.png differ
diff --git a/public/SDG/SDG12.svg b/public/SDG/SDG12.svg
new file mode 100644
index 00000000..beae7c43
--- /dev/null
+++ b/public/SDG/SDG12.svg
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG13.png b/public/SDG/SDG13.png
new file mode 100644
index 00000000..b9ba486e
Binary files /dev/null and b/public/SDG/SDG13.png differ
diff --git a/public/SDG/SDG13.svg b/public/SDG/SDG13.svg
new file mode 100644
index 00000000..da3e9295
--- /dev/null
+++ b/public/SDG/SDG13.svg
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG14.png b/public/SDG/SDG14.png
new file mode 100644
index 00000000..76439e17
Binary files /dev/null and b/public/SDG/SDG14.png differ
diff --git a/public/SDG/SDG14.svg b/public/SDG/SDG14.svg
new file mode 100644
index 00000000..d0633e02
--- /dev/null
+++ b/public/SDG/SDG14.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG15.png b/public/SDG/SDG15.png
new file mode 100644
index 00000000..7147507d
Binary files /dev/null and b/public/SDG/SDG15.png differ
diff --git a/public/SDG/SDG15.svg b/public/SDG/SDG15.svg
new file mode 100644
index 00000000..e8662d50
--- /dev/null
+++ b/public/SDG/SDG15.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG16.png b/public/SDG/SDG16.png
new file mode 100644
index 00000000..f13df061
Binary files /dev/null and b/public/SDG/SDG16.png differ
diff --git a/public/SDG/SDG16.svg b/public/SDG/SDG16.svg
new file mode 100644
index 00000000..01481825
--- /dev/null
+++ b/public/SDG/SDG16.svg
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG17.png b/public/SDG/SDG17.png
new file mode 100644
index 00000000..acd9e370
Binary files /dev/null and b/public/SDG/SDG17.png differ
diff --git a/public/SDG/SDG17.svg b/public/SDG/SDG17.svg
new file mode 100644
index 00000000..45967ef6
--- /dev/null
+++ b/public/SDG/SDG17.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG2.png b/public/SDG/SDG2.png
new file mode 100644
index 00000000..f9ce0612
Binary files /dev/null and b/public/SDG/SDG2.png differ
diff --git a/public/SDG/SDG2.svg b/public/SDG/SDG2.svg
new file mode 100644
index 00000000..ac7c69ce
--- /dev/null
+++ b/public/SDG/SDG2.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG3.png b/public/SDG/SDG3.png
new file mode 100644
index 00000000..80abf280
Binary files /dev/null and b/public/SDG/SDG3.png differ
diff --git a/public/SDG/SDG3.svg b/public/SDG/SDG3.svg
new file mode 100644
index 00000000..dac0211b
--- /dev/null
+++ b/public/SDG/SDG3.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG4.png b/public/SDG/SDG4.png
new file mode 100644
index 00000000..2754b0a7
Binary files /dev/null and b/public/SDG/SDG4.png differ
diff --git a/public/SDG/SDG4.svg b/public/SDG/SDG4.svg
new file mode 100644
index 00000000..9c35e666
--- /dev/null
+++ b/public/SDG/SDG4.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG5.png b/public/SDG/SDG5.png
new file mode 100644
index 00000000..4b4fe60b
Binary files /dev/null and b/public/SDG/SDG5.png differ
diff --git a/public/SDG/SDG5.svg b/public/SDG/SDG5.svg
new file mode 100644
index 00000000..5157ca92
--- /dev/null
+++ b/public/SDG/SDG5.svg
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG6.png b/public/SDG/SDG6.png
new file mode 100644
index 00000000..d133c2d9
Binary files /dev/null and b/public/SDG/SDG6.png differ
diff --git a/public/SDG/SDG6.svg b/public/SDG/SDG6.svg
new file mode 100644
index 00000000..2909688d
--- /dev/null
+++ b/public/SDG/SDG6.svg
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG7.png b/public/SDG/SDG7.png
new file mode 100644
index 00000000..918fb3d0
Binary files /dev/null and b/public/SDG/SDG7.png differ
diff --git a/public/SDG/SDG7.svg b/public/SDG/SDG7.svg
new file mode 100644
index 00000000..9dbdf72f
--- /dev/null
+++ b/public/SDG/SDG7.svg
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG8.png b/public/SDG/SDG8.png
new file mode 100644
index 00000000..440d31d0
Binary files /dev/null and b/public/SDG/SDG8.png differ
diff --git a/public/SDG/SDG8.svg b/public/SDG/SDG8.svg
new file mode 100644
index 00000000..cd51fd1b
--- /dev/null
+++ b/public/SDG/SDG8.svg
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/SDG/SDG9.png b/public/SDG/SDG9.png
new file mode 100644
index 00000000..e232cbff
Binary files /dev/null and b/public/SDG/SDG9.png differ
diff --git a/public/SDG/SDG9.svg b/public/SDG/SDG9.svg
new file mode 100644
index 00000000..10c4ad13
--- /dev/null
+++ b/public/SDG/SDG9.svg
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/Sectors/Budgets.svg b/public/Sectors/Budgets.svg
new file mode 100644
index 00000000..c6f7dfbc
--- /dev/null
+++ b/public/Sectors/Budgets.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/public/Sectors/Child Rights.svg b/public/Sectors/Child Rights.svg
new file mode 100644
index 00000000..55ce6613
--- /dev/null
+++ b/public/Sectors/Child Rights.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/public/Sectors/Climate Finance.svg b/public/Sectors/Climate Finance.svg
new file mode 100644
index 00000000..b3b0521b
--- /dev/null
+++ b/public/Sectors/Climate Finance.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/public/Sectors/Disaster Risk Reduction.svg b/public/Sectors/Disaster Risk Reduction.svg
new file mode 100644
index 00000000..fda5e50d
--- /dev/null
+++ b/public/Sectors/Disaster Risk Reduction.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/public/Sectors/Law And Justice.svg b/public/Sectors/Law And Justice.svg
new file mode 100644
index 00000000..d3dc06da
--- /dev/null
+++ b/public/Sectors/Law And Justice.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/public/Sectors/Urban Development.svg b/public/Sectors/Urban Development.svg
new file mode 100644
index 00000000..49a1a7fc
--- /dev/null
+++ b/public/Sectors/Urban Development.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/public/Usecase_illustration.png b/public/Usecase_illustration.png
new file mode 100644
index 00000000..9d22f283
Binary files /dev/null and b/public/Usecase_illustration.png differ
diff --git a/public/about-us-illustration.svg b/public/about-us-illustration.svg
new file mode 100644
index 00000000..bb22404f
--- /dev/null
+++ b/public/about-us-illustration.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/public/c1.png b/public/c1.png
new file mode 100644
index 00000000..cc0ec9aa
Binary files /dev/null and b/public/c1.png differ
diff --git a/public/fallback.svg b/public/fallback.svg
new file mode 100644
index 00000000..2e7bc807
--- /dev/null
+++ b/public/fallback.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/globe.gif b/public/globe.gif
new file mode 100644
index 00000000..a963d67c
Binary files /dev/null and b/public/globe.gif differ
diff --git a/public/globe_logo.png b/public/globe_logo.png
new file mode 100644
index 00000000..65938cf5
Binary files /dev/null and b/public/globe_logo.png differ
diff --git a/public/homepage_illustration.png b/public/homepage_illustration.png
new file mode 100644
index 00000000..acf6500e
Binary files /dev/null and b/public/homepage_illustration.png differ
diff --git a/public/logo.png b/public/logo.png
new file mode 100644
index 00000000..b4d60561
Binary files /dev/null and b/public/logo.png differ
diff --git a/public/org.png b/public/org.png
new file mode 100644
index 00000000..12206157
Binary files /dev/null and b/public/org.png differ
diff --git a/public/profile.png b/public/profile.png
new file mode 100644
index 00000000..982d10b4
Binary files /dev/null and b/public/profile.png differ
diff --git a/public/s1.png b/public/s1.png
new file mode 100644
index 00000000..da1d1b44
Binary files /dev/null and b/public/s1.png differ
diff --git a/public/s2.png b/public/s2.png
new file mode 100644
index 00000000..a5f0941e
Binary files /dev/null and b/public/s2.png differ
diff --git a/public/s3.png b/public/s3.png
new file mode 100644
index 00000000..fad77930
Binary files /dev/null and b/public/s3.png differ
diff --git a/public/s4.png b/public/s4.png
new file mode 100644
index 00000000..547e07ff
Binary files /dev/null and b/public/s4.png differ
diff --git a/sentry.client.config.ts b/sentry.client.config.ts
new file mode 100644
index 00000000..64db0b39
--- /dev/null
+++ b/sentry.client.config.ts
@@ -0,0 +1,18 @@
+// This file configures the initialization of Sentry on the client.
+// The config you add here will be used whenever a users loads a page in their browser.
+// https://docs.sentry.io/platforms/javascript/guides/nextjs/
+
+import * as Sentry from '@sentry/nextjs';
+
+Sentry.init({
+ dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_URL,
+
+ // Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
+ tracesSampleRate: 1,
+
+ // The 'tunnel' option allows you to route browser requests to Sentry through a specified Next.js route. This can help circumvent ad-blockers that may prevent Sentry from capturing errors and performance data.
+ tunnel: '/api/sentry-monitoring',
+
+ // Setting this option to true will print useful information to the console while you're setting up Sentry.
+ debug: false,
+});
diff --git a/sentry.edge.config.ts b/sentry.edge.config.ts
new file mode 100644
index 00000000..2f4fa69f
--- /dev/null
+++ b/sentry.edge.config.ts
@@ -0,0 +1,16 @@
+// This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
+// The config you add here will be used whenever one of the edge features is loaded.
+// Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
+// https://docs.sentry.io/platforms/javascript/guides/nextjs/
+
+import * as Sentry from "@sentry/nextjs";
+
+Sentry.init({
+ dsn: process.env.SENTRY_DSN_URL,
+
+ // Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
+ tracesSampleRate: 1,
+
+ // Setting this option to true will print useful information to the console while you're setting up Sentry.
+ debug: false,
+});
diff --git a/sentry.server.config.ts b/sentry.server.config.ts
new file mode 100644
index 00000000..2e2c6195
--- /dev/null
+++ b/sentry.server.config.ts
@@ -0,0 +1,15 @@
+// This file configures the initialization of Sentry on the server.
+// The config you add here will be used whenever the server handles a request.
+// https://docs.sentry.io/platforms/javascript/guides/nextjs/
+
+import * as Sentry from "@sentry/nextjs";
+
+Sentry.init({
+ dsn: process.env.SENTRY_DSN_URL,
+
+ // Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
+ tracesSampleRate: 1,
+
+ // Setting this option to true will print useful information to the console while you're setting up Sentry.
+ debug: false,
+});
diff --git a/styles/globals.css b/styles/globals.css
index a08a4dec..b814ef5e 100644
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -5,6 +5,3 @@
@import url('opub-ui/dist/assets/styles.css');
@import url('./tokens/_variables.css');
-body {
- background-color: var(--background-solid-subdued);
-}
diff --git a/styles/tokens/_variables.css b/styles/tokens/_variables.css
index 47a86abe..5eb5c441 100644
--- a/styles/tokens/_variables.css
+++ b/styles/tokens/_variables.css
@@ -85,6 +85,13 @@
--base-amber-solid-12: #4e2009;
--base-pure-white: #ffffff;
--base-pure-black: #000000;
+ --blue-primary-color: #1f5f8d;
+ --orange-secondary-color: #fdb557;
+ --blue-primary-text: #194C71;
+ --orange-secondary-text: #b17f3d;
+ --accent-tertiary-color: #84dccf;
+ --grey-extralight: #eeeeee;
+ --white: #ffffff;
--text-default: var(--base-gray-slate-solid-12);
--text-medium: var(--base-gray-slate-solid-11);
--text-subdued: #3e4346;
@@ -113,15 +120,16 @@
--border-interactive-default: var(--base-blue-solid-8);
--border-interactive-focused: var(--base-blue-solid-7);
--icon-default: var(--base-gray-slate-solid-11);
+ --icon-inherit: var(--accent-tertiary-color);
--icon-subdued: var(--base-gray-slate-solid-10);
--icon-disabled: var(--base-gray-slate-solid-9);
--icon-critical: var(--base-red-solid-10);
- --action-primary-basic-default: var(--base-violet-solid-9);
- --icon-warning: var(--base-amber-solid-10);
- --action-primary-basic-hovered: var(--base-violet-solid-10);
+ --action-primary-basic-default: var(--orange-secondary-color);
+ --icon-warning: var(--orange-secondary-text);
+ --action-primary-basic-hovered: var(--orange-secondary-color);
--icon-success: var(--base-green-solid-10);
--icon-highlight: var(--base-violet-solid-10);
- --action-primary-basic-pressed: var(--base-violet-solid-11);
+ --action-primary-basic-pressed: var(--orange-secondary-color);
--action-primary-basic-depressed: var(--base-violet-solid-12);
--icon-interactive: var(--base-indigo-solid-10);
--icon-onbg-default: var(--base-gray-slate-solid-1);
@@ -303,7 +311,7 @@
--border-width-1: var(--space-025);
--border-width-2: var(--space-05);
--border-width-4: var(--space-1);
-
+ --shadow-card: 0px 0px 12px 0px rgba(0, 0, 0, 0.16);
--shadow-modal: 0px 26px 80px 0px rgba(0, 0, 0, 0.2),
0px 0px 1px 0px rgba(0, 0, 0, 0.2);
--shadow-layer: 0px 31px 41px 0px rgba(32, 42, 53, 0.2),
diff --git a/styles/tokens/tailwind/box-shadow.js b/styles/tokens/tailwind/box-shadow.js
index 4d5bb204..d4a4b985 100644
--- a/styles/tokens/tailwind/box-shadow.js
+++ b/styles/tokens/tailwind/box-shadow.js
@@ -18,4 +18,5 @@ module.exports = {
elementCard: 'var(--shadow-element-card)',
elementTopNav: 'var(--shadow-element-topnav)',
elementFocus: 'var(--shadow-element-focus)',
+ card: 'var(--shadow-card)',
};
diff --git a/styles/tokens/tailwind/color.js b/styles/tokens/tailwind/color.js
index 6fc08fe1..5267a97f 100644
--- a/styles/tokens/tailwind/color.js
+++ b/styles/tokens/tailwind/color.js
@@ -273,4 +273,11 @@ module.exports = {
borderFocus: '#FFFFFF03',
transparent: '#FFFFFF00',
borderOnBGSubdued: 'var(--base-gray-slate-solid-11)',
+ primaryBlue: 'var(--blue-primary-color)',
+ secondaryOrange: 'var(--orange-secondary-color)',
+ greyExtralight: 'var(--grey-extralight)',
+ white: 'var(--white)',
+ tertiaryAccent: 'var(--accent-tertiary-color)',
+ primaryText: 'var(--blue-primary-text)',
+ secondaryText: 'var(--orange-secondary-text)',
};