Getting Started with datagovindia

library(datagovindia)

datagovindia is a wrapper around >80,000 APIS of the Government of India’s open data platform data.gov.in. Here is a small guide to take you thorugh the package. Primarily,the functionality is centered around three aspects :

API Discovery

The APIs from the portal are scraped every week to update a list of all APIs and the information attached to them like sector, source, field names etc. The website data.gov.in provides a search functionality through string searches and drop down menus but these are very limited. The functions in this package allows one to have more robust string based searches.
A user can search by API title, description, organization type, organization (ministry), sector and sources. Briefly there are two types of functions here, the first lets the user get a list of all available and unique organization type, organization (ministry), sector and sources and the other lets one “search” by these criteria and more.

Here is a demonstration of the former (getting only the first few values)

###List of organizations (or ministries)
get_list_of_organizations() %>% 
  head
#> [1] "Ministry of Environment and Forests"             
#> [2] "Central Pollution Control Board"                 
#> [3] "Ministry of Home Affairs"                        
#> [4] "Department of Home"                              
#> [5] "Registrar General and Census Commissioner, India"
#> [6] "Ministry of Agriculture and Farmers Welfare"
###List of sectors 
get_list_of_sectors() %>% 
  head
#> [1] "Industrial Air Pollution" "Census and Surveys"      
#> [3] "Census"                   "Statistics"              
#> [5] "Agriculture"              "Agricultural Marketing"

Searching for the right API

Once you have an idea about what you want to look for in the API, search queries can be constructed using titles, descriptions as well as the categories explored earlier.

search_api_by_title(title_contains = "agri")
#>                                index_name
#> 1    2962ee1b-4554-4c38-a8a7-953ecfeeb438
#> 2    7acc437f-f8e3-4ecf-a0a8-d21201c6411c
#> 3    7ae2a63d-8a6d-45eb-a5bb-f8c24cfa84df
#> 4    6b9dd8cd-0ff3-40ac-9b15-eacfd51e378a
#> 5    d6faf37c-13f3-4d9c-b06f-49e97ed9348e
#> 6    6975c75f-7f59-472d-8d24-648698414930
#> 7    c67dc8d1-42ce-40a7-94bc-248e74a2225d
#> 8    46ccdcc9-e126-44a7-b217-d69b54985314
#> 9    7c46b241-eb72-45c3-a6bc-ac780cae7b58
#> 10   8998159e-4035-4947-8995-0035d8532fb8
#> 11   ef1ffff8-349f-48a9-b33f-536115b1fb75
#> 12   023ae153-9032-4f63-b47a-bd322f737549
#> 13   b63dca18-faf4-4615-8536-67c2eb95cb19
#> 14   346e76a4-942f-48cf-a8b1-0f6222509e9d
#> 15   58676dc3-ba0f-4af3-b694-afd96599f6d6
#> 16   55fcabf8-9a89-4042-83d4-bc027d6aa0a9
#> 17   4fd92ea7-6c61-438c-a9b0-c4a1350610f6
#> 18   6e8e9a24-491d-4bcb-bdf4-bb0724cbb926
#> 19   986b4cf2-3b4d-498d-a032-05888f9d7576
#> 20   cd9b8954-8c1f-4c4b-8fae-64fc5e15eb05
#> 21   a8222b78-f4fa-46e1-bb0b-6e77087d385c
#> 22   54bf8b19-235f-48b8-9c84-afb0db33a6af
#> 23   1e6229c7-6a4e-4c85-905d-a0fdee806db6
#> 24   01e81a27-d8dc-434a-a8d4-aea379f5f6b7
#> 25   5149ea99-b6b3-4014-b5cb-682a93d27b93
#> 26   c1663fcc-044a-4f3e-ab60-cebb6f78c6d6
#> 27   c2cb3e78-f2f0-4667-8dee-f6d7fda36b58
#> 28   ad21d298-7349-42ac-9845-c7f11f8898c5
#> 29   7f0a48c9-118a-4cf8-9822-bd2ad27b9c40
#> 30   6915c332-ea80-452f-b3c0-9f9734fb7512
#> 31   a50f3ed5-3cd6-4187-ac9d-8230101b6c04
#> 32   641fe551-afdc-45ce-aed6-e98e64ddad9d
#> 33   72fd31fb-1c5e-41f3-94ac-a161d3491025
#> 34   4a376531-24f3-483d-a8f8-b337b919eaf9
#> 35   d054e9b8-4473-45a8-a936-6ad593d6353e
#> 36   b940367f-b0fa-4030-866c-39ad3cda61cc
#> 37   65bba362-448f-4ffe-b3fa-12e69e3dc3f4
#> 38   f5b181db-cc96-42a0-9d8e-8e77635b78e5
#> 39   7a2eb5ed-d382-4bd7-b9cb-f0e7a16370e4
#> 40   e1d9c037-81cf-47d5-9ac7-b5bdf0fab9c9
#> 41   fd680ba3-798f-43cc-b0d3-c92090126858
#> 42   7189d008-97de-4733-9a66-1838fb66b66c
#> 43   eda1d47c-2e76-4a2c-83fa-c9702f9b4674
#> 44   d3bac64f-9961-432a-934f-f822f839f67e
#> 45   481e8d68-3b9b-403b-a184-36101f4e6665
#> 46   e216a9ae-bef7-4a5a-bb36-b30b77d61316
#> 47   1f8298c0-5883-4f25-9532-68813d2c6172
#> 48   bb6c6f16-5853-44fd-943f-a37e18183fec
#> 49   4225eafc-c07b-44f6-9a0c-ae7a48598caf
#> 50   ec9a82af-9af4-4ae4-a20d-094bbed59947
#> 51   b4f2e2db-9eec-470b-8458-741905d3e78e
#> 52   dde69844-23af-4ed5-b9bc-e83457991ef7
#> 53   0ae05c37-9583-4822-87c8-5ed963324f59
#> 54   e09dcdbb-8a96-4e43-975f-ee1c5aff4f76
#> 55   036a06aa-8e7a-49bf-ab88-bfaaa080bfa6
#> 56   5b767517-72bf-429b-accf-d5409576ac52
#> 57   b4921b86-07f5-49f9-b856-cd7010c7c89b
#> 58   8ba13fe6-fe93-4f73-8e77-476d69d4b849
#> 59   e60468da-89e1-4da2-852a-960096e3f552
#> 60   7c1b5f69-f8b6-4290-ba33-68509e50306c
#> 61   8a4922f9-5a3d-4a82-b348-3adefc59a6f5
#> 62   fb8c7998-20d2-482b-9b75-f8f89dd10a73
#> 63   6f0b579b-8f63-4056-8159-6e62674bfb65
#> 64   1dc4331f-0573-422c-9235-56b34751c5ba
#> 65   d7215e89-edc3-41ca-83bb-ce6fcc2be65a
#> 66   d1293145-579f-46ab-82ca-b95c7eb9c249
#> 67   3680f592-73fd-42ca-8ef6-a109facff172
#> 68   6895ed8e-4f1e-45e9-8c40-e64975eb9d1d
#> 69   050bffab-56e3-42bf-9210-3475aaeeca6b
#> 70   244a1310-db86-422f-b987-bea0504bc177
#> 71   1dbc541e-b7eb-4a7f-9ca0-a4c2feebb981
#> 72   83d24b62-48fe-435a-aca0-a455347450ba
#> 73   77bea41b-2976-4544-be43-16cb6b1d4132
#> 74   d8573f7c-6fc1-4b24-bca7-5fc826331343
#> 75   f05338e5-ea28-41a9-b334-fb31189addf2
#> 76   b3ea8f89-a9d7-4424-9f99-3efaabea0dfb
#> 77   13c938a6-0547-4220-8827-d57fd1f6334c
#> 78   6f222f0d-23e0-464e-88d0-3653aa98efb9
#> 79   5d7aba71-271e-40ed-8494-b1ec8d3663ed
#> 80   4e395189-1bf2-4e29-80a9-24ff543f6273
#> 81   a238905f-4a3d-4b9b-bf8d-c4919f3cea32
#> 82   9fdbbd20-f2ac-4243-b60e-f80e75710b9d
#> 83   1600cd83-0f10-4972-a0a2-0f7b2697ebeb
#> 84   91c4224b-b8e5-4aa6-b144-dd1437bca459
#> 85   c2e621d9-3cb7-4fc8-ab4e-adeb063a2043
#> 86   3e956ae7-6e17-4593-b48e-0e7cb6523bb6
#> 87   034880db-5050-413f-b6e3-0ce716b187ac
#> 88   60c8ae15-28dd-4945-b09f-b8d56539f075
#> 89   8a3bbdba-3edf-4aec-9449-580e13a3d989
#> 90   13a5aaf6-7cb5-4028-ab92-fc1be06e01e5
#> 91   86456d84-87e7-4be1-bd24-9edca0cb890c
#> 92   7aeb692b-8051-4b02-a257-5ecce5f98156
#> 93   44b31a01-cf11-4cdf-915a-b895c01eb91e
#> 94   3ba88b5a-b4ba-4378-892f-62d13223ddad
#> 95   513073c6-59b6-4f23-96f6-e1992b7a1c19
#> 96   55ffc89f-3d25-46f7-ad48-f897b78c7b98
#> 97   012a2eaa-79a9-4138-a4a4-2a2dc691677a
#> 98   36f08d16-8b71-4728-a5f9-c1b8724a670d
#> 99   a956e125-9826-48a1-8010-3c47a1ac3301
#> 100  ce4f7c5b-dcf7-4990-abfe-6785661b5307
#> 101  e3772d48-41fa-4a86-a676-c12ba72d308c
#> 102  1410396a-c70b-4de9-a3fe-2567ee2a7593
#> 103  5093f1e2-83ba-4181-a2d4-649972952a89
#> 104  92ee7e97-5482-4281-adc0-5c140d8d7f5c
#> 105  e599297a-4884-4c89-b039-be35ca24808f
#> 106  bf65e198-1455-4f61-8763-302a1daefaeb
#> 107  7b92eef1-3f4d-47aa-b702-c72ae067c052
#> 108  0ae41cd2-5f93-4f64-b1bf-32bb0adb589f
#> 109  64dcf9ed-3e57-4b2c-8124-6c280d7b1631
#> 110  13377a75-5749-476a-aefc-416e5cf2546c
#> 111  3fe375e5-227d-4b35-9384-f72c097752b1
#> 112  d706fb5b-218d-4cfd-a2d9-978ddd091349
#> 113  0e3b63f5-991b-4218-aa7f-459a490c01f5
#> 114  8186ad65-e0d5-4230-b542-c0e05f6ad2e3
#> 115  bce1b34d-f2dc-4620-984a-ff3449818c50
#> 116  f6b12142-11bd-4aa2-b172-c814293f97aa
#> 117  370fca0b-5f1a-4f90-9dfd-2b858c0318e0
#> 118  39f4d578-bf86-4c7e-96e3-0d935399892d
#> 119  1d38122d-0d20-444c-b2a9-71114439a629
#> 120  47920781-4f5a-4659-87d4-f3d51d91b21a
#> 121  75148cc3-afb7-4265-aa80-7a415892cd5e
#> 122  6037f7a3-b059-4e0d-a735-59c34fa362a2
#> 123  d0fe365c-3339-4c40-a3bf-f2115e96c919
#> 124  4b310337-b660-42af-8546-6137b0634fd5
#> 125  507e3b92-f71b-4d92-ba11-61f2bd0b5c38
#> 126  fea09558-8f5a-4c20-a5c4-473d35c69379
#> 127  bf60e7f4-0e15-4fd6-984b-9e6c2dc909de
#> 128  0ca728aa-7187-4cdd-8d25-83e6c56d7bf4
#> 129  070e9ebe-197a-4d85-9725-22f8e8a39417
#> 130  19f036c3-76b3-49b8-83ba-f1930d0549ef
#> 131  26901b8c-76d2-4a80-b673-0ecfcc23cc63
#> 132  fd0150f6-dfef-4077-9fb7-b94501c06410
#> 133  78127339-07fa-4407-9eba-b4cc359f16ca
#> 134  dcae32a1-6735-45fe-a87a-aa07c60cd18b
#> 135  2434c7c4-e29d-4f90-8704-818109f2ad5a
#> 136  bc3da468-af21-4ca1-947f-9e6c22cb53b4
#> 137  b640677d-459a-41ee-9882-044c2a27170d
#> 138  37082e79-349c-4b0a-985e-80174306bc79
#> 139  b13fd900-fe68-42d0-a44e-959c5e883dbd
#> 140  85faac29-0903-4005-974d-6220408e8d80
#> 141  23cbbb2a-be4c-44a8-b453-60e7eb8bb070
#> 142  3c7c93bc-d79d-449e-b35e-4962078382a2
#> 143  2020df49-548f-426d-ac1b-420e0bdcf4a2
#> 144  f059efed-9bc9-4c01-91f4-b2ab0ae69b1a
#> 145  6a5586e8-7ccd-4da5-8fae-567ee57cd9e0
#> 146  1ea1e605-1040-491e-8808-8687f0188d7a
#> 147  5a0ef444-b96e-44a0-a447-31aab8fafde8
#> 148  41d7ac7a-1c5c-4862-ad25-d4415b08793f
#> 149  726aa9d1-06dd-45e2-9f11-72ca1d2e20f7
#> 150  72149acd-46c0-49bf-ace0-d97df36809bb
#> 151  20516462-c68c-41fe-931a-5086cc2b3dec
#> 152  f9ca2413-9f1d-4d33-94e3-a22418eb2775
#> 153  1ca62453-5576-4fb1-bff8-e0c5ccd9fba8
#> 154  76091a3b-4607-4406-bef1-4a3589d9ac2e
#> 155  6ed8d6cf-1776-45c2-a51f-636c0f33abf2
#> 156  42d9ea0f-5f7f-4de8-a5f2-b1636429e8e9
#> 157  c7b7240c-a44d-46c4-bc82-b5931b57a4d1
#> 158  f46d69a8-f670-40e3-932a-3ea76c121277
#> 159  11f79fd1-1cfb-4661-a018-bcc18b38c407
#> 160  98e8f44b-a320-4c49-b08c-bb5a54c88b3a
#> 161  76a9d831-cb7c-4d9b-8afe-8c9765cdcac4
#> 162  6bbac8e4-c01d-458f-9e5f-47dcfae65c7a
#> 163  8fa8eba6-5909-4457-bf6c-a9d1f942feed
#> 164  3ee55ce0-9445-4f29-8cf9-cf5f963854a5
#> 165  cf51b43a-a715-45b1-a80f-1525c7a2c344
#> 166  8fdacc7c-152f-423d-a00a-034de5dbdb17
#> 167  8bad13ae-1454-4377-9af8-e91bc29b6725
#> 168  01c6624d-4ca6-4802-a02b-9fb480754235
#> 169  f4ab6948-37c2-4af2-8659-8f8fdcc3da84
#> 170  9d89281d-cc1e-4abf-ac90-23aece9fb117
#> 171  56ab821a-08d9-48c1-8140-8e4617801b43
#> 172  c769a8e2-1fd2-4dbe-be53-33350601c9cd
#> 173  ce05c7e7-eb59-471e-8193-8867f0438b4b
#> 174  3b92f681-08e9-400c-83c9-9963f32afdf7
#> 175  cdbc4a8d-7cf5-4ea9-8794-e0d9264af6f8
#> 176  bbffcdbf-d510-4699-a6a4-4b66f8f45e21
#> 177  557d0508-993b-47a8-be02-5a0d301d0fe3
#> 178  8eae93b2-72fc-43d2-b485-e542ca8252ba
#> 179  953dd599-b1cc-47a7-b48a-20ddd870bf12
#> 180  58185053-832b-4a0e-99e0-3b8cd4a76c3e
#> 181  81737482-fd5b-4b8e-8fe1-a3c99a7653ba
#> 182  e53f4cde-33ac-4417-9cd2-1e818a614bf5
#> 183  e748e98d-9f13-4f51-9f55-d44902c0a0a3
#> 184  f844a323-70d0-438c-afb3-188adb9957f2
#> 185  e37be06f-5524-4f88-a833-6cd9f0f3b114
#> 186  0eaa0940-1867-4d67-a85f-109627b81cea
#> 187  53f37e68-20da-4313-b540-cb3f8aa9d657
#> 188  bf746fec-7113-4199-b568-03fa2bbc67aa
#> 189  f8dce17e-7413-4a00-908a-1a392d985ebb
#> 190  7462ad8d-7cb3-4770-a25e-5657e51a72a7
#> 191  68585a75-50b5-4f8c-a546-bb1de103b070
#> 192  dbc9a696-2584-4aab-bbe0-c2f94da15e97
#> 193  a400a993-ba95-4bde-990e-7c3da5439bb0
#> 194  697ab944-e8ba-46f3-b1de-01dbc7b95e24
#> 195  f2870093-69d4-4cbd-a534-1bbdefcc0939
#> 196  ec0404e5-7720-4ca1-aee0-ff15cce0b4cb
#> 197  e912f87c-e54c-4baa-aa5d-8506b8baa558
#> 198  1c048f11-c35e-415a-9614-947e012a914f
#> 199  868af518-65d4-4f96-9c31-d087cbc310d2
#> 200  95043244-ae99-4880-af51-9d50a4be365d
#> 201  2b92e46c-5915-49c4-bb79-902394a464e4
#> 202  cf450752-15b0-4b9f-a6de-726cc4cf016d
#> 203  9805292c-2d33-4563-82c3-745d76c18377
#> 204  ea381ffc-8bbc-468a-84b7-dd9c33859e0d
#> 205  220f55eb-f7d5-435f-b6b7-14199a536b94
#> 206  7bcd9482-7818-405b-a46d-81a586ff9458
#> 207  ece34210-b215-47d9-bed6-a15212dcd5fe
#> 208  2a26e5a0-4f1f-4e6b-b930-f7fa115f44b6
#> 209  fc52e93b-c79b-414f-bfc9-68ead4dd57ba
#> 210  9ab477ad-80ce-4340-ae96-48c22e599328
#> 211  16115935-2870-4093-9eef-e66b437ead77
#> 212  45fd00eb-8b2a-473d-98ca-4013da1e4f54
#> 213  276dbb73-f2c1-46df-9357-96bd2910d002
#> 214  7b9e7f27-d42e-4287-8d45-76a2ac15a024
#> 215  0dc39662-073f-44f3-aca9-fb9bc48dc720
#> 216  fca19091-5ecd-4b2b-b2fe-4f62e7ba896f
#> 217  42b07832-66f8-4bba-b55c-edf40adec117
#> 218  e2d88010-cbf9-45bc-9548-b6b3cc72c1e4
#> 219  8b62517f-95ef-4f63-a17b-be17dda1dddc
#> 220  78a88966-c2e9-49d3-9d30-38756c26e088
#> 221  ed356733-4dfb-4ec7-841d-a4345418c13e
#> 222  44ef670f-1f7b-46e7-8fce-f52f302cdd13
#> 223  32c58292-2737-4002-8605-5eb943b0d4ad
#> 224  438e3830-c8f1-4412-96e4-a060e34938c1
#> 225  e5a4b495-013d-43ab-bbed-89ae4c57ed54
#> 226  ac16c832-f92f-4ac7-a98c-1296ab16ad6e
#> 227  ede6799e-6eac-4bae-90da-11fcd99713bb
#> 228  31be2d60-9d1e-4f6e-868d-4d2c1cbe9baa
#> 229  3fd5ab4b-f993-488b-a186-43ec965c6e89
#> 230  c47ff20a-a445-4cfb-a9e1-77579c9a2dc2
#> 231  7194c448-b60d-423a-9271-291cab974ced
#> 232  a59d9e1c-7ee2-4b24-bc99-b96824c0c30d
#> 233  6dc8c95f-841a-43a3-9d8c-cd4e09e1c2dd
#> 234  79a266d8-84db-446b-ae41-223aa73fa5d0
#> 235  475bb11e-4ae8-4de6-9fce-b6ec28b94f3e
#> 236  9ecd8a96-1b5e-49ca-8cf1-773c19f4faae
#> 237  d591ad3f-4095-473f-b1ca-35fd5f0ef776
#> 238  918f4419-a70c-4f02-bf03-5d6779124545
#> 239  3e017702-6059-46a7-b5f1-8b2e2a5c42f4
#> 240  562175f7-7864-49f1-ba56-701e11fbcfe6
#> 241  5ee0f76f-c764-41b1-931b-92c5f5857fa4
#> 242  eebd5af1-aa8c-4452-b708-35c6eeb6918b
#> 243  498f38d7-c63a-4839-a371-34852e3822cb
#> 244  34ad5727-c8a4-46b1-bde8-604c217b5458
#> 245  451f934e-2e68-4fbf-82e8-4150f2aeec5a
#> 246  6deea9f7-3e52-4d69-b7c0-bfa9d760035d
#> 247  9a3b10ec-4954-436f-97c6-1d649f1f774b
#> 248  db37786f-7535-4856-8583-cdbd7f96c1d0
#> 249  bb2aa683-3c0e-404f-b067-4e25eb83699f
#> 250  fca8924e-e9e2-4504-bc7a-91234c0f665c
#> 251  72bb305d-32d1-4923-8f6c-d7817018e9dd
#> 252  6cda8906-6655-4987-8641-27cecaa0276f
#> 253  6d647ffa-02cd-40da-88eb-bbeafb1c974f
#> 254  c5640087-ff45-40fd-9f12-cceb36cdfd38
#> 255  b750c917-18a7-4255-be5f-d6866ffee702
#> 256  482b7c59-9f71-487a-a4f4-4aefe50ba9f8
#> 257  a50599ea-6bc0-4b39-b5d0-c219efa10a9c
#> 258  48d69831-f88c-42dc-baf1-8e29036cb86a
#> 259  f9fc61aa-dd4a-4279-84f2-aa701b54e8d2
#> 260  60dfac7e-3f82-4de0-b6a7-8cd609021b79
#> 261  50c65ac4-6d23-45ce-91dd-36191101d6fb
#> 262  28ff86fd-b70f-4ffb-8fae-94f97ad61c01
#> 263  dee6fae2-7dd3-4ab2-8c3a-cee04d164519
#> 264  e3f8a837-0791-4e0e-8a0b-8aa787242b9f
#> 265  4e69dc21-4c2c-49aa-a9b7-4a3a1c24f82c
#> 266  573ce3e2-425d-4512-b754-64f71dc46268
#> 267  2fec98c6-b400-415c-8b00-4fc6d7a2af75
#> 268  7c07d668-4f1b-4799-a9f1-ada01b18465a
#> 269  ae896a91-abaa-4d9f-987a-be66c1b787d7
#> 270  b6692e6f-0d00-42f8-bcbd-a7bd1a9a628a
#> 271  63c7dadc-dd0f-4744-b1b3-b46637ff1a14
#> 272  6b9e94e4-b006-4bde-9160-a28080bcea8b
#> 273  797f8f4b-2694-48e9-a0dd-96c285458b90
#> 274  f5f52807-9bad-41d8-af29-a6d3eb75930b
#> 275  a4e8ae25-3247-4728-8fc7-a515b1e08ed4
#> 276  686d942e-62c8-45c9-a37f-d47f0b61665d
#> 277  337cde97-ad49-4f82-b1ad-00fc92ee31aa
#> 278  6936fcc5-abd0-4e98-821b-6059d02aee6d
#> 279  b753e7d6-1478-4ea0-a5b6-a66a354ad494
#> 280  91a35249-2df1-47eb-86ac-ee835c328c3c
#> 281  0ac7eb34-ab75-47fa-bb1b-4f9d2012a9bd
#> 282  f79c5d6d-3e68-4ee8-a1f2-ebbc5b1e3237
#> 283  d0f65a8c-da61-4ed7-a374-9776d64d0e5f
#> 284  178646cb-5cca-4d8d-9590-309f293d8b63
#> 285  f2a3e225-1b4c-4e60-a392-700ea90255df
#> 286  31a8b4a6-4f76-475b-8472-4317fa791fd4
#> 287  d6658789-f29a-4336-8e3b-3250bf5d4b2f
#> 288  97a0b6f4-c405-48d7-ab6c-0c50f1c7a140
#> 289  afb674cd-5a6d-47ac-9650-f5499dd24545
#> 290  1dfb9b95-10a9-469e-828a-3c87593da116
#> 291  a446ee99-3205-4d84-8872-5cfd47f9ac70
#> 292  24959ca3-9ce1-4819-957e-8f1858504c24
#> 293  71a88328-73d6-4ca8-9322-0caae752b1f9
#> 294  aea16d97-78d5-427e-ada4-de77aa196a4e
#> 295  f6d909c3-fc3d-4f88-a171-728d798c2dd4
#> 296  79308120-5946-4f7c-9816-356db920d2b5
#> 297  287f4358-daf3-40f1-a5fe-c5d020464fc5
#> 298  b41bc552-12f1-4346-a103-36bea5abeae2
#> 299  d4bf8eda-b488-48f3-9ffd-5e8cf67c6c05
#> 300  504c0af3-498f-40b1-9054-529fa12bc4e2
#> 301  ee1a362b-6f62-42dc-b6db-f784db03ab0e
#> 302  afe6f454-d1c2-4e0d-b2cb-f05f6d9305f6
#> 303  d5fec792-26b9-4991-827d-4fba3aae48f4
#> 304  ad85a932-a9d5-4f47-9d30-73f52d26af86
#> 305  020141f5-9c74-4fed-bb9f-8864e15563dd
#> 306  31fd76db-e5d3-4229-bb61-d9473295b5e6
#> 307  840e3d4c-d131-4826-abe7-89be97c0052c
#> 308  94e46cb4-40c6-46dc-acc9-d789fcc12002
#> 309  1cc05e98-f03e-4725-a751-f4c5f0cf4fd5
#> 310  a8a4709a-44ea-48b0-859d-56558d2ee95c
#> 311  f44b83b1-f90f-49ba-8e44-2a05b64e6e09
#> 312  c323ab5f-5917-428c-a179-5c7a903c3ee9
#> 313  c6a9b12c-626f-48ec-afad-de3ed97a77d3
#> 314  45bc84a3-2ee6-4141-90ca-f5a4eba873ff
#> 315  facabcfb-dee4-4865-8eb3-c6d49f392421
#> 316  f14a0421-585f-422a-8f75-ebe5c5252dce
#> 317  3ed3769c-57c0-4e00-87e3-ce44515a614f
#> 318  2252ff4a-7757-4626-9d2a-ae666918c9c7
#> 319  e94f5a8e-fb6c-4ea3-b2b0-639e8b49602c
#> 320  5b7e3344-cbf5-4dbe-8e58-f443a70057f0
#> 321  8e682d57-16c3-44c7-8766-35715621ac83
#> 322  a54fff18-f523-4191-b76e-590c9b513b57
#> 323  42a6c0d4-fd00-4bf8-af4f-5639051ef2bd
#> 324  689ba3bb-c75d-48f9-b79b-18389064995f
#> 325  17dc61a4-133a-4582-a2fa-641fb0f20f48
#> 326  62edf52c-6fe2-4014-b038-ad44933a2f91
#> 327  80efc815-7e45-4c1a-b116-3a5f4a24f51d
#> 328  2b4c4a09-851f-4282-8a4c-2b2de6cb2fe7
#> 329  582db4ef-3b8b-4b5a-b264-9e3f0c8f23b9
#> 330  df2ce058-abf5-47ca-b916-8f600e5f7419
#> 331  5c42de18-6ea3-4cc3-900c-d2ac3ed91f4c
#> 332  aeabe604-e142-4f77-956e-f1f1eeb1d7b9
#> 333  6ceb2599-18e5-4fbd-ad44-467391379bdd
#> 334  ca2e623f-733e-403f-a0e0-9e53c0d54868
#> 335  2296a428-0320-4cf4-b787-3332acf77dda
#> 336  27359792-417b-4688-90b0-ba4b636e8e8d
#> 337  7f4e4710-a728-495b-9f57-3b3123522e00
#> 338  8ef39872-ca95-4cd8-8959-dcaa79101093
#> 339  7953118b-dd17-4301-a052-6198313c6c51
#> 340  7b81b5fc-c91e-4b45-a848-f6250d3ac45b
#> 341  54b45f25-fe7d-449a-b199-664e7e7f80c1
#> 342  ccc793f4-9b60-4462-a268-32640360a6e4
#> 343  ce328c5e-cfa1-4367-80c5-1f5f02acdf0a
#> 344  340deb25-a518-43e2-a266-eb24d7a3f4cf
#> 345  8cb15493-d5b0-4675-bb7d-513d92a09f14
#> 346  e810da14-adc6-4b86-998e-10d8e275c7ca
#> 347  3f318c32-b0fd-410f-962d-9974789c5e43
#> 348  5cb0ff98-faa8-442b-901c-f919565661b3
#> 349  6b243a14-43ad-4ae8-a00e-1e0099ca4c47
#> 350  2a5a520e-bf99-4d59-b9c4-5b9ffd1abfac
#> 351  9148238e-d57b-4e30-aaca-b5941f15377c
#> 352  009e0b56-fd7b-448d-aacf-607635c782a3
#> 353  8bc08d53-e95c-4f4f-afcb-7b784e8b2bc9
#> 354  6c94f069-fbc0-40d9-95cc-d8bbb9d0256f
#> 355  18bbbea9-8ad7-4554-8724-990dd1bda80d
#> 356  5f48c221-7816-4f42-a3e2-0e7e3666ff88
#> 357  fa8f6d93-3d21-4016-8fd3-2e0e7a81afb6
#> 358  479659cc-d8a4-4cb7-9cb8-40164954eec5
#> 359  0e12cd21-7707-40bd-8d2b-7f0fbc9b2f55
#> 360  fc6b70e9-18a7-4245-a33b-1e44140446aa
#> 361  4ed3e30b-3c4d-42c9-a441-474c6df805df
#> 362  4f6e1540-4f00-4b7a-87b5-839acf3c59b8
#> 363  84362179-cdc4-443d-b9dc-fbc799cda2eb
#> 364  ca32bcd8-2304-4bbc-8292-f17451e6b2e8
#> 365  6720f435-0c6f-4d8c-84f9-d43ad87a212a
#> 366  32671a80-9842-4356-bd40-aee9dc2f407f
#> 367  dd8d53a9-418b-47cf-a7f0-75cec2d78c62
#> 368  2517a3e8-9db6-4618-b4b8-f9555525ccdf
#> 369  4ae1dacd-c590-46a1-94d5-38e8f14dfe63
#> 370  aab767c3-62c5-4991-aa60-530de9f0e4c0
#> 371  9bddc40d-17f8-4dfa-a5f4-9e9d1ad109d5
#> 372  7858656e-8853-4246-9531-30f149884b64
#> 373  7a0999db-ce7e-4957-9a8e-8aad34a71ebf
#> 374  5066095b-84f0-4430-9818-676249fe88c0
#> 375  efa49e48-8f5d-484a-b5ba-3686ee0fac5d
#> 376  61baab9d-a279-4f66-99ec-9786549b7883
#> 377  9700b837-91a3-43a7-a7fd-6401915285f7
#> 378  840714ac-9701-4e91-8cac-9678ce403113
#> 379  1b9e0cc6-446c-468a-9613-ae45a2fb1dbe
#> 380  5d22b4c4-69de-488d-8275-d616772abb11
#> 381  b0104316-821a-4a05-9519-fa1fd5fa8985
#> 382  837594cf-811a-4dfc-a3c3-ff2f9579a7d0
#> 383  dfd45004-2825-4830-ad56-97e10732f8a4
#> 384  aa1779b5-a9ef-4478-99a9-30889274bbd7
#> 385  1cff7996-98e3-4167-bed6-16b1bcec7326
#> 386  9daed527-a4ff-49e7-bb3b-58d92ff13192
#> 387  0d038323-cfe4-4c70-b68a-f37b26901f97
#> 388  9b72dc53-bc1a-4d0b-97c4-7adc9780cbe4
#> 389  f0cea5c6-f5ac-449b-b42f-7250448ccfe4
#> 390  a77dabf2-0051-4a68-b3a0-5839ae661dc4
#> 391  416ba565-bb75-47fb-8520-99846ccb7c2f
#> 392  482ab20a-4ee2-4a23-92cc-85a53b0ac97f
#> 393  8edec748-a624-45d2-a1ce-f2d16dad911b
#> 394  bac539bd-ca1e-47a3-83b1-40c1ebe6c184
#> 395  954b7065-ce0d-4838-b040-66fd2e6220fc
#> 396  8fa64b22-bd6e-4b89-bf20-a82ac9e98f64
#> 397  1c2ba51f-ac97-473c-aa0d-39687ec03c36
#> 398  a7c57a82-d3e9-467a-8e06-1daad8db4eb5
#> 399  defe2a69-2a34-4b0a-9517-dfc532e1d663
#> 400  361ad56b-260a-4590-84ba-a4b74e5b73d6
#> 401  33319b58-480c-4489-a05c-e34af646c3fb
#> 402  a413b6dd-57e4-42ca-b37f-59372485de13
#> 403  4df659ef-3be1-4da9-91a1-5042312a9732
#> 404  de9159a6-cd49-4412-8d83-7599e680a864
#> 405  00e2ccae-f269-44de-817b-5cec3009dcde
#> 406  7a15acda-6a55-434e-a236-818aa5a100dc
#> 407  4191a7cf-8c52-407f-9619-75a1152ddb16
#> 408  f075d570-0578-40fc-a763-a955187d6883
#> 409  cd407cbd-c184-4859-b8e0-716024fd0a92
#> 410  4d38523f-246b-47c0-b412-171e52e3bb21
#> 411  8ad822d9-1cd8-4d7c-a1e7-f130eaa33c25
#> 412  b15306bb-0c37-4327-bcce-cf9644804ac4
#> 413  53d73ba4-17d4-47f6-913e-93245f850b84
#> 414  cfea00e9-da61-4762-a06c-e6134a830404
#> 415  2d51b755-eef8-4fcf-9e34-fba84d7221e7
#> 416  8d0f117e-f328-4362-9fe8-a3cb0c06c078
#> 417  a37ea082-5bf3-4fe3-9ebc-85d71d7bc7bf
#> 418  a985c4e1-c706-4a0b-9163-e27c2b12457d
#> 419  48c5f8fd-8710-40c5-9f04-8ff6daa493e0
#> 420  33bb34fc-ea18-43f4-8a01-1aa9012e18ab
#> 421  788602a2-ef19-4149-9fcc-b0ec23d2fce3
#> 422  32edfe3e-52ac-42f8-85da-1df0eab02291
#> 423  9b339a94-d380-4ebc-ac2a-7b021bcd5e36
#> 424  8d1b24df-efdc-417d-a250-4d5392ff6b22
#> 425  ee413002-93d6-481a-a0b2-75cdf5b0e8c4
#> 426  d9077552-e0b6-4ae0-ad54-fd43cfde15f2
#> 427  4d3b2699-a776-422e-bb0b-76198b6781c6
#> 428  a30d952c-33c8-415a-be8a-2f7e63b4239b
#> 429  380be1d0-6ce9-4adc-9fc3-de1bf6aa96f4
#> 430  111c5d34-3663-478d-888d-a82c80d21173
#> 431  b138b568-c55b-4d03-9fc4-6da4323e0607
#> 432  bdf592e9-5877-408c-aa52-23416d5f5bd3
#> 433  060de505-e52f-4824-bfe1-ee3af4872975
#> 434  9e3d39d3-617b-4750-979b-633b86e77bf5
#> 435  862c7a9b-4cd7-4119-bff7-cf37f874a28f
#> 436  94254fd1-4809-4790-884d-beb8c0fc43de
#> 437  58e055f8-f26f-42d6-8cb9-a9a51d9fa8a0
#> 438  b5a13558-f0a7-4f47-a47a-26b110a9b276
#> 439  241d71f0-a257-42fe-a14b-05414fddc8d2
#> 440  6401dfc3-9b3a-474d-b568-bbc72aa76b17
#> 441  3ebed039-7d24-4e53-aa3e-05eaaead4562
#> 442  c639cd51-2435-4740-9534-56da8526ec36
#> 443  56bb8661-ebb6-4d23-b729-b491e8b354fa
#> 444  a42a67ee-ccb2-4f11-a4cb-4fac9b3a508e
#> 445  3376199b-5827-4c6b-9593-d2d5faef9d72
#> 446  086698a9-ac61-46f9-8bd6-0f537eedc3c2
#> 447  25872d8d-b069-43dd-8a5a-26b04c9a9c6e
#> 448  9db9f87b-1c16-4984-8edd-8c953c4b1801
#> 449  1fb02724-10b5-4bf3-bde0-94a4c5acd105
#> 450  98730d59-084e-4fab-aea3-0e2426cd73c5
#> 451  d29f9ac6-3054-431d-ac9c-e21c52aa8598
#> 452  bf70b4dc-f2b1-4d17-8303-719a42ceb221
#> 453  0531d0db-ed3e-4a51-9174-2c9b58230d61
#> 454  697ae70b-79a0-488f-a85a-90563ab88b81
#> 455  cb96879b-f406-4e1e-8289-7120e70024ef
#> 456  150871f0-5299-4ba6-96e3-91284b4f4162
#> 457  b018e949-ddb9-4ea5-8ca8-eec52eee528b
#> 458  db2e98cf-b813-434b-a7b3-e609d9131611
#> 459  e2901bce-51fc-488f-b2a3-a9d2da200723
#> 460  9c90a23c-5d19-4c19-b368-0c70584513c0
#> 461  21dabc82-664e-4dd2-93d0-b082ba79b95b
#> 462  da90bd98-950c-42c4-988c-773899872fd9
#> 463  35b2d434-4be4-4ff7-9b2f-263e04f716de
#> 464  541a13cf-9cbf-4b6e-9c8d-f2b28a30d378
#> 465  0e3b597b-3f55-437c-abf1-457f9ad3b057
#> 466  44fc7b1b-5887-4f04-8062-36411854dc31
#> 467  983fa460-aa2a-420b-8bb5-a70b62448b08
#> 468  002195a0-d235-4b48-908b-da89b6c29499
#> 469  e5a6d6b6-7b2e-4813-a48a-9a11ec81e60a
#> 470  4440c61d-cac4-4f13-9def-b7ef97490f23
#> 471  0819cb80-23a6-458d-a43c-8cfcd628a1e6
#> 472  2dcab105-ae22-4831-b1d5-36895714d7d1
#> 473  e7b1cb46-e04c-4bb6-8da5-bfc6d677f7db
#> 474  d1d78d0e-287a-49c6-8792-c394a974253b
#> 475  fc343851-c970-45a0-b614-89b1642bb0f0
#> 476  21978019-718f-4a3a-a988-29b785ecf95c
#> 477  8db1fdb5-e93f-4798-83b5-c8ffb3e605f5
#> 478  073ed70f-b0f3-4861-80e6-61ce9211dcc8
#> 479  1be0298e-7019-4a37-96e6-3979512e1ab6
#> 480  6e67d052-3049-4022-9a38-c2f3105f5fc0
#> 481  c6849fb0-4e59-4868-beca-24e576ed4dbe
#> 482  d36169c0-6bee-421a-85be-a396dfc20d6d
#> 483  b9079aab-d3d2-4380-ba5d-bae736be1938
#> 484  cdcb24bb-09c6-4d13-b588-460863367bd1
#> 485  ceacda55-87fe-473d-accc-2f5ee6355d43
#> 486  206e6896-9167-43c2-9205-85bd09133c2a
#> 487  bc05d3aa-e958-4c68-9468-c12427287a76
#> 488  37e63bc9-d670-441c-b97b-176d5f056e09
#> 489  62d2935d-bbc7-4293-bc38-c63e0ac11662
#> 490  2a7b5d77-927b-467c-84fe-a4ca3599ea20
#> 491  11c3f9f0-5c74-4a98-bc89-1c6f71ee06c8
#> 492  b56205a6-721a-4511-aeca-1afc10355aff
#> 493  a6caa5f5-d096-408a-ac13-508ed43ce892
#> 494  2af195c2-78a9-47bc-bc8f-1ee164d56459
#> 495  8cbd7b0a-6b45-43f7-b7ca-683a87c36388
#> 496  ac3bc409-02fa-44f0-9e7a-ba8675171e66
#> 497  ab162c5e-f864-4aa9-ab4e-52b0487d109b
#> 498  4a54e662-7625-42d8-bc02-6f30ba3feaab
#> 499  6f6bb51d-95ac-45d3-906f-72f428d11d5c
#> 500  58ff1c36-9ecd-4011-a3b6-703762b90c40
#> 501  e0f2cae0-7a68-41ad-8dc8-5aaf1470d0fe
#> 502  1d73a13a-e43a-4982-af03-d11628704958
#> 503  f1e34f2d-2f46-425c-b0e2-b9fda5280e09
#> 504  3f05766c-b4f2-4103-a017-a4f134068f42
#> 505  0a95cfde-f071-4725-bc57-232df4efd178
#> 506  c06fd063-47b0-499f-9ca7-f8c448abcd1c
#> 507  368dd389-a1ea-4cf4-b3a7-2007a99b8f78
#> 508  72e5a078-2e1e-4549-9925-c30fa379a5d4
#> 509  3baec5ae-2ab0-46ee-a351-c7b909d588b0
#> 510  601557d5-a705-49f3-b3d2-6ce735831ca5
#> 511  f215b725-dc54-410a-963e-36f89d426bed
#> 512  948202c7-2b07-406b-8dee-de4de28a09ca
#> 513  1380a71c-27fe-4684-86c4-6139cfab664f
#> 514  bfa75f43-129f-4113-b581-392b5051233c
#> 515  4f21305a-72f2-4f7f-b954-2c44aaa73fa7
#> 516  baa59f4f-39d9-4bf2-9dc4-b3efc2115b2c
#> 517  3c0b9f4e-3a9b-4826-8a87-f0b129ff96cf
#> 518  0690d2ea-4d21-4116-9820-5d178cc0143e
#> 519  50de9b07-03ec-4886-8625-d5c64de6e0b2
#> 520  d96899b5-feef-475b-af7a-6bb68ff829f3
#> 521  379420cf-a439-4a18-8b13-6a034765a74f
#> 522  dc224c2b-0233-44b6-9640-2e9ca9c825a4
#> 523  42d81083-ea4d-4a4b-ad37-9919b21bd352
#> 524  17082e73-cbc7-4a1d-bc8d-5b900a74f219
#> 525  83b51c41-bb6a-4fe0-a666-ae37cadffa66
#> 526  f5bd7d56-8095-4c82-9e22-3b0e93b7c790
#> 527  70ce75cf-3b73-479d-a7b3-c62cdba78e73
#> 528  60c0f844-e4ec-4fe7-ba43-80a4234ee60b
#> 529  9aa124ca-6123-4cf8-a788-2e1e80eef5b8
#> 530  5b78c996-723d-4f4a-814a-b58be8d0c72b
#> 531  42fd95e1-44e1-49b8-8c6d-6c99cb4154ee
#> 532  54fbdcdb-0c89-4e28-bd56-371e341b6e8d
#> 533  e19dafbf-e524-4dee-aacc-69b1cc41f21d
#> 534  e12c80ab-30ae-42ea-a102-fd94d8932d9d
#> 535  2bc5f7a8-1cc7-41be-a9d3-f9cceacef84a
#> 536  92187541-1c46-4188-86b0-8cddf99fecb7
#> 537  ec3530a6-95fb-4337-81fa-c0bfe66e94ba
#> 538  0834a392-2d37-451c-aff1-2f2bbbd32f3e
#> 539  d4ee21a1-2822-4b92-b27a-1afe8b6f9ea0
#> 540  c0fa937c-91c2-4185-a9fb-c39b6beb24b9
#> 541  155b6882-b208-4063-b978-9adba857ba4f
#> 542  4e7b21c1-3e2c-4edc-8f84-0fe774b69954
#> 543  2364107b-1aff-4c7a-8a3c-3fb6036be8de
#> 544  97000b80-42fe-4d96-8130-60fcb65ed772
#> 545  7a7e0106-ae88-4b6d-8442-ebfbe0b57111
#> 546  40c73b90-1d82-4a12-bd3e-4ddbcd11c67b
#> 547  26f44589-8cfa-4f90-a5d4-4557b69a09db
#> 548  6361fe08-8af1-456e-b7b9-0d48e13d8095
#> 549  242a66ec-17b5-4722-b788-bed48d5ec1fd
#> 550  d87bf0a6-9431-4853-93e5-7dd7210cc519
#> 551  9aa36349-55d0-49ed-88d5-a171efef9b12
#> 552  ead58477-48d0-4fda-b082-e389e2bc78ca
#> 553  5c37454f-4501-406c-afa3-202b0d190a3e
#> 554  25648205-bba3-4023-9447-b4a59510f7b9
#> 555  20a1fa65-116f-4206-845f-4a5eca812eb0
#> 556  5c03e60c-c023-41d0-94f1-da9ba070cfe3
#> 557  6c9d3380-34c9-446f-89e5-131544bad00e
#> 558  683aae65-181a-49eb-a8b8-58136f34d63a
#> 559  1949b79b-3de2-480a-8c4a-d2f20f90c3a5
#> 560  ff2fc658-4440-45bd-99a9-bf5d97432d11
#> 561  142eefa0-ad11-457a-8f2c-9fedf6609445
#> 562  f436cedd-a1ca-4bc0-8f09-600ca49c6f35
#> 563  82fa398b-1807-440a-95e6-58c85bbe5ccf
#> 564  170a9a88-f65c-4405-af70-95444f6d73b0
#> 565  db504b0e-ae59-4f1a-9005-4365ae98b64e
#> 566  eb35566d-9988-4a89-9462-9661c5fc62bd
#> 567  df575833-2544-4e43-b1c3-5068256e1083
#> 568  145cedcd-bbf2-4960-a465-05187734c536
#> 569  348960e6-aa0e-4733-8cbc-2d4ef4cad237
#> 570  9b2fbba2-e348-4206-bbab-19494083b688
#> 571  8f3498bb-d9cd-4f42-8e02-2cbf80c50e64
#> 572  bbe76766-b157-4af4-9258-9b87d74d77bf
#> 573  6addb16f-3def-46d5-9341-7b391ca38eed
#> 574  f4c7053a-82d0-46ce-b5e9-f328f6930e2b
#> 575  213087de-328e-45b5-954a-65fad6fb6b19
#> 576  901690ab-92d4-4278-b88c-4457d90e3f96
#> 577  0b5d648f-e013-4cc0-a2d8-4aebc07b805e
#> 578  0de749bd-bbf9-4a36-b370-24268abf9b17
#> 579  d35fc9bf-a5ab-4927-abd4-4ec1872a2772
#> 580  99ae887f-9103-462a-88a6-9be9d768351c
#> 581  4777e50d-f0b0-4192-9ef3-6c96e150ba18
#> 582  78b401b4-550d-4245-b630-94a5e3d28c56
#> 583  a44a322d-927a-453b-9c0a-36a5c8027c52
#> 584  38862246-08bd-4d70-8356-0d335cd1f6bf
#> 585  dfe8522d-a668-48fc-b52e-c7c988ae29c3
#> 586  17001022-bd45-4baa-ae76-016a4a6febf0
#> 587  b1973cfd-1aed-4f39-9df8-558dab54ddf0
#> 588  abb75ed6-cc35-41de-b922-7d0d8f3ac834
#> 589  b14d8721-4e22-4729-b2ae-0e4906d956dd
#> 590  dcb1871d-e671-4ad0-a6cc-97d85a0770d1
#> 591  4367c1c8-0a44-4611-9fa2-4c14d75ccba5
#> 592  25928173-8060-4713-a69b-d145c78d24ef
#> 593  aa4734af-df5f-456e-b6c2-7b8542f4d35c
#> 594  5abe95b9-2c6e-40c6-8c64-888883c9d23d
#> 595  4d9ed50f-db20-453e-954d-f864b9f9ee25
#> 596  b08bfaf1-658e-49e0-a6c7-f72b27452bd6
#> 597  ee87504b-bfe2-43a5-924c-e3c8a2ad8439
#> 598  d980cc44-d2a0-4620-9ce1-9196931dacb9
#> 599  94cc0234-118a-4575-bf84-ee768421d148
#> 600  743a1c40-635a-4962-9cda-e9ce14520662
#> 601  0bc6ef3d-e854-49d0-ae42-b6d6e382ebfa
#> 602  f758de76-59b3-4f9b-a35a-ecd2cc62cbe7
#> 603  843e46cf-6b17-41e6-a012-cd15db48ca10
#> 604  39b78e35-4498-4a44-a333-e09588136700
#> 605  3bcca603-fb49-428b-a154-173b95e78c4a
#> 606  288242bf-c2b8-427c-ba13-371f259632d4
#> 607  addec9ae-7b1d-4f22-8f1f-669b20a9bbf1
#> 608  57fef329-df07-4533-9e7d-7050c2af21d8
#> 609  e3308c06-cffe-4de8-b5d8-b2bd44e50a8d
#> 610  1a8268c7-7613-4478-bb55-5da5b77bce3a
#> 611  da0fa82a-f0f6-4206-97a8-e8854d58b4d9
#> 612  5bfbce57-d020-41c7-9b6b-75fc3f252773
#> 613  1a16ec30-6b9b-4fa8-a2e8-891216479366
#> 614  0e98ae2b-5bed-4280-a1af-9ba60a063fdd
#> 615  7280a03e-1dcf-450c-9b82-b5e9e6d167fe
#> 616  5b3c637e-a7a3-4ee4-8970-a94935817666
#> 617  63edf7e3-cc55-44d9-9a9d-39f25c1ddac9
#> 618  268e3167-1a51-46f6-9c94-0ad01e8f4ee1
#> 619  c12547d6-bcf2-4a3e-920e-0ef5b9f3730e
#> 620  05d9e563-790a-43a7-97de-26837fa5116c
#> 621  73dc5389-3914-4d82-80ef-84f46c193eb1
#> 622  fcea998a-e616-4d04-9bbc-39a396436e23
#> 623  ab5b1a35-0460-48f1-a806-93a95ba0876c
#> 624  25e6b865-cd3a-4a97-85a1-59fa2b715f87
#> 625  2144be5b-1996-4732-93a0-eb6a4ebe42dc
#> 626  c5cbae4d-da0d-41d7-8873-9a1f9cc6ac3f
#> 627  64039429-5897-41b8-a4ac-64919b1c45ae
#> 628  61ed58be-2f24-4ddc-83d8-832b1f66d81f
#> 629  98febb05-ec11-4a01-aaa6-ac704f4972c5
#> 630  bfa0a0a8-396b-40ce-9a90-2e01764f2056
#> 631  df05dd55-c3d2-4298-8c35-2a194e1d9a90
#> 632  08ad2246-f384-459d-82dd-7a91aa1dcea8
#> 633  7d5066c1-cbbb-400d-88df-a9aa3661684f
#> 634  b17ed8b4-8d44-42c8-b802-566ea460b6ce
#> 635  37f2c224-1964-4041-ac21-4356ef4f8f97
#> 636  95ec6118-1320-44b2-b57c-5c1ff3b46342
#> 637  7fbec2fc-85cd-4aec-851d-f473e57a2981
#> 638  80c43623-19ac-46ea-ab68-5916d8e0207e
#> 639  7bc6a2b1-38b3-4d36-a45f-f189cefff043
#> 640  255eaf14-0940-4c30-8a41-10a4ab3bdb8a
#> 641  05eb0661-ea34-410a-a9da-23a1c53e23cb
#> 642  fb2e7046-6a0e-4416-ad99-2ac32a9d6e14
#> 643  bd8f7f75-0efe-47f2-a784-e608fcd24ed9
#> 644  80fc01cb-bedf-4ac7-863b-87907bb46d79
#> 645  2de0e23f-f98e-4c8c-b52a-1912cee79c7a
#> 646  764135ff-2c8b-4e34-9291-515ea72500cf
#> 647  86f41de3-72dd-4bcb-aff8-1c64a8f74337
#> 648  5c22700d-fb50-4ac4-b407-15aeb8c80078
#> 649  3000ff6b-2da5-428e-9fa0-52f79f645746
#> 650  17605801-34cc-4e19-96f6-45565f811902
#> 651  4e11ccb2-78c9-48f6-87ea-322dd781f7f5
#> 652  e3abc740-61c3-40b0-b3ac-8231362bd42a
#> 653  08d8986d-fc9d-42d0-bb32-2a722fbda99b
#> 654  9fdb7795-ffe2-479a-9c0f-25ca0f8b3534
#> 655  ecbdb131-72f7-4f83-b653-32d9e21f1c19
#> 656  f65891e8-e668-4a6e-86c3-783cfb1c206d
#> 657  0994b1be-23e8-4614-9f2b-83c6600776ee
#> 658  d41f3006-14e6-4774-a419-41a6d6cb0312
#> 659  abab5e3b-b1a3-434d-ba02-c761a81cb01f
#> 660  58c5ab4e-f281-43dc-8ca2-326ff691dca8
#> 661  a1318ae8-556f-4e05-8aff-86cef2ad414a
#> 662  bcc5b3e7-c4ef-4987-b124-70aac24ad352
#> 663  ce9173d7-acec-4d70-a416-ce7a586dc526
#> 664  17118b9f-6346-4a67-ad14-04244b15c3b9
#> 665  1b32cbea-12c5-4865-a8bd-a84a540e130b
#> 666  b47e95b4-293f-4173-b6ba-bec1c06307fd
#> 667  f8fa1376-612f-45bd-9e45-69e712ed0c09
#> 668  41b113bc-4241-4252-8a38-2658957cc04b
#> 669  f7fc63b3-9d55-4176-8bfd-c0db4a6725b3
#> 670  f8e1cbcb-aaf8-4b74-95d4-40adb7760810
#> 671  93e2711c-f782-4ee9-b25f-8d21f70e003c
#> 672  da8c0e59-2c6a-49ab-8aca-c6cba1646822
#> 673  28d4e9a8-9e40-4565-b6ce-fae3e9aeef0b
#> 674  9a683661-bea0-4908-b70a-10b9a3567cc9
#> 675  8dae1fd5-6e39-4e86-bf54-9bea4220b391
#> 676  1a2ffec4-a7dc-4404-8968-b3364e0ca071
#> 677  3cb8d959-ce20-47e7-b3cd-9060ef0da952
#> 678  98600545-2a46-40c6-9848-aafccba050f1
#> 679  62ddc2c5-df70-48f3-b804-ebe5b694c927
#> 680  ac9dbb4f-59c7-43e5-bf7d-4270b0d96731
#> 681  e71c4183-a221-44ac-bd4d-4bbb9f41f07d
#> 682  34619d66-085d-4451-857d-24c10b28fcf8
#> 683  88468813-f415-4bdc-adea-891729b16ccb
#> 684  e2c541e8-5bcc-4301-8351-28167a7fc7cd
#> 685  25c755dd-bafe-4000-9c35-e3bebffa39ea
#> 686  5d1f91ab-a047-433f-96a3-b0050b66d54b
#> 687  6fe2d555-9476-4336-8281-56cf8c9a3b21
#> 688  124b836f-dbf5-4cb7-b6d9-37e67854f782
#> 689  b2ff620f-bf85-43cc-b66b-1f1a6e6a5fef
#> 690  ebcf23c2-f319-4a56-8cd8-19d9fca42bd7
#> 691  dd848611-df40-460d-9732-8d20b89036a1
#> 692  95a4c04c-3128-421d-b22b-ebf81bf23012
#> 693  033f28e4-6b3e-4ac0-a91a-d76aecc3f6e2
#> 694  b8a95920-ee79-494f-a865-e2e12dec598f
#> 695  de00fc24-6125-410b-8c04-c8ca458343a5
#> 696  824531e3-7c33-4a79-9603-f40cc2463e33
#> 697  6a55c890-67f5-41af-a041-b99bb806782e
#> 698  061d8ef8-7b8e-44d8-87ec-c5875ecaa799
#> 699  76fd79e8-764b-4208-a9fe-08f5bc25210d
#> 700  36055abb-f1cd-45fa-9b2e-3996768ca0c3
#> 701  a498436c-f332-4700-9f20-79d88d3623ac
#> 702  39541573-68fd-4238-9064-98c122a8dab2
#> 703  8208d00c-ddd5-45a7-a178-294c1cf59920
#> 704  edf47d26-b4d1-41eb-83e0-fb9438985f95
#> 705  200a5057-c18e-49b6-9c4a-17f4b23ce231
#> 706  c6f4aac7-25ba-44f3-aeef-748ec03ca3d8
#> 707  e9cd44cd-c735-40b3-9a30-25947aef3855
#> 708  d1956e7b-dd66-4039-8e3e-8022b424e750
#> 709  821686a9-5b38-4be3-bd18-1bb5ef83f571
#> 710  55f865b0-fe0d-4fa8-9caa-20a739bb3a23
#> 711  f63d7632-e8a7-4798-aab9-fc9e317b7226
#> 712  e5c39731-821e-40bb-a7ca-1f0c1ca9fbfe
#> 713  703ddfbe-63da-465d-bafe-b8ec2b579de3
#> 714  fd30bc75-6ee8-4f1f-8f06-f346a922ffc2
#> 715  78657794-0733-46af-8651-ccf22eb6b353
#> 716  75b4e6b8-c32b-49d7-849e-833ccc30e03c
#> 717  34084762-4576-482b-90f9-d4baede4be3a
#> 718  448a40e5-c8c3-49e8-b7ab-43177d3e8039
#> 719  3682df32-f48a-4e61-a9f2-e12bd2e82702
#> 720  223ca5a4-6812-46c7-85f1-3d0820e901bb
#> 721  2b2a3f2a-7891-4a94-bd8a-867ea7c5c241
#> 722  cf9a7470-bbc2-4654-8a6f-4c49c49c6670
#> 723  24269bd8-981d-4da1-b49c-e60fa613b90e
#> 724  34cddbda-9c29-4596-9ab8-01ff1287ed85
#> 725  98936676-fbc7-478d-a24f-65672d417f78
#> 726  e687c168-4332-4d2b-93d4-6cb83406222e
#> 727  ad5eed14-da9f-4c5a-952f-8606634c35c1
#> 728  620c853d-f3de-4d94-a688-7fc1f941cf8c
#> 729  0f8ae159-f4b4-4b8b-ab88-2ce81a0964eb
#> 730  f3c67914-9c12-4ab2-850f-ccbac9358313
#> 731  45713e02-8398-45e0-8cae-780a62291a79
#> 732  ee7f167b-adad-44de-b5ce-6c1bad90a20f
#> 733  b6a69be9-cf9a-42c5-858a-602252e82be7
#> 734  5de54d48-bc83-4508-bf45-8690f5a73682
#> 735  ef529691-2305-43f8-87bd-6da428baf64c
#> 736  00ad79de-af07-4e5c-a0a2-885fa9ea5f3e
#> 737  d6bfc504-843e-4f9d-b511-64a37ade87a5
#> 738  82182042-b851-4355-aae9-27d71b92abd1
#> 739  36239841-3fef-45ec-9c67-017f3b6f83a6
#> 740  c8ca544a-909d-495a-a6de-f3191fcdf210
#> 741  c0f47b89-b710-4fc9-b088-7350d504545b
#> 742  451ed223-26f6-4794-8c45-8a4e16f4bcb7
#> 743  721d517e-efc8-4194-848a-728bb6b933b7
#> 744  35cf2fe0-56ed-4c6e-936f-7605eeb8d565
#> 745  f83b8d6e-eefe-41b7-8301-410b402d3b06
#> 746  078d25f2-5c5b-4466-98b6-1d3824ee8804
#> 747  d6b10587-c868-438a-8a75-7f0c3fe83947
#> 748  29bad494-51cd-49bf-845c-80c4bd49400d
#> 749  4dbbcc8a-ba4a-4624-a7af-a3c0c6d5a900
#> 750  d156e2a8-b629-4c40-9957-60baae30f75c
#> 751  4e2264ce-202b-4aaf-bf46-6cf2d3eba2ab
#> 752  f4112b22-588b-408f-b730-4f87b544497d
#> 753  6d7e5149-920c-468d-a690-b5f694666b2c
#> 754  c6f8752d-fb0e-4100-8f4b-c504485d99a9
#> 755  0926f949-30d8-4309-ae95-f04c09b9431d
#> 756  73a5a376-1830-43bd-9b08-e035dbd52d5a
#> 757  2ad3c317-9ff2-4e74-835d-1c0ca22ec861
#> 758  a48d7e47-af4e-4432-8cc4-eb0b0db05b23
#> 759  3a737dd0-6f57-49b5-8d6f-1e1cc00a528d
#> 760  79325839-87c6-44b6-b938-93d6c4ef35fe
#> 761  c56034cc-997a-4284-a2e7-51cb3bd90549
#> 762  2c89f334-1449-4fbe-8d27-6f597ff18965
#> 763  455dfc6b-090e-4570-ba43-0429276b36ea
#> 764  63328207-2be8-4004-9902-94baa80e9f41
#> 765  4f0de777-d4bc-4902-be82-b69e73009a05
#> 766  aa498f39-a520-494d-bfc0-34b509dce331
#> 767  446db05e-92de-44e7-bc88-45d5af12fc6a
#> 768  e2c66479-c320-48ba-b7d3-3954e0055d7a
#> 769  9e902909-6c07-4d83-aa4b-633d38f2033d
#> 770  c0365954-b780-4b36-b854-a4e5c932278b
#> 771  1d90efac-228c-4149-a20c-3f5a707796df
#> 772  591db6a5-afd1-4d6d-b1ef-aa07171ade39
#> 773  8e6b529e-1d38-4735-bdd7-d3bd7d6ef285
#> 774  eaeb8571-d2c6-4437-9680-50e07f2a52f0
#> 775  5a7763ea-8ba8-4bf6-b6da-a66ed56ba6b0
#> 776  e2a8a7a7-8aa0-49d1-a1fc-d1f2338a0ba4
#> 777  ff3ba76c-273d-4e3b-a0b8-f563ff6c84da
#> 778  0e3dbdd3-155c-4ef6-a529-fba72fdb208a
#> 779  133ac6f1-a71d-44b2-9b84-b553cf83d575
#> 780  38a4316c-2300-4026-a00c-c8a2aa7da63d
#> 781  c292dcd6-edd9-4b59-ab2f-f1cf044a76fc
#> 782  d4f5438f-00b6-43d3-85f4-24c5b7250062
#> 783  13de5681-e545-42df-b51b-d9ab447ddb31
#> 784  35d7ac24-78a7-4581-a2ff-abf7a25f8e93
#> 785  3b90e786-b5d5-4a33-9813-e545d4b92136
#> 786  1424abc6-b842-478c-a0be-1217ed072c99
#> 787  5ba01611-1f77-4163-af5e-e098ee5e8d3e
#> 788  f7735029-239a-4ff9-9b40-a9fc260fb643
#> 789  6129df3b-97b7-4c70-a9c7-cc4024d90387
#> 790  a8b93e65-6b87-4000-ac85-24d1eb1eba13
#> 791  0b19cf47-5f22-4238-a790-331c94f1714b
#> 792  d79253b5-642b-4811-890e-8635b8879aa9
#> 793  b595a992-5096-4c6d-a7c4-be7fadf07faf
#> 794  b358c459-b496-483d-b19d-745869d04565
#> 795  625fbd61-60c6-4b18-9995-f92e07395a8e
#> 796  31774fca-b586-48f3-89a1-e802c4796d61
#> 797  944b7742-c1c7-41f7-b392-85efc80822a9
#> 798  13f03278-fde8-4f1b-b3af-1e2cd56a1688
#> 799  86eee9d4-2508-4fa9-a109-dbaf6b3530d5
#> 800  55b97644-af1a-4b98-b48e-530d0098799f
#> 801  f7e2e86f-8561-42c9-9ae9-da63bf63299f
#> 802  cca8cb88-ee2e-4121-a79c-056be6dfd239
#> 803  6460bad8-192b-4359-8ab7-991ed02e65bc
#> 804  e9e63c31-efed-4123-9bb2-4ccd97d7aac4
#> 805  20eed75d-1e98-4e82-8c1b-60b335dd0b34
#> 806  6cb98f1f-7698-4be6-9954-1638a11f8e0a
#> 807  e8e7b74a-5a0a-496d-baf5-e70d70dc6506
#> 808  ed8a6567-a4b0-459d-8c0f-85fa641f97bb
#> 809  558303ad-ba26-4a1e-9912-4f26daaa76b5
#> 810  cb50a733-2a3f-423f-b6e6-37bb57541ff7
#> 811  cabf4356-bd1a-473d-bcd8-cf07b163ca17
#> 812  0d470f7e-7fe2-468e-b271-0a9462c91a44
#> 813  c0d6ec7e-4602-4016-a171-7e3dc3cff7c0
#> 814  720eeffd-1348-43de-a4de-f6072530a614
#> 815  1e0658f6-dfea-48eb-8b32-7184e4d1ed9a
#> 816  0a70ffea-d822-4268-9f32-a5b448067192
#> 817  41a02e7d-c9f4-417b-a1da-2751f5442469
#> 818  356e0566-6894-4f70-a892-94d87f49a3d1
#> 819  c1234265-5140-4911-b3c0-98850babb417
#> 820  51cb5302-034e-4c69-94d5-44beea791819
#> 821  045e69e7-8d93-426d-b81a-8df1d59cd80b
#> 822  90779457-48c8-47e2-a164-1a92651cc339
#> 823  591d83a6-818a-4fa2-b934-034fc446c201
#> 824  553916e7-9ef4-49b5-8c0f-39dcfae07cd4
#> 825  1f913d09-b9f7-48f0-93dc-15abdf4ece99
#> 826  f2453ecd-3921-4493-8906-fd4da8fabb6c
#> 827  59c28c9d-70f4-45ad-ba0e-cac94f59b59a
#> 828  725bcb08-11d1-45b8-8f98-2b639743d2a1
#> 829  502e6ccb-05b4-4fc6-8693-5859952fff7a
#> 830  9fef2860-be74-44f9-8d93-5124c7a424b2
#> 831  ffd5aa23-1b4f-4a63-92d1-467f761664b3
#> 832  470e3550-9dbd-4eb4-99e3-4f0f342ef23b
#> 833  fed8868b-76a5-4713-869a-1af1962da8d6
#> 834  66c49bae-f20f-459f-be6f-b9155a75289f
#> 835  5ae55f60-d160-4e2e-b191-cfd99d560a52
#> 836  5a3d00dd-4fb2-43e4-9f6f-1e425456228d
#> 837  a49b7861-58d3-4c15-a01c-8916e5fcd633
#> 838  ac61dad7-2810-4372-84a5-fbe0ef76fe87
#> 839  9f78fc8b-529a-4882-8233-1169c74ee06e
#> 840  a93b18da-c040-4f7e-b845-b147bdb08255
#> 841  deff50d9-ef93-4848-8864-c68886f1b710
#> 842  bf42cc7d-5052-4012-a9ec-eeb174711729
#> 843  9a1d0bcc-246d-4b1a-aeba-2d3c587b562f
#> 844  1e6a8422-d767-4d9a-a352-e3a53f38ff42
#> 845  3ca3f9d5-6cd2-4267-ace7-1cd6d74f0937
#> 846  b7918378-582b-4519-9426-d36ba90fb0b7
#> 847  9e37926d-0709-43cd-8684-cdd9f4a379d0
#> 848  40c05a45-3811-4ecf-b574-1c0e1a71b972
#> 849  a27081f5-212d-42b5-af8e-43424e414d56
#> 850  7d395cff-5d0a-4399-8dad-31c0f568110c
#> 851  593aacb5-b053-40f5-a532-500484f3ead2
#> 852  784ca934-7d37-45cd-8f11-26eb73102672
#> 853  65ee4b3d-a787-4923-9334-ba40ec968790
#> 854  7e38424e-741c-4c2b-842a-e19f0df50029
#> 855  979a0b19-ca87-4f05-8eaf-0f0c962b062b
#> 856  c6d3996c-c505-44c8-b566-ef320f1a3e9f
#> 857  d23e3666-ed07-4335-ae8e-a52d1057455b
#> 858  56581339-d92c-4ab3-8a68-8d23a9a769fc
#> 859  1b14fce7-8710-4de8-9fd5-1fda55098715
#> 860  657c1af8-aafe-45d5-9dba-2d1e8977cbf8
#> 861  2c3c1e75-0b23-490d-b3e1-16e8593e8df5
#> 862  25e96fff-f851-449b-ad04-560d8d1f5e63
#> 863  ea36371b-11c6-446e-a9de-f866e8f23afc
#> 864  66e653a9-a415-4292-85b5-2a6c16b9e2a1
#> 865  b0bb1271-3d9d-4d99-9f60-48d87637b91c
#> 866  be7fdb91-9541-4369-84a0-4f6a3b4a19ec
#> 867  3adab72d-5de6-4352-a355-f188e86f311a
#> 868  4c62fa58-f768-45f5-8f01-e8ac5d1bc4e4
#> 869  f5fe4eef-0d5c-4d95-a138-eaa78dfab2ae
#> 870  2af43240-b19b-43e7-8df2-79337627b678
#> 871  243cad75-6cc9-45ba-989d-9b028e2b4bb8
#> 872  64875c1f-28c8-422c-a27c-adbb0945844e
#> 873  b34776f8-998d-4b5f-8f78-dfa605045464
#> 874  0398a414-6a79-4583-afc6-317f5ce43986
#> 875  82550fe4-7f7e-4b7c-a23e-ef7c8d91168e
#> 876  dd5a04b7-e384-4da7-8079-85c3a4c37b1d
#> 877  9c143037-6777-4bb6-9c46-24d95744f093
#> 878  7bb3958b-bc37-4f2c-91b6-bb52a77761b4
#> 879  29826bb4-214b-48e7-bad6-d562034b2cff
#> 880  35f043c6-e0c9-4846-830a-f003c3f7ed23
#> 881  556de86b-30cb-4802-87ba-b1da44779400
#> 882  500e7be6-ae51-4e53-bb5d-bbad36c43cd2
#> 883  2ca335d2-4855-4fa0-800b-abd33c2fc560
#> 884  8fa088ae-bda6-47d5-83f5-23cb33252a04
#> 885  d1cea984-b1ba-488b-878e-9f4cf01ec2c6
#> 886  a1a78a02-459c-49fd-9364-9ec9d43920ea
#> 887  07736b70-e4f2-4d0c-a391-14391939e571
#> 888  07258a70-b991-4293-a41a-d36245b2f48a
#> 889  b931c602-c9cc-4e48-bbd1-a0393356b474
#> 890  c319a06e-ee49-4e27-b9be-e000728ae07a
#> 891  40fe5edf-7fdd-443b-957e-524267c49457
#> 892  fbab9057-b26c-4d67-bd94-432ebbf644c8
#> 893  bc24e89f-8a12-4eb2-8742-18ab89591343
#> 894  4b311ad1-d0d2-4e9b-a738-bd69cbaabc1c
#> 895  797877c2-7f3e-44ee-ba7d-5a94d0622857
#> 896  d2ad22c0-2c41-4eee-883c-4a43dda2861f
#> 897  fd297b34-2c6d-40ba-8e3b-ef09e82585e9
#> 898  b774f190-10f7-4134-8726-0a8164f1c78b
#> 899  27cc318d-3aab-47e9-8ad9-92cf9bca5862
#> 900  ab2154c6-7829-4a63-a268-7e05bd1bafed
#> 901  fb4238a9-950f-418c-8412-68301afa1257
#> 902  b2f9038d-3ed0-4921-a157-02648fc745c3
#> 903  44b43c5e-01d7-42a6-9b16-78b6215fa33b
#> 904  f19b1c78-1ce7-4bc0-9c39-cfcd58cfced7
#> 905  1b89a25c-0a5a-460b-95fb-4885a0a2ddeb
#> 906  2cc47a07-89d6-4af9-ba41-68d1ef16da5b
#> 907  1fda24b0-5b3a-4c5e-b3b9-320e8119f916
#> 908  f1a51e22-9de1-41c3-b8d2-2b6a1db4b278
#> 909  4d9eb5c6-1030-4da1-b954-2d602e30dc52
#> 910  b9064ca4-d947-4d0d-8462-0cc79c2b505f
#> 911  23b77798-63a5-4b9a-8665-20fa86e78b7a
#> 912  f9e9ec85-8036-4207-9244-f9d21a7862fb
#> 913  be8d9abe-d0a4-4c1e-83d8-cd3ae572684a
#> 914  94c1318e-7afd-4cac-b34e-d7928f87ed8f
#> 915  0f37cb76-9177-4892-9230-8a03aa8ca1ce
#> 916  c509f458-e5ce-4045-9f06-a41363d4e0c2
#> 917  d488704d-3d7d-4069-a547-34d938b94052
#> 918  a705a472-b724-44f4-b1ca-8b213666ada5
#> 919  260693b0-5750-4041-9f34-13e35979483b
#> 920  252b28d6-5098-47f8-a2f3-77bc4e2f1f7a
#> 921  6b380034-c811-4ed3-a315-75199471f379
#> 922  7514af37-543b-4f1c-911b-4b1851158b29
#> 923  9dd33925-b0f8-4657-b202-b5bdbdbf2fc6
#> 924  d203948e-541a-4e9a-bb8e-68fea502b683
#> 925  9289c431-56d1-46ea-a35e-88fa04fe5183
#> 926  8710b5d8-0708-4cc7-a30a-4a8e4be58f1a
#> 927  8a63237d-be52-4955-b3b2-1341b12e07a2
#> 928  917f76ac-f586-493a-92c5-7e710001e858
#> 929  bb94a8d8-2b56-41d4-8706-f6285f9e7545
#> 930  4a17c8d7-80ae-482b-b121-49d4e26b66d8
#> 931  cf3d3bee-12ee-4f0f-a759-05d251ad28bb
#> 932  aa70ce1d-612b-4ba8-a1fa-4150eeaa59ae
#> 933  648e73c4-411c-444a-bbfd-a0f7c967e35b
#> 934  867d42fd-732a-4a37-924e-976659ae65ac
#> 935  8287285d-188d-40cb-8ce5-d5ad61c5c1b0
#> 936  59f7f5d7-9337-487d-9a00-a6bfb7aed45a
#> 937  a1a0a354-f9fd-4c6e-9874-72235d1de931
#> 938  101965cf-f75b-468f-98c1-58ef9c02d8d1
#> 939  c3067e93-3bf2-4cf7-9aa5-a19dce4de2c9
#> 940  61ce04eb-ba1d-473d-9dec-6cf92f570bfe
#> 941  592ba666-80cf-4140-9a80-f43481a30d59
#> 942  57626a5a-0dc5-4dbd-a46b-024693caf860
#> 943  84c72c0d-45f1-4335-9e1d-897ec510efda
#> 944  d8799af0-9ccd-404e-9422-f35b90a3338c
#> 945  37c1234e-4640-4371-a7b3-11eeabe26d4e
#> 946  3e815450-b964-4f47-a31d-1d0892f8d0be
#> 947  8a96a8e2-075d-45c8-af29-3bf746ff018f
#> 948  cc17edc9-02a6-44f0-ae4f-ade906acc466
#> 949  33c9ec3a-d754-43a4-9ddf-263d3d939c01
#> 950  bc7922f2-5c5d-4354-b7a3-7d0d9531c9d6
#> 951  10589077-ad60-48c1-b84a-fe7d67e81d9e
#> 952  6456e718-fbf9-4d81-8878-22f024f094b9
#> 953  cea1efe6-3230-4ef5-89b0-f75d2bde2ad2
#> 954  ef9b9e06-090d-444b-85e1-c52200b92802
#> 955  8aa3ce2b-0a08-443c-b7c9-d6e3f74e7d9a
#> 956  06a56c70-e7ee-4f58-b868-0e7d65934f6b
#> 957  9ea65895-8919-486b-bfcb-0d759cf69d1c
#> 958  c64adc60-468a-48aa-afb5-525264832f16
#> 959  d17684e7-2541-434c-a78b-4f65a949cb5b
#> 960  8371969d-8919-47e0-9b79-89027d2e13e7
#> 961  394301ce-8e59-4844-9a56-138d7ea17191
#> 962  410e86bb-ed52-4114-beed-1be5c1287cea
#> 963  a404344e-ca31-4cca-aa89-a5d3361166b5
#> 964  c9bb8b02-0279-4286-8025-ca00109acbea
#> 965  d1f3915c-3bce-4063-a81c-e168400feca1
#> 966  4de62df0-abe5-4f8c-a9a6-71fc4b3ae7d5
#> 967  364c330d-4319-437b-9b3e-e0e2efc70460
#> 968  0bb7ea6f-158b-4e1e-9f3d-17d5945e5421
#> 969  b6d4a4ca-6396-4eb3-9fc8-92496f0b2162
#> 970  a89690af-43be-4bc0-b736-1deba6cf5143
#> 971  cb058595-d937-4db5-b260-c332d390f931
#> 972  c438cdf0-fda4-47e0-b0e3-b34b42ce27c8
#> 973  2a292cc2-ca38-45db-8c2d-14b58c47f143
#> 974  3eca9dcd-88af-4daa-9949-04a193580ac3
#> 975  7eb9d432-12e8-4361-aa11-35b480d16728
#> 976  c4449cef-2129-4b58-a97b-8ac4d06010cb
#> 977  f91259c6-afc8-4c9d-9447-b2f0aa88c9d9
#> 978  25b8f470-cba8-424b-a77e-c56844ed9c33
#> 979  6849ba99-629e-4172-b014-82b8853df2bd
#> 980  27cfa113-283c-42cc-9324-f60dfe458cf7
#> 981  f54795ee-71f8-468b-b014-116b23006be8
#> 982  6e941c84-8395-4468-9a45-15adf14cd51b
#> 983  4cd4757c-e50e-4792-b71e-97e82cc08e4e
#> 984  effbca6a-0663-4cbe-816c-6316d9885681
#> 985  917a64b0-6bb9-4ff8-9215-7dec7f791bfc
#> 986  10706c55-1e66-4302-ad23-6bbec3740ed1
#> 987  9e4fd9a0-4d88-49c8-8df7-f98b045f1118
#> 988  1b6d81a8-f7b5-4b0f-9a7f-010fbfc5bf2d
#> 989  97de04dd-6371-42cd-8fab-fb371ebf2b79
#> 990  d729af7e-76a1-40da-86d5-577c41cefc59
#> 991  7fefb932-2213-4a2e-ad2c-2a91690fdf04
#> 992  96f14afe-00f8-47a0-9e25-912dfbdec51a
#> 993  d1458e06-27af-4a60-bd2e-bbff6eeb2767
#> 994  9f7cfa74-f1c3-4f06-a831-738d109be130
#> 995  a5719bf3-8f6f-473f-9edd-9f739325070f
#> 996  e13f117e-3778-456e-b437-08ad5c300752
#> 997  5882a3c2-5a1f-4a30-876b-4df1ee8f5011
#> 998  591a14a8-72d7-4076-a186-664f9c7216ac
#> 999  80e9e64d-ff50-4812-bfcb-c7f01bb1a59a
#> 1000 7bd85eaf-d09e-4f4e-9139-2effd48282a5
#> 1001 4b1314fd-51c8-45b9-b524-145552b33998
#> 1002 f4f9d57f-a198-4f61-8ed7-03875849b88d
#> 1003 840ddab7-2783-4a1c-ba52-24f431b61ca3
#> 1004 f9aa4e4e-3351-4692-9ecd-30c6126e38fc
#> 1005 47ecb2b8-23e0-467b-ab6f-f201cf2750aa
#> 1006 f8f85132-371c-4328-9d09-e00931f838a6
#> 1007 f8902a10-026a-4ff2-93fe-726b195a8dbf
#> 1008 f5b40a16-419f-4551-b84a-4362b0a0ff41
#> 1009 00e25308-1070-4334-9fa5-431f41dbe33f
#> 1010 63c36a9d-ae7c-4515-b166-1cc95c4115b6
#> 1011 099e08c9-c73e-4c63-bcea-21a889ec112d
#> 1012 d1ae8e84-9e2d-4c6e-b720-1e7e0d45c841
#> 1013 fa32d594-0989-4ccf-b003-bc0970abf4d2
#> 1014 b204bfb8-a23d-4a33-979a-8b165dbda60a
#> 1015 cdca93f8-695a-4377-95db-2ea4103b0bb3
#> 1016 390f2fc4-7d50-489c-b32a-8d5f0c75ec19
#> 1017 2f0dc0ed-b3e1-42d6-9273-9a62e1377041
#> 1018 3948ac10-c4d1-4666-b6d1-719936b8b79e
#> 1019 94f51a19-44a3-4b05-b16e-ca6bcef5f6ae
#> 1020 8d2ef99c-4810-4a92-a080-d87501eb679d
#> 1021 a8ae83d3-61c9-4092-91e8-e42f1cca5e48
#> 1022 81a97406-9172-4092-8f10-700345423e88
#> 1023 41038d72-8b83-4e25-b34a-53d3e3e50fe2
#> 1024 7ece2ef6-8fbc-40fb-88e2-b8c540b16b02
#> 1025 0bea84be-3d91-44d5-bb5c-76bc64e10e48
#> 1026 858beb6e-4ed9-489b-8506-0d3926ae7517
#> 1027 d40d3b76-d4a4-41d2-a626-29a93bbfa595
#> 1028 aea2dedd-6b20-42a0-8bad-9d67137a9b07
#> 1029 846b1602-4400-452a-84a2-cf28e6447718
#> 1030 c6c0ac2d-560e-49d8-bd0f-0b99fd183099
#> 1031 c7c06e8d-b591-4fd4-92fc-68b92cdaf7c2
#> 1032 5e97452a-3250-456b-9610-4ee63c42460a
#> 1033 1b988cb9-1433-43db-8356-7bfb707245f6
#> 1034 e9c9ab8a-8e47-4c7f-8258-c39a7c2358de
#> 1035 9e5ccfae-110c-4dc7-a8c5-d64d6d47cd21
#> 1036 99df660b-2212-43c5-b791-26943bdde19e
#> 1037 b09cb348-5111-4e3f-b761-005b02cb1f34
#> 1038 0066ddf6-bb98-4bca-9a74-6f07025ff82d
#> 1039 8dab15c5-5442-4067-92bf-85be7061b0b3
#> 1040 6e920983-7a38-4e90-ad6f-5aec642948a5
#> 1041 5ca4d53f-db54-4a1e-b9b5-d838e108f5b7
#> 1042 cbedf443-133e-40b1-84a7-b0c803754116
#> 1043 1e660269-d008-4ce0-824a-bb79eb2b777f
#> 1044 07746029-4874-4f2b-a5a1-f1a48ffd85e6
#> 1045 d5cf5208-4ee4-4f45-9567-358c137bfedb
#> 1046 ca8135c9-c4d2-4e18-bece-9e52445b5ef0
#> 1047 1773b842-b773-4ff9-bc6a-639d661cd1f1
#> 1048 695e2d66-fc57-4b2a-9f61-87ab364d70a1
#> 1049 eaac2305-15b1-45da-b9c2-20c21c935b43
#> 1050 80f5bc22-b29a-42c9-86b7-6969d96faf47
#> 1051 2475ea3b-37a7-4fcd-9c5c-e769909b92f5
#> 1052 b182b013-10a7-4215-99ae-0945c580fd0d
#> 1053 c76c5b39-3c9a-43d8-979f-0b215156c4eb
#> 1054 b8ab5f53-4159-4f82-99b8-97c0753f0270
#> 1055 d1ffb297-7b3b-4961-b130-f8dfa96e0a3a
#> 1056 12d91d77-52a3-406a-bc54-c689a82a8d4b
#> 1057 212603d3-9fc0-4a42-ba37-c2a06637ecfe
#> 1058 c89022ab-a4e3-4070-93e1-826bf7dd20f0
#> 1059 f4e927ec-f63a-4ec1-930f-a6ccb2259171
#> 1060 5329d195-7031-4209-91ef-e06b41cf7829
#> 1061 6d560805-ff48-44c0-900e-b25704d1a643
#> 1062 a502bc34-34d4-4a1e-982c-afa9a7333438
#> 1063 f8300036-886a-410b-88a7-dfe1811ec4af
#> 1064 140a9b3b-52da-49c6-a070-ee1bf451494e
#> 1065 308b35f6-c93f-480e-98af-0dd3417f07af
#> 1066 0b87de54-54ec-449f-bb73-9f9c4e565021
#> 1067 b1dc065d-d221-481a-bdfc-19d95aa6598c
#> 1068 dd611327-4171-4d9f-a2da-f2d134ca7be8
#> 1069 6c6fe9d4-3e56-454b-a0bd-4d8f2b2dfbd5
#> 1070 80b6b1d6-2069-4c28-8961-5dece1a90c5e
#> 1071 b611650b-53ea-445b-84e7-304b3b24c7dc
#> 1072 c31e6baf-2717-4de2-b425-4e5a638610d1
#> 1073 75c2e34b-2d27-468a-ae83-d46a50030cc8
#> 1074 b3a8863e-ba6f-47be-af13-7a35174b5834
#> 1075 5db0f420-a73c-4436-87a9-ecf11c6805b7
#> 1076 5c597b77-79a6-40a3-b267-1e236410dae2
#> 1077 785d6e45-45c3-43ae-855b-9b59a6c14e65
#> 1078 b601d434-ea8a-41f3-bc4f-b6b4824fd874
#> 1079 df541ee2-3fd2-468d-b715-07cd862f98c6
#> 1080 552b55ef-affd-4d8e-8087-500f8dc27fbc
#> 1081 b46fae57-3f18-472a-b987-82d3e09f190c
#> 1082 e2bc369e-e45d-471f-b7d8-85cd0060b07f
#> 1083 c66ca4a2-91f9-4da8-9bdd-400f09a24d20
#> 1084 753f2780-ac05-43b0-afde-d6bb45960633
#> 1085 9b3ee2a5-2e0a-41f8-88db-fcd4966bfe26
#> 1086 f0adc226-e3a6-428e-bc0c-c97afbf531fb
#> 1087 fb8d1164-78d3-414e-ace3-899cdc1f2048
#> 1088 6086eb59-91e8-4a8a-b202-e6878b11c92f
#> 1089 43d71e15-30af-4ecc-81e6-3315615ee3fa
#> 1090 2ab0dfa3-c3d6-441a-a06e-81116e12372d
#> 1091 766f4a32-d345-430c-8131-122547b3a2f0
#> 1092 acd297a6-d85c-4de4-b0b0-a04ff8b3c5db
#> 1093 b2bf145f-efba-4ed6-96b8-5891268f98b4
#> 1094 39dffa0b-b295-45a5-a35a-e5dbe80603eb
#> 1095 4bb2d1c6-5380-4a63-94c5-e781575d8d26
#> 1096 add24e9b-03e6-48b2-91aa-f3dd4ac57ce0
#> 1097 441d965a-2238-4fd9-86ce-351d0b9cfe75
#> 1098 ebf41d90-3b61-488b-87aa-5354372efd20
#> 1099 02aa3bce-8c54-48cb-9f4d-378d9ab52659
#> 1100 53872572-0303-4820-a4f9-055c8cfff345
#> 1101 c6406f09-3290-4564-959a-a1933fe27b96
#> 1102 31f0bd29-7384-4d67-bb05-5fe451740aa7
#> 1103 ff3bf4dc-833d-406a-9b37-b42646a5d9a8
#> 1104 35717f1e-290c-40bf-92c1-922bc97bdd38
#> 1105 c774da15-b3fd-4178-8739-c594ce44fe82
#> 1106 af715fc6-92d3-41cc-8f59-95e2fb7e5121
#> 1107 2431bab5-c4a9-40de-9467-d99022307fa8
#> 1108 499eca4d-76d0-4429-bfcc-0eb9f179e2d0
#> 1109 b1358f1c-49c5-4b7a-b37d-7f9375eb091f
#> 1110 a46a1db1-9a61-4759-becd-c227b8c79f42
#> 1111 a7410351-cbbf-44bb-98d0-5179af6285c9
#> 1112 3fe7a917-d918-4f0a-8c34-cae366a196d4
#> 1113 5e26b852-0572-4cb5-9b47-02308703dd72
#> 1114 9885e3e6-3e2b-4f6b-ba89-21fb01a067da
#> 1115 0af9bbae-c80c-40bd-a516-d0280a78f973
#> 1116 b0b1edd9-efb0-419c-9949-060200871f20
#> 1117 75c8e1bb-27d1-4b9d-b8ea-938fc4a5dafe
#> 1118 60db9156-c36f-4ff4-9517-6c2df0181bbc
#> 1119 0e64dc00-f92b-4b64-bc81-1b4ac4b30665
#> 1120 2ea2806d-8b68-461e-80e8-dc155fecfc0c
#> 1121 4bf35e6f-4835-49f6-a9d9-13164fb604d6
#> 1122 d41435ff-0605-40ba-8ff8-dc0050b40460
#> 1123 716b88d6-c610-4a2e-be54-2c0f6a720f72
#> 1124 129bfae0-c5c5-4116-ac2a-8cb582c2a941
#> 1125 c29800c7-46ea-4912-9ae6-370bbf65f7d1
#> 1126 42dcb403-1283-47a4-b774-17dfa41eab0c
#> 1127 0a0a3284-2dac-410c-8543-4f5406d68d8f
#> 1128 a0cc1f01-9f30-4f98-8cc8-d9039b98ba0a
#> 1129 7ef367c7-3b5b-44ef-bd5c-6f91f8634a1b
#> 1130 3d85a819-0804-40af-a02e-ed787af893f7
#> 1131 3b2306b5-b9f0-4e90-a359-89628a262e03
#> 1132 01ec4954-3a2a-42e1-854a-e0a3309cc0af
#> 1133 ea266d77-8614-42ef-a7e8-4a6b2746fe58
#> 1134 69b8fb34-d878-476d-92a8-93e7d317f966
#> 1135 704ae94d-c703-4b40-9b70-6d41130be8f6
#> 1136 bfb01381-5f5c-4894-8246-285a74d6e547
#> 1137 91d68903-4c9b-47d9-8893-cf4a27e3a2aa
#> 1138 3065fafe-5d94-4b67-bcab-b361bbf64dbe
#> 1139 bed5ef9b-b300-414f-b9c0-53f2e5b018eb
#> 1140 f5fbc186-4e69-4bd8-a846-995e639219e2
#> 1141 d0bb9924-e305-489f-85bd-73f93f0ad8be
#> 1142 65d60c27-d886-42ce-bc09-8a9936db8005
#> 1143 99b0e0c5-2c5c-41e5-bd7a-571124c64689
#> 1144 cffff001-8630-4626-b05b-9717c0691511
#> 1145 95eb518c-52f7-4462-a7b1-4b4629b99fa2
#> 1146 b9870df9-ee95-4f37-8358-d636d9da15ed
#> 1147 6745debb-88a8-421a-b7df-c925027588c2
#> 1148 75f2878c-cc62-4cb7-896e-50ec544788a7
#> 1149 d93645df-7ed2-4f8f-9551-c467f04c99a8
#> 1150 7afbaa86-6d64-4e72-9e21-75d311d22852
#> 1151 2acf0630-7482-4136-baa5-cfaac25dabee
#> 1152 68829fc0-a2a8-49ed-a108-7debf70d1a4b
#> 1153 7eb36152-4da7-40e4-8b6b-787a2a1c31c8
#> 1154 01d27f2f-1b81-4c17-872c-3d389aa41c2d
#> 1155 bd8ae9d0-fd19-43da-92c2-e265a6f9cbfb
#> 1156 76f3b504-9a5f-4b80-8995-8d3ec2157350
#> 1157 e2c092d6-47bc-4d58-b445-0c8220c4a86b
#> 1158 89b212b9-8332-4f8b-ad84-b254f2dc7b3f
#> 1159 db283534-7105-45dc-9e7f-1099fbd3efaf
#> 1160 568f4eba-9b4e-4db4-b047-9e541e5b2a00
#> 1161 920cbe8e-9734-4ccf-bf8d-0371e99fedbf
#> 1162 9606838c-3916-4aed-907f-2d8a90648465
#> 1163 7776b862-7144-4382-b034-b71d941f5426
#> 1164 89a4cd68-788d-4d8e-b3e1-6b2a2179907c
#> 1165 a8d533ee-9adf-47bf-aab0-d4638358b51f
#> 1166 65e1dc11-6f1b-4a37-852f-8b23c6e4c47a
#> 1167 f7a8471b-822f-4184-8eeb-f3714b8aa1ef
#> 1168 dd1df921-4867-4d37-8911-4889aa603258
#> 1169 af190356-2442-4c2d-aebf-fb690a1487e8
#> 1170 26181e30-6f33-444b-be04-01c85c6001d0
#> 1171 0be1dfed-4e00-4a92-8d21-3af7a580151c
#> 1172 50560bba-7053-4b33-85de-ba5274b1e3c9
#> 1173 d09340f1-4420-4556-a12d-6fbd388fb013
#> 1174 029d0b5a-cc7d-4054-b223-5984ecbaa6c5
#> 1175 5f2fd694-ec97-418a-a5b6-806768822dd3
#> 1176 6bc9d4fd-6c31-441c-a113-c62eab09485c
#> 1177 ad966d58-0afc-42af-a207-ebdebd544c62
#> 1178 9a592f84-d274-4930-b6ee-f4c22e8575e9
#> 1179 0277570c-e9e2-4807-a166-cb868e522b8d
#> 1180 24fe3f51-0589-40ab-a9a2-c6dc6776d5c5
#> 1181 04d77e19-40f8-4d61-bece-7f0adde77d96
#> 1182 3f9200bd-513f-44b0-a3ed-9674465eb56a
#> 1183 e7cf1216-6564-4c61-aae4-0c0616e2ca88
#> 1184 7b474a10-3a60-4567-9eb5-1618a933a3ab
#> 1185 17c5453b-c97d-4a61-8156-21e3c07eaee7
#> 1186 e3709504-9bac-48e7-9212-10728ad5d554
#> 1187 19b89111-0586-4483-93d9-bed1385a6147
#> 1188 2362ddce-9ec8-4d73-b0b8-dd557e824784
#> 1189 e10e4a68-ef33-4b1f-b074-3676d1ebba60
#> 1190 31faae04-a948-4e14-be80-69d1371f5a07
#> 1191 e80a7f4f-cae3-46b2-8d57-48628574b90b
#> 1192 ab60b9f6-ca47-4751-8806-908091d44e3e
#> 1193 3cafcde4-cb24-427a-b75a-c9943d26a6b6
#> 1194 c6e81743-e764-441e-b237-b187b949013c
#> 1195 02cbd9f4-7381-4c81-8b04-1bc58bee0f38
#> 1196 c57154f0-f69e-44e0-8013-a870ac348853
#> 1197 97f4a7fb-7720-4de1-8478-af07ed56fccb
#> 1198 c94d7813-a4a1-4082-a5b1-86b69de1972f
#> 1199 9c7be901-96c7-45d7-a914-3d9eb72129fe
#> 1200 61d46165-fdb2-40a1-bd20-c9a3ac79b929
#> 1201 9790f953-1aa0-41df-93ff-4c77c76571fe
#> 1202 18059b23-339f-4467-99ef-16b09014d058
#> 1203 e7411534-dfc8-40b2-9a36-dd30ed9f7fa2
#> 1204 f70b97ce-8e83-4541-ae8b-11335da613aa
#> 1205 07bb5928-aa1f-4913-9ce9-c885c36e7967
#> 1206 907e79df-3642-43ec-9d8c-71e9322261ba
#> 1207 89926075-9734-46fc-9e0f-97de468e8308
#> 1208 7331a72a-ce49-4c32-b00f-0f525adc8ce4
#> 1209 c445048b-d313-4739-9723-cb60a0484620
#> 1210 57282846-26f6-4a14-9eed-3bb1e40e6c7b
#> 1211 9aa32f1a-bbf7-465c-823b-7c8b5e01af1a
#> 1212 c4645821-b8de-4bec-8753-794265167fc8
#> 1213 3de2d797-8ef1-47b0-81ec-c2679cc0922d
#> 1214 0913de61-76cb-4531-9340-d1bdf00d8c3b
#> 1215 31e7fdbd-764d-4599-9a5d-a14123938500
#> 1216 2f0aa33f-e1b0-48ec-b569-068b166be4ec
#> 1217 aec2954e-7e1a-422c-b1c1-7b26d843083f
#> 1218 818073e2-1586-47d0-941c-455319b3bc49
#> 1219 b1e78396-ebb4-4e01-91f9-533a41c732ff
#> 1220 a1207be1-5974-489a-8ada-af695e370c30
#> 1221 50ae6ce1-ea69-4b84-a795-1d8f77658602
#> 1222 8c9fc45d-711d-40c3-a862-ff7496b5b38d
#> 1223 465f3325-d13b-4cec-b37b-17aa8601f1d4
#> 1224 7e6e0e47-bbe8-4ffd-b2b6-fc5a8b28d185
#> 1225 7d4fcc0e-f91c-4e2e-9355-24371338b78e
#> 1226 0e1a5aee-3bbb-4330-9df4-1d02c317ba23
#> 1227 8632cdb3-a52b-4f83-a6ed-ce9312e8c763
#> 1228 cf07a575-a47c-4147-a0a4-ed562042f3c9
#> 1229 5acbae10-f189-4b70-96cf-0cb2b0eb5081
#> 1230 780a10a1-efff-4bcd-b3d8-f2e4735ac0bc
#> 1231 3e59119d-ec4d-485d-a80c-54b490ba0e14
#> 1232 2182d8ab-9f39-499c-bba2-b2e7bd9aa25e
#> 1233 7b72cd21-c6ae-49e0-b0af-0c97a67ce240
#> 1234 ba271e6b-f78d-460c-9953-54c7436770a1
#> 1235 a892a3a1-b0e7-4e0e-92ea-1e85750d5d7f
#> 1236 80008fe8-5d0f-46b2-a88f-de34ab09bfb6
#> 1237 6baed481-a782-45b9-aa53-05490cb5a365
#> 1238 aa264aca-d979-4b1e-83f4-c6cb88102cb8
#> 1239 b0e0049d-7c2f-42ca-aabf-f80c89b5600b
#> 1240 71929fb0-136c-4fca-a840-3b30df5aaee0
#> 1241 eabd29e0-783b-4d63-b4dd-fe8ef79dbdd4
#> 1242 1ba9e309-1a02-4033-8d12-e1d4996e5e29
#> 1243 80466b00-7a0d-4b26-adbc-c72eeaac1478
#> 1244 f924eb20-2db3-48b3-bced-83372a33be4d
#> 1245 860d3ecf-c13a-4b00-8de2-f5d919a49f1c
#> 1246 b8483ce1-0461-4dac-9746-6c429b05413a
#> 1247 635d90dc-74e7-4635-8055-c6d3a42308f4
#> 1248 860d5662-f63d-43e6-97da-8bc62502130d
#> 1249 918c7e40-0364-43e3-983f-385f8a0d10aa
#> 1250 608d1519-d7e6-4ec0-abdf-09227556eb0d
#> 1251 1ee8aa9e-63c2-49e9-a9fe-0f94a097369a
#> 1252 0bd1679d-d365-492f-85a8-db493898fa0d
#> 1253 faa0be83-e841-4406-aa3e-257d7fb89f7e
#> 1254 8ba956ef-6e4c-422f-ada7-129ce04afe5d
#> 1255 a89d08a2-ea2f-4bc9-a7e1-9372b209cfc1
#> 1256 f14b2809-28cb-465c-9350-8d41ed7fdb36
#> 1257 24deb3df-f2f8-4266-80f5-aa29073a1b64
#> 1258 251a0cc9-3d3d-4762-ac5f-26a72e74f0b0
#> 1259 04a2e4b2-adb9-4a32-ba51-e10af93eac4d
#> 1260 de5ca148-2d21-477d-b290-68c28e236d1e
#> 1261 ec3efda5-f642-4c45-ae6e-b1eb5d3c7ecb
#> 1262 ede3c164-6583-4d78-89ce-9d2584517890
#> 1263 eaee15e3-5311-4cbe-bf68-ad37696681b8
#> 1264 2e7256f2-c406-4853-941d-5d820c1802d6
#> 1265 4bbfa87f-77b4-4b77-a8d5-1f74e165cd67
#> 1266 890a98bc-08a1-427c-8191-fc89bbb3e04b
#> 1267 5bf0b79a-8855-4a69-9cf9-364f838e0c71
#> 1268 7c1392c0-7857-44e5-8c96-c096d06eebfe
#> 1269 f32b92c7-27e6-4da0-89b6-564afecd60c5
#> 1270 9d4822df-1ec8-4046-b686-0f5d68c4944e
#> 1271 9b52e99f-9068-45bd-bb42-d5cd83da3f2b
#> 1272 9b89bc70-3dbc-43e1-96d4-f26a240ce0fd
#> 1273 9fd54fad-228c-4e65-bd9b-a904faf13e0d
#> 1274 e1ab7370-e947-47a3-9d83-1dc1566a4501
#> 1275 9d55ca16-0ef6-42e5-a099-2a7342da8940
#> 1276 1781f022-b1fd-482e-8539-2b5a2f126bcd
#> 1277 f4c8de3f-3192-49fd-86a5-7b482790824b
#> 1278 75fb674d-08f8-4b83-960d-b0201f89cb17
#> 1279 9c85995f-0af0-4544-8fc8-601fa751823a
#> 1280 f2a72085-200a-4283-a23a-d615e2b19c8a
#> 1281 99744d8a-3ae8-4576-8181-022b0f53c497
#> 1282 32139092-438f-4620-81c1-8d55e4f7e3e5
#> 1283 2e50c257-b3b3-4444-b19c-89c63f77986b
#> 1284 dcbee63f-a682-4acd-8129-2ac4d2ad8f54
#> 1285 c0615214-6fab-4fd8-a931-daa0f9ca4c5a
#> 1286 7c933d8f-a6e5-4cc6-b10d-f0f58a1a4420
#> 1287 3033c779-9b6f-41ca-9c65-a9b56222f126
#> 1288 839f0386-5f79-4af6-93a2-34d60d65f977
#> 1289 b840f843-513b-45cb-ae57-e2d6b18ae122
#> 1290 7ada8d0c-cd59-47d9-8209-a2781145154c
#> 1291 2d7e3cbe-d647-4ec1-9c15-3056d575e030
#> 1292 2b7b30cc-d9ab-4aba-80c6-856c0bebd602
#> 1293 31dd1864-442e-4fa3-abf0-f537287dff8f
#> 1294 40509053-cfc1-48cf-99b2-d1be6bb0d5c5
#> 1295 4196fb90-4945-4c98-a332-9aedcd569cd1
#> 1296 b235727e-9531-4fe5-8fba-96d6177bd7aa
#> 1297 baddf941-ac74-418f-a4a9-05506497fcda
#> 1298 19067d4f-8857-42e7-9cbd-ffe0d8042d08
#> 1299 d31df532-7a84-44b0-946f-87df7d7e7a6a
#> 1300 6fa0b518-7dce-48cc-a640-b022306cbd57
#> 1301 d954bac0-cca8-4dfa-befd-45631ab5feff
#> 1302 00f74258-5979-4326-9b5c-0f65b38e80de
#> 1303 7b8784d2-022c-4503-995a-796840958ca4
#> 1304 80cca25c-d73d-4b9f-bbdd-d2a6ebfa342e
#> 1305 7dceadc4-4e75-4957-b3bd-eb8dcedbeff0
#> 1306 3d2168ca-0414-46bd-a3eb-c118443a4b58
#> 1307 03ac6bdd-02f7-4efb-b491-fde9ee4541f8
#> 1308 cc0bdce8-3b6c-4b3f-81a0-db4ff8b37695
#> 1309 563a28e5-2f98-4091-b2be-7218a18226de
#> 1310 290a92f1-3e1a-409c-a1cd-06b09cf8e5e8
#> 1311 0b3ae1bd-49bd-4a10-b128-8eb69d1da721
#> 1312 a142db74-e4da-4508-82be-ae6d0341fa53
#> 1313 e5430d20-8319-4b55-bd46-050bc93dc0bd
#> 1314 4d2799fa-1719-493e-a15e-a0f749ee9461
#> 1315 f54ce02c-9019-49a7-ac3c-a1314ef923ad
#> 1316 eb7f1b4a-80e3-42d8-aa26-17a9324aed3e
#> 1317 7d5500e5-37f4-44b7-9787-247b2d586e32
#> 1318 4e02e7d3-f066-4d09-be63-190008451bc2
#> 1319 56df314a-080f-4165-98fa-b3df06d3c85d
#> 1320 5dfc49c0-db7e-4019-a6b2-a40787e67c81
#> 1321 689e8e0c-9586-4106-9a02-b838e9b5a848
#> 1322 f34a538d-4a1e-401a-8416-ec08bad62c36
#> 1323 f4ede5d9-5a03-464b-b6c8-ec7c15226143
#> 1324 e7dc5daf-be84-477d-875c-61583b2c68f8
#> 1325 3e64a2c9-a1bd-40d2-969b-37d20e073b96
#> 1326 0f4be146-1a51-441e-9a9d-cb7e5da2e76d
#> 1327 74cd9a25-e90e-4d2c-be46-ed2b553d78a0
#> 1328 7cf7206f-a6a9-4c94-926b-6ef808c7b6b4
#> 1329 91b4bcb1-a507-4dc1-89cd-73cb1d965d12
#> 1330 0e348a84-611e-4165-9df1-5a190ac234c1
#> 1331 1427dfc2-bd6e-47bc-a305-3429aca934b8
#> 1332 d3576eb9-199f-40ca-9ee5-019b2b084d57
#> 1333 75278bfd-c3bf-4d00-95b8-9c6058e2071e
#> 1334 29480ee3-bb4c-4b08-8f14-51418faf1f85
#> 1335 89248416-cf93-42aa-aaac-8c91a77d0fd9
#> 1336 7eae2acd-5ac2-4d58-92a5-21217f71b509
#> 1337 3be2058e-9abb-4137-a8c6-8b1a41ddbfef
#> 1338 8674fe52-4cdc-4d41-8e54-585538a7199c
#> 1339 652c4541-1cff-4a63-be7d-2f0a93293ada
#> 1340 b679b48c-458e-40b8-ab2b-b48dc143d935
#> 1341 32984e28-44d0-45b7-a4e5-3121bd51023a
#> 1342 0f12322a-82cf-4447-bb9c-713e067b79ee
#> 1343 3ea37415-a8c2-4311-a39e-c9934463d0f8
#> 1344 ff3bf100-43e7-4b55-b65c-c9ab517df6b4
#> 1345 cb30a74d-7394-4770-9ab7-c558197572ca
#> 1346 3b631fbc-aca4-4fd1-97c4-4bfaa6188af8
#> 1347 783c263c-889b-4af8-b1a3-18c0717926b2
#> 1348 b8ee4b63-dd1a-45ba-962f-7fe2913bb93f
#> 1349 1bbafbd2-4a41-4003-912d-1a6d913a10fe
#> 1350 458e5328-8d08-4ea2-9233-927632bd70fb
#> 1351 8dd307a0-1625-4f7a-82ff-bd94a7ff1ca1
#> 1352 515630b7-fa93-4fef-8bac-a1479b98151e
#> 1353 9060c63d-000b-4406-a972-afb9d3c914b5
#> 1354 efe23b97-fbea-4b5a-9b3b-91c68bfeb305
#> 1355 7332a308-97e7-4471-8c79-5587d5448c34
#> 1356 2ed90404-ef82-4175-94a5-990f93774e78
#> 1357 cfc6270a-1c9c-4637-9434-a0186d4f398f
#> 1358 8be6d1f2-e455-454a-8cb6-9f69c0874ba8
#> 1359 88fc14a5-9d8c-40ae-908d-00b22f0a434f
#> 1360 3d1f00a3-5bfd-46ca-b911-2b582c6640e0
#> 1361 9856d73c-6cbc-46e3-8571-4777d8ca5abb
#> 1362 29832c2e-30fd-4003-a220-4d8dc3a3d217
#> 1363 91a32a95-f228-472d-a139-68d59eb17b6a
#> 1364 31278e6f-10f7-422e-9b61-d7d807969ca6
#> 1365 2bb4a98f-5e84-441e-aad2-884decbd8761
#> 1366 faf2abc5-538b-49f3-b3e6-2c13ba009416
#> 1367 6af23b6b-7514-44e4-83b6-8bc3d760f7d0
#> 1368 8c9bca68-82e1-4e06-8d94-d0c3b346c14f
#> 1369 1c2f622e-22af-4ef1-8763-1569604d7cf7
#> 1370 2c1a9cb7-b4e8-44e8-90dc-cd290ccebba5
#> 1371 3690ee9a-8438-424c-a7b2-fd7f89cacee2
#> 1372 1486d644-f3dd-46ab-ae1b-9827a431b610
#> 1373 e1b8b431-251a-48e9-a72c-5c50ec1dc79a
#> 1374 3e09b9aa-7c76-4ed2-85b9-c6509de21d6f
#> 1375 2d3a4b69-df9b-4b15-981c-61f557477d6e
#> 1376 eddc2928-8ae2-46ea-8580-1744ddb365a5
#> 1377 585afdcb-541e-4131-9788-f4b9008a081b
#> 1378 8c19d855-d91e-4846-8806-0730dd806d8b
#> 1379 bd991f2e-721c-4808-980d-3ee9ab88bd9d
#> 1380 64353d27-2d96-4748-8a36-a96217b26ebc
#> 1381 7c0e5adf-2278-4614-b4a4-4b3282f5bf16
#> 1382 86bb734c-41e3-408f-adaa-42737bb164d0
#> 1383 d2d2b1d7-0223-4a48-b300-9f8e75280775
#> 1384 f82a4d56-6b53-4bbe-8188-a669b7740bff
#> 1385 cb34e17a-d836-4899-a15d-9335d9036693
#> 1386 9b787366-0cf3-4c6b-a7a7-d8b5213cd6f6
#> 1387 8e7531e0-9933-4d9e-ae87-ad3bf2ae2439
#> 1388 99339c66-011d-4292-a54b-eae31ea36d9d
#> 1389 d96e0dc3-0a4f-4a11-8416-9f16c6932339
#> 1390 2293d754-289f-406d-8b5c-7986887d44b7
#> 1391 5eabe069-148e-4247-84b0-843192a2551c
#> 1392 8312cf0e-bc91-45b2-b2fb-6f3627357485
#> 1393 2bd8b24f-7c31-4bfe-8769-0cf96b2cc5e1
#> 1394 24aea91e-aa6e-42fb-b7bd-cf686540f0a8
#> 1395 3e14963f-b46c-480b-924d-9587a166f2ab
#> 1396 578a9219-9ad8-4578-8502-ac6112701fc9
#> 1397 27ac51d9-65ac-4afa-ac6b-c4325c760d22
#> 1398 63c38b2b-b2b0-43f7-803b-479ac71b8478
#> 1399 08ad45da-f658-4e17-a6a5-719dfb4ea661
#> 1400 4d6dda26-ca8f-4283-bb35-44ad6eb67b62
#> 1401 11f6aa83-95fe-4a2b-8539-9c8723f31e43
#> 1402 2f099ca8-2401-4cca-bab9-a8b0e3d5a4a6
#> 1403 b3619fa8-f93f-43f6-ae2b-e0d2e76b3d15
#> 1404 6c43f325-d84c-4c19-bef2-71d83f16958f
#> 1405 27850e8a-1447-4cd7-a8ec-a419eb22a2d8
#> 1406 3e883e34-5638-46df-becc-2e2c692da85f
#> 1407 747754f2-371e-4dd3-ab96-78f6747fcfe0
#> 1408 7463a0aa-0ec4-4c91-97dd-7555474e11aa
#> 1409 055f5045-8070-4995-ba00-3eed1654f35d
#> 1410 b44131dc-9ab5-4b93-8a6e-916a8f85d356
#> 1411 be9a5d74-60c2-480d-8a8c-ca124cfe0a25
#> 1412 3bd312f6-fd46-4fac-9ae5-dde00a50c2e2
#> 1413 467ab82d-af00-4c08-9b7e-c091c4aacb4d
#> 1414 a64d32c0-c502-4646-8845-3c2016b3fdc5
#> 1415 51c81272-78a3-4b59-9aa8-984ca51c74a1
#> 1416 601b04c6-6349-4519-ba7d-dca3f087a2f6
#> 1417 c127de55-a4ef-42ee-af92-c34712237f6d
#> 1418 9dafa7db-b74d-458c-8cbf-a8fc3ccd5653
#> 1419 d5e233b4-b1c9-495e-ade7-ed92cf6fa1df
#> 1420 af213079-2da0-4705-bfd3-f6dbf63a68dc
#> 1421 bb318bb7-7687-4e82-b76c-22bf37d31398
#> 1422 b7ffef67-229e-441c-b587-e80b4ec3c2b1
#> 1423 f7918934-f4c1-4052-8bc4-e6f7a3965fb0
#> 1424 1b4f0eda-074a-4231-a456-8108cd208dd9
#> 1425 0ff6c7bf-034e-47ea-81ca-823607e2d4f5
#> 1426 61ec28b1-eb83-4d67-a15f-ecf883fc73f6
#> 1427 2f2355e1-186b-439e-b98d-18fa9f806084
#> 1428 c4cd256d-5199-4e2e-8724-9d5a5914ec25
#> 1429 b3b5cbfb-92fa-44f9-9b37-63a6863a40ab
#> 1430 9de37e65-d471-4d5a-905a-25853456a5d7
#> 1431 8288d34f-95d1-4e9b-aa4d-15a8de0802c7
#> 1432 2a04372c-a18e-458f-bfd3-60687a0ae7f7
#> 1433 ac5edf9c-f83a-432e-b335-1f690e6d17fb
#> 1434 759a4317-2b93-44ca-a283-56c000af0cda
#> 1435 f69575b9-3392-4faf-95c3-c7d15c6407c5
#> 1436 253cf3ae-5964-4564-96d1-4927d9e36ee5
#> 1437 7e86b3f9-ae72-4a64-95f3-283ae44387a1
#> 1438 c74de7eb-55c1-4481-8934-80e41c392f17
#> 1439 78d0f866-3bba-405e-9653-bb97ae5b4271
#> 1440 7a6b44d2-d51d-4198-a411-21f418662e37
#> 1441 fff74c18-ae7c-4a04-8a2c-a9d2211acdde
#> 1442 f3c6f284-4a81-4794-afc9-24423acc912e
#> 1443 65d4de8e-4f8f-40e9-90af-08111831b86f
#> 1444 b3d4e2b8-ac56-4b26-a251-ee9599ffec38
#> 1445 e57531ff-19ba-4a0a-b1b8-5b69e07c6516
#> 1446 a0cc3a6a-20d8-4f93-b92c-ec935a23505a
#> 1447 35e4ccc8-e949-4b75-8bc5-0cb2dde96fa0
#> 1448 7fb220e4-14cb-4507-8ec6-1a3fd946f0c3
#> 1449 093d6a1b-5482-4880-96db-511b8adfdfd5
#> 1450 3e23d43f-9c3d-4336-a7ad-ef8a422ef3bd
#> 1451 d4be8aeb-5a77-413b-8622-2149a2c58589
#> 1452 04905770-c624-4a39-9b6f-773c60c8743b
#> 1453 43409221-5f58-4f6d-9911-4614c73166e6
#> 1454 2d1617c2-4dc0-4701-9651-db3cc185ac87
#> 1455 52fd0a87-e177-4ee0-ae40-67b838f0c7a6
#> 1456 eebd0645-c01b-4bb7-8caa-1c3d966e683c
#> 1457 daf5d1c1-a298-45d6-91a3-5d1362f1da88
#> 1458 e4172f22-c948-4d8e-8746-665e9d160e26
#> 1459 ef4bcbda-dde5-4321-a407-ce3fb0d0d424
#> 1460 b98c85a7-fd02-4269-9f7b-cecf5194ab57
#> 1461 337a33a9-000c-4f70-bc57-30598e7f596f
#> 1462 c364275d-409d-496c-a198-c6827c1f7482
#> 1463 2e3880f4-b107-4a55-b447-960dc836a7c7
#> 1464 fc5f60ed-2612-462c-8e84-6983bebf6363
#> 1465 e4c29e01-766f-483f-a34c-c02c6bbf170e
#> 1466 a85c433b-5273-42c5-a958-954a4e6c5b3d
#> 1467 65392328-57e5-4528-bad5-d85560fd97d8
#> 1468 e2a6a0bc-fe53-435a-8631-c6ccc94d113c
#> 1469 3a1cbb60-778a-4b6b-b20b-b657958501e7
#> 1470 c323d4c5-c1b5-4c30-854d-1dee881de6f9
#> 1471 8c0843a6-88ec-47a5-9972-53ea62b96d61
#> 1472 e91c2348-b308-46aa-b9be-b1de493b61e4
#> 1473 19ed5d39-8fec-44a1-8296-d481ce6897df
#> 1474 4e6261a7-2352-4bd8-8573-bfd644c9c057
#> 1475 2e7f8bf4-9f8a-4d48-9140-3730529e2e8c
#> 1476 f4128627-bffb-4b75-bfa8-5e9b7dea00a5
#> 1477 123cb123-e6ea-4891-b42b-9faefecb065a
#> 1478 c1c03ffa-41e0-4f40-9cc2-22a5b539679f
#> 1479 cf904075-b3d2-40af-a7e0-ae07725a2303
#> 1480 ebd7f403-03f9-4df2-bd55-cfce0fe45dd2
#> 1481 a805cd7d-8736-416f-a11f-97fa40dbf88f
#> 1482 497f8157-6296-4811-b5ba-ab005c1f02d5
#> 1483 c9997edd-d380-451c-904c-4d28fada8666
#> 1484 49c36580-dd80-4f1f-84bf-4318e6ba93e4
#> 1485 0adc3195-d532-465b-95d7-39b511d78e2a
#> 1486 ef9c2e5d-232a-4eb6-bef0-4b44cb2af98c
#> 1487 10d7b729-fd3f-4a01-ada4-1363d90840fd
#> 1488 38403ecf-c92f-4bf8-b5c9-838395f329cc
#> 1489 f6b0c527-aed7-4d38-95e2-63713c1efa58
#> 1490 98d2e6e4-ff4d-4e0b-9da2-77f5ecc2ccae
#> 1491 ba8a8339-99d1-4365-bb70-12560100a712
#> 1492 fb5ecb80-c7a2-4b5d-b53a-7f20c7489327
#> 1493 8e76ee7d-1d37-4182-ad18-28d0274591b5
#> 1494 1dc9f7c2-54fa-41e3-ad4a-5ad2c1d0fc89
#> 1495 c691e211-0b44-4a10-be4e-aba7e8e189f1
#> 1496 20546313-f1bd-4972-979b-9fde12bbea76
#> 1497 8dfadfa1-3420-4934-9c20-3baba988f6ba
#> 1498 c70da3d9-a401-468a-a37c-d24760c45be0
#> 1499 045acad1-c02b-404e-a2e0-28c65af33138
#> 1500 f9a904cf-a87f-4aa5-9eb1-b86355e7b953
#> 1501 a5c0db3c-a414-43b1-b434-684860a03d0e
#> 1502 fa21cd80-b387-4f28-9489-1dc0d2f127dc
#> 1503 9d424b67-00c1-44c1-b112-fae6ceae7087
#> 1504 05e1cc14-d2c0-431d-9ed6-84e12c3726f7
#> 1505 beb3a020-75ea-4323-90fc-482aab87c265
#> 1506 83a7fbe1-fb4d-4b2d-9d01-c5d2671aa6c6
#> 1507 77f4d411-fde5-4926-aecd-e91fc77e6c68
#> 1508 901cb82d-5675-4a8a-ad9f-bcba395c67a6
#> 1509 310c621b-354f-4bf6-99db-21ef05d82147
#> 1510 8bd7fa06-008b-4d91-8b82-c7e35e82b50b
#> 1511 995215db-8e33-46b4-a0d6-840c40b89e6f
#> 1512 5e9573be-dfb6-4d85-b932-0f6504a866ae
#> 1513 479e6d25-5548-4de8-bf3e-063a542e30c9
#> 1514 d62f9f7e-8fe7-4dac-9ba4-6c23808e9288
#> 1515 bbc613b7-54b8-41fb-bf08-8dedf15d5553
#> 1516 0ac1d30f-88e8-41af-917b-937a86092320
#> 1517 71d8bcf3-ea09-40e2-b7ad-e3a4d0f09263
#> 1518 f75ccd0b-0c23-4e44-b6b3-6eba5fc77e12
#> 1519 1928f718-e17a-4a50-a58f-69d41f1c3b95
#> 1520 1c7f888d-13ea-4d55-ab50-cf2f874417bd
#> 1521 34d1649c-d4b0-491d-83cc-be6e961a6172
#> 1522 cf2e9489-2ae2-4c73-b09b-5697d7e23540
#> 1523 aa1bad9f-8379-4651-a8d0-151fb54b7b5b
#> 1524 e75b6b83-ef0d-4607-bd21-53d582458120
#> 1525 45b73bce-7662-403a-86d2-55eab2b92252
#> 1526 ea2b49d4-d7b1-4c0f-bfef-977b9ff1473f
#> 1527 a18b44dd-1385-47b8-b461-6b1a919a7e7d
#> 1528 7c0fb302-67e6-4433-9a0d-9c592e6a6e96
#> 1529 7382de47-7a5a-4dbc-aa1b-7d5e7ca4245f
#> 1530 bd3890fa-8338-4d68-a834-b65acdb2f6a0
#> 1531 f213274c-028d-44ce-93ba-89390f207a03
#> 1532 ee545453-ed04-43f7-9a2a-816799a67445
#> 1533 380de313-a344-474f-ba98-defa8b5ae371
#> 1534 76b23d5f-1dd2-4294-ab3a-5946abe45076
#> 1535 ef11b9aa-fef0-4584-a911-8b5d22a3d208
#> 1536 0489572d-78b0-429d-bb13-e0c878bb2156
#> 1537 d8ff17fa-2708-43ae-a106-8d61966dbaf1
#> 1538 01acb6ee-5ee7-477b-9c9c-9d97ff249d9a
#> 1539 c7a4e99a-3796-4c4b-ba54-78ae1465a5fa
#> 1540 d1009d5c-3351-404d-b12a-8018f7459069
#> 1541 1c2219f4-c039-41e5-8472-f970b86261fd
#> 1542 6d1bd25b-b547-4fd7-8a47-1f886e0c1a05
#> 1543 1b5853ae-8796-4c7a-860f-981ba04682ea
#> 1544 6d02bd15-fe6e-45b5-b535-31d6b75476d8
#> 1545 776969a7-1d7a-4529-84de-77fcf8075bc1
#> 1546 5f5f8ce4-ba6f-494b-963a-386d31bc59c4
#> 1547 64fa1110-03d8-4127-9cb5-3f125c2fa440
#> 1548 a5ab4475-7f76-4b53-9470-5471fbfa2d64
#> 1549 45402c3d-3355-4679-8bcd-86d8068a6f00
#> 1550 5d3dddba-0666-443d-a60c-00f2e8405794
#> 1551 c9c53e37-336b-4ef7-a5ea-289f7a86496c
#> 1552 2957ed17-dc01-4248-9d38-e29d72cb04c1
#> 1553 6ae4d84e-2820-4974-a91c-6053aafe7d52
#> 1554 b1c6c6d3-3c54-4000-9e85-012797e727a1
#> 1555 2cbc687e-f7c6-4aa5-a47f-c503ca60f86e
#> 1556 9d491405-cfdc-49c6-86fe-5353a3ec182a
#> 1557 93170d01-618b-42dc-967b-30181a69a31c
#> 1558 9325cd20-660e-4963-ac7a-489b631a6a7c
#> 1559 442c7366-44ed-4bb2-872c-9779b19c655c
#> 1560 18dedb26-1d95-4751-a78f-87675e833bef
#> 1561 dcf4a717-9599-4b74-8455-f5623d427fcf
#> 1562 3e87c431-9c00-4a11-8d32-00bf9c6bd967
#> 1563 3ab25992-5756-4aad-966f-6c010f211155
#> 1564 d16e940b-f120-46c0-a51d-08cbdf1728fa
#> 1565 6e4a6d4c-e419-4fb6-bae7-d24344a4d508
#> 1566 bfc0711c-4f2d-4436-96a6-0db10b65ae0d
#> 1567 effa16ed-7b3b-4deb-b138-102b40642534
#> 1568 87d6cbb5-48a1-4d01-89a1-a9333a587887
#> 1569 1e65e020-3ba6-4de2-a68d-654845854dd0
#>                                                                                                                                                                                                                                                               title
#> 1                                                                                                   State-wise Total Procurements of Cotton under Minimum Support Price (MSP) by CCI during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 2                                                                                                                                    Details of Procurements of Cotton under MSP by CCI from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 3                                                                                                                                             All India level Production of Food Grains from 2000-01 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 4                                                                                                                          State-wise Central Assistance Released under CADWM Programme from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 5                                                                                                               State-wise Procurement of Raw Jute under Minimum Support Price (MSP) during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 6                                                                                                                                   State-wise Procurement of Raw Jute under MSP Scheme from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 7                                                                                                                                                        State-wise Production of Mango from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 8                                                                                              All India level Sugarcane Weighted Average Projected Cost of Production for Crop Seasons from 2013-14 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 9                                                                                               State-wise Central Share Released under On Farm Water Management (OFWM) and PMKSY- PDMC from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 10                                                                                                     Details of outstanding Claims of Crops during last two crop seassons Rabi during 2017-18 and Kharif 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 11                                              State/UT-wise Number of wholly leased-in operational Holdings by all Social Groups, Scheduled Castes and Scheduled Tribes as per the Agriculture Census 2010-11 (From: Ministry of Agriculture and Farmers Welfare)
#> 12                                                                                          State/UT-wise Premium Collected from Farmers under Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 13                                                                                                                                          Amount of Budget Allocated and Amount Spent from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 14                                                                                                                                                                 Crop-wise Coverage Area during 2018 and 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 15                                                         Premium Paid by Farmers to Insurance Companies and Claims Paid to Eligible Farmers in State of Karnataka under the Scheme during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 16                                                                                                                                         Commodity-wise Minimum Support Prices (MSPs) from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 17                                                                                                State/UT-wise Projected Operational Holding under Pradhan Mantri Kisan Samman Nidhi (PM-KISAN) during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 18                                                                                                                     State/UT-wise Procurement of Rice at Minimum Support Price (MSP) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 19                                                                                                                                                        Year-wise Procurement of Jute from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 20                                         Gross Capital Formation (GCF) in Agriculture and Allied Sectors Relative to Gross Value Added (GVA) of Total Economy at 2011-12 Basic Prices from 2011-12 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 21                  Funds Allocated Released and Expenditure for the Schemes being Implemented by the Department of Agriculture, Cooperation and Farmers Welfare in the State of Kerala from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 22                                                                                                                        Stated-wise Details of Procurement of cotton under MSP by CCI from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 23                                                          District-wise Estimated Number of Farmers, Farmers Registered and Benefits Provided to them under PM-Kisan Scheme in Karnataka as on 04 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 24                                                                                                                                  State/UT-wise Procurement of Wheat for Central Pool from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 25                                                                                                                                        Commodity-wise Procurement of Coarsegrains during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 26                                                                                                       State-wise Number of Farmers Benefited, Marketing Seasonwise (Paddy and Wheat) from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 27                                                                                                               Average Wholesale Prices and MSP of Essential Agricultural Commodities from 2017-18 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 28                                                                                                                                 State/UT-wise Production and Procurement of Wheat during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 29                                                                                                                                 State/UT-wise Amount released to PM-KISAN beneficiaries as on 17 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 30                                                                                                                     Operation-wise Procurement Made under Price Support Scheme (PSS) from 2015-16 To 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 31                                                                                                State/UT-wise Production, Estimate, Procurement and Percentage Procurement of Rice during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 32                                                 State/UT-wise Estimated No. of Worker, Working in Unincorporated Non-Agricultural Enterprises As per 73rd Round of NSS Report during June 2015-June 2016 (From: Ministry of Micro, Small and Medium Enterprises)
#> 33                                                                                                                                  State/UT-wise Number of PM-KISAN beneficiaries covered as on 17 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 34                                                                                                                           State/UT-wise Number of Beneficiaries Covered under Scheme as on 24 February, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 35                                                                                                            Mandi-wise List of Farmers Registered in Andhra Pradesh on e-NAM Platform as on 29 February, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 36                                                                                               State/UT-wise total Amount Released under Pradhan Mantri Kisan Samman Nidhi (PM-KISAN) as on 24 February, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 37                                                                                                                                                   State/UT-wise details of Farmers suicide from 2014 to 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 38                                                                                   State/UT-wise details of beneficiaries who have been paid all four installments under PM-Kisan Scheme as on 13 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 39                                                                                                                                                      State-wise Compensation Paid during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 40                                                                                               State/UT-wise Number of Farmers Registered Pradhan Mantri Kisan Maan Dhan Yojana (PM-KMY) as on 11 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 41                                                                                                 State/UT-wise details of data rejected, transactions failed, etc. under PM-Kisan Scheme as on 17 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 42                                                                                                                      State/UT-wise percentage of Arable land and Barren and unculturable land during 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 43                                                                                                                                        MSP Suggested by State Government for the Kharif Crops during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 44                                                                                                                                                 State/UT-wise Status of PM-Kisan Scheme as on 17 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 45                                                                                                     State-wise Funds Released Under Sub Mission on Agricultural Mechanization (SMAM) from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 46                                                                                                                                                 MSP Suggested by State Government for Rabi Crops for 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 47                                                                                                                                      State-wise of in-situ management of crop residue from 2018-19 to 201-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 48                                                                                                                                               MSP Suggested by State Government for Kharif Crops for 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 49                                                                                   State/UT-wise Central assistance released under Pradhan Mantri Krishi Sinchayee Yojana as per PDMC from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 50                                                                                                                                                 MSP Suggested by State Government for Rabi Crops for 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 51                                                                       State-wise Average Monthly Income per Agricultural Household as per Situation Assessment Survey of Agricultural Households during 2013 (From: Ministry of Agriculture and Farmers Welfare)
#> 52                                                                                                                                      IEC Activities by States Government and ICAR during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 53                                                                    Details of funds allocated, released and utilised in respect of the State Government of West Bengal under Schemes from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 54                                                                                                                                                                    State/UT-wise Farmers Suicide during 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 55                                                                         State/UT-wise Funds Sanctioned and Utilized for the Activities under the in-Situ Crop Residue Management Scheme during 2018 and 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 56                                                                                     State-wise Fund allocation and released under Bringing Green Revolution to Eastern India (BGREI) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 57                                                                                                       Premium Received and Claims Paid by Insurance Companies under PMFBY and RWBCIS from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 58                                                                                                                                     State-wise State Disaster Response Fund (SDRF) Allocation during 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 59                                                                             State/UT-wise Status of Development/Up-Gradation of Rural Haats under MGNREGS (in Reply to Starred Question on 7 February, 2020) (From: Ministry of Agriculture and Farmers Welfare)
#> 60                                                                                                                        State/UT-wise Number of farmers registered under PM-KISAN portal as on 17 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 61                                                                                                                            Country-wise 25 Top Basmati Rice Export Destinations from India from 2015 to 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 62                                                                                                                                               State/UT-wise Data on Suicide Committed by Farmers during 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 63                                                                                                                                   State/UT-wise Procurement of Rice for Central Pool from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 64                                                                                                                              Pulses, Oilseeds and Copra Procured at MSP under PSS during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 65                          State/UT-wise Amount of Farm Loans Waived by States through their Respective Debt Waiver Schemes as per Data Provided by NABARD/Few (in reply to Starred Question on 6 March, 2020) (From: Ministry of Agriculture and Farmers Welfare)
#> 66                                                                                                        Budget and Actual Expenditure on Crop Insurance Schemes by Central Government from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 67                                                                                           State/UT-wise Average Monthly Income Per Agricultural Household from different Sources from July 2012 to June 2013 (From: Ministry of Agriculture and Farmers Welfare)
#> 68                                                                 Estimates Released by Department of Agriculture Cooperation and Farmers Welfare, the Production of Cereals in the country from 2013-14 to 2017-18 (From: Ministry of Food Processing Industries)
#> 69                                                                                                                                Commodity-wise MSP, Cost and Percent Return over Cost from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 70                                                                                                  State/UT-wise Farmer Beneficiaries Applicants Enrolled under PMFBY (Kharif and Rabi seasons) during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 71                                                                                                                 State/UT-wise Number of Clusters and Fund Released under PKVY Scheme from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 72                                                                                                                      State/UT-wise Number of Farmers Provided with Soil Health Cards from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 73                                                                       Details of coverage since inception of the scheme in Chhattisgarh under PMFBY & RWBCIS Scheme in Chhattisgarh from 2016-17 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 74                                                                                  Details of Production of Foodgrains, Paddy (in terms of rice), wheat, and vegetables in the country from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 75                                                                                                                      State/UT-wise Suicide by Persons Self-Employed in Farming/Agriculture from 2013 to 2015 (From: Ministry of Agriculture and Farmers Welfare)
#> 76                                                                                          Details of farmers covered, estimated claims, claims approved and claims paid to the farmer from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 77                                                                        Gross Premium Collected and Claims Paid by Empanelled General Insurance Companies since Inception of PMFBY during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 78                                                                                                          State-wise Number of Farmers Benefited, Marketing Season of Paddy and Wheat from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 79                                                                                                             Scheme-wise Achievements Made for the Benefit of Agriculture and Farmers from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 80                                                                                                          State/UT-wise Claims paid under Pradhan Mantri Fasal Bima Yojana (PMFBY) during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 81                                                                                              Details of Companies Empanelled for PMFBY and Claims paid by them to farmers from Kharif 2016 to Kharif 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 82                                                                                        District-wise Number of Farmers whose Soil Tested & Soil Health Cards Issued in Uttar Pradesh from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 83                                                                                                                      Commodity-wise Absolute Increase in Minimum Support Price (MSP) from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 84                                                                                                           States/Commodity -wise Farmer's Benefited under Price Support Scheme (PSS) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 85                                                                                                                                                   State-wise Production of Sugarcane from 2015-16 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 86                                                                                                                                                        State/UT-wise Agricultural/Arable Land during 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#> 87                                                       Crop-wise Production, Procurement at Minimum Support Price (MSP) and Imports of Wheat, Millets, Rice and Pulses in the country from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 88                                                                                                       Number of Farmers who have Availed Soil Health Cards in North Eastern Statesduring 2015-17 and 2017-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 89                                                                                                         Target and Distribution of Soil Health Cards in State of Delhi and Rajasthan from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 90                                                                                Production of Foodgrains, Horticultural Crops and Growth Rate of GVA of Agriculture and Allied Sector from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 91                                                                                                                                                State-wise Farmers Benefitted under PSF Scheme during 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 92                                                                                                State/UT-wise Subsidy/Financial Assistance Provided by Government for Seed Production from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 93                                                                                                    State-wise Funds Allocated under Sub Mission on Agricultural Mechanization (SMAM) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 94                                                                                                                       State/UT-wise Production of Foodgrains, Oilseeds and Sugarcane from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 95                                                                                                                  State/UT-wise Number of Farmers who have Received Soil Health Cards from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 96                                                                                                                                    State-wise Procurement of Cotton under MSP by CCI from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 97   Fund Allocated under Central Scheme on Promotion of Agricultural Mechanization for In-Situ Management of Crop Residue for Boosting Mechanization of Agricultural Production Processes from 2018-19 to 2019-20(From: Ministry of Agriculture & Farmers Welfare)
#> 98                                                    State/UT-wise Growth Rates of Gross State Value Added (GSVA) of Agriculture and Allied (Sector Agriculture, forestry and fishing) from 2015-16 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 99                                                                                                                                                               Imports of Food Grains from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 100                                                                                           Details of Central Assistance (CA) Released and Allocation to the State of Madhya Pradesh from 2014-15 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 101                                                                                                                           Cumulative Wastage of Various Agricultural Produce as per Reports during 2010 and 2015 (From: Ministry of Food Processing Industries)
#> 102                                                                                                             State/UT-wise Funds Allocated for Horticulture Mechanization under MIDH from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 103                                                                                                   State/UT-wise Average Monthly Income per Agricultural Household as per Situational Assessment Survey 2013 (From: Ministry of Agriculture and Farmers Welfare)
#> 104                                                                                                                      Details of Physical Achievement in the State of Madhya Pradesh from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 105                                                               State-wise Storage Capacity Sanctioned under Agricultural Marketing infrastructure (AMI) Sub-Scheme of ISAM up to 31 March, 2019 (From: Ministry of Consumer Affairs, Food & Public Distribution)
#> 106                                                                                                                       State-wise Funds Allocated for various Machineries under NFSM from 2015-16 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 107                                                                                                                           Crop-wise Base Collection in National Genebank (-18 degree C) as on 30 June, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 108                                                                                                                   State/UT-wise Procurement of Wheat at Minimum Support Price (MSP) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 109                                                                                                               Details of Procurement of Cotton by Cotton Corporation of India (CCI) from 2015-16 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 110                                                                                                                               Scheme-wise Amount of Budget Estimate and Expenditure from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 111                                                                                                                State-wise Fund Allocation for Supply of Farm Implements under NMOOP from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 112                                                                                                                   State/Commodity-wise Pulses & oil Seeds Procured at MSP Under PSS from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 113                                                                                               Crop-wise Foodgrains Production and Yield under National Food Security Mission (NFSM) from 2006-07 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 114                                               Season-wise Gross Premium Paid to Insurance company, Claim Paid, Claims Pending Since Inception of Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2016 to 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 115                                                                               State-wise Number of Projects Sanctioned and Cost of Projects in Agriculture Mechanisation under RKVY from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 116                                                                       State-wise details of Funds Allocated for Boosting Mechanization of Agricultural Production Processes by ICAR from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 117                                                                                                                                                Export and Import Value of Floriculture Products during 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 118                                                                                                                                      Pulses & Oilseeds Procured at MSP Under PSS during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 119                                                                                                                                        State/UT-wise Production of Major Foodgrains from 2015-16 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 120                                                                                        State/UT-wise Agriculture Credit Disbursement as reported by the National Bank for Agriculture and Rural Development (NABARD) during 2018-19 (From: Ministry of Finance)
#> 121                                                                                                                     State/UT-wise Procurement of Rice and Wheat for Central Pool during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 122                                                                                                                                           State-wise Procurement of Coarsegrains during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 123                                                                                                                        State/UT-wise Average Monthly Income Per Agricultural Household during 2003 and 2013 (From: Ministry of Agriculture and Farmers Welfare)
#> 124                                                                                                                      Details of Percentage Losses Estimated for Major Agricultural Produces during 2010 and 2015 (From: Ministry of Food Processing Industries)
#> 125                                                                                             State/UT-wise Number of Drought affected districts on the basis of Memorandum Submitted from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 126                                                              Grants-in-Aid (Central Share) released to Government of Andhra Pradesh and Telangana under ATMA Scheme since inception from 2005-06 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 127                                                     Season-wise Subsidized Number of Farmers Covered under the Scheme, Farmers who got Claims on loss of their Crops and Amount of Claims from 2016 to 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 128                                                                                                             State/UT-wise Number of Wholly Leased in Operational Holdings as per Agriculture Census 2010-11 (From: Ministry of Agriculture and Farmers Welfare)
#> 129                                                                                                                            State/UT-wise Area under Cultivation of Major Food Crops from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 130                                                                                                             Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Karnataka
#> 131                                                                                                              Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Nagaland
#> 132                                                                                                                   Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Goa
#> 133                                                                                                               Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Manipur
#> 134                                                                                                           Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Lakshadweep
#> 135                                                                                                               Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Mizoram
#> 136                                                                                                                Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Kerala
#> 137                                                                                                               Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Tripura
#> 138                                                                                                                 Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - India
#> 139                                                                                                            Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Tamil Nadu
#> 140                                                                                                             Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Meghalaya
#> 141                                                                                                       Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Jammu & Kashmir
#> 142                                                                                                            Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Puducherry
#> 143                                                                                                                 Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Assam
#> 144                                                                                                      Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Himachal Pradesh
#> 145                                                                                             Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Andaman & Nicobar Islands
#> 146                                                                                                           Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - West Bengal
#> 147                                                                                                                Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Punjab
#> 148                                                                                                             Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Jharkhand
#> 149                                                                                                            Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Chandigarh
#> 150                                                                                                                Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Odisha
#> 151                                                                                                           Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Uttarakhand
#> 152                                                                                                          Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Chhattisgarh
#> 153                                                                                                               Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Haryana
#> 154                                                                                                        Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Madhya Pradesh
#> 155                                                                                                          Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - NCT of Delhi
#> 156                                                                                                               Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Gujarat
#> 157                                                                                                             Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Rajasthan
#> 158                                                                                                           Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Daman & Diu
#> 159                                                                                                         Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Uttar Pradesh
#> 160                                                                                                  Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Dadra & Nagar Haveli
#> 161                                                                                                                 Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Bihar
#> 162                                                                                                           Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Maharashtra
#> 163                                                                                                                Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Sikkim
#> 164                                                                                                        Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Andhra Pradesh
#> 165                                                                                                     Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Arunachal Pradesh
#> 166                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jhansi District of Uttar Pradesh, 1991
#> 167                                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Tamil Nadu
#> 168                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kannur District of Kerala, 1991
#> 169                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lower Subansiri District of Arunachal Pradesh, 1991
#> 170                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sehore District of Madhya Pradesh, 1991
#> 171                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dhanbad District of Bihar, 1991
#> 172                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Imphal District of Manipur, 1991
#> 173                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mainpuri District of Uttar Pradesh, 1991
#> 174                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Barmer District of Rajasthan, 1991
#> 175                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Dadra and Nagar Haveli
#> 176                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mandya District of Karnataka, 1991
#> 177                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Anantapur District of Andhra Pradesh, 1991
#> 178                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rewa District of Madhya Pradesh, 1991
#> 179                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Vaishali District of Bihar, 1991
#> 180                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Buldana District of Maharashtra, 1991
#> 181                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Almora District of Uttar Pradesh, 1991
#> 182                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ganganagar District of Rajasthan, 1991
#> 183                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nadia District of West Bengal, 1991
#> 184                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for The Dangs District of Gujarat, 1991
#> 185                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gwalior District of Madhya Pradesh, 1991
#> 186                                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Bihar
#> 187                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Valsad District of Gujarat, 1991
#> 188                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ganjam District of Orissa, 1991
#> 189                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Deoria District of Uttar Pradesh, 1991
#> 190                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Madurai District of Tamil Nadu, 1991
#> 191                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kottayam District of Kerala, 1991
#> 192                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Darrang District of Assam, 1991
#> 193                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bastar District of Madhya Pradesh, 1991
#> 194                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rajkot District of Gujarat, 1991
#> 195                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mokokchung District of Nagaland, 1991
#> 196                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lalitpur District of Uttar Pradesh, 1991
#> 197                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Madras District of Tamil Nadu, 1991
#> 198                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Himachal Pradesh
#> 199                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Upper Subansiri District of Arunachal Pradesh, 1991
#> 200                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Raisen District of Madhya Pradesh, 1991
#> 201                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Giridih District of Bihar, 1991
#> 202                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ukhrul District of Manipur, 1991
#> 203                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Budaun District of Uttar Pradesh, 1991
#> 204                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jalor District of Rajasthan, 1991
#> 205                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dadra and Nagar Haveli District of Dadra and Nagar Haveli, 1991
#> 206                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Faridabad District of Haryana, 1991
#> 207                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kurnool District of Andhra Pradesh, 1991
#> 208                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shahdol District of Madhya Pradesh, 1991
#> 209                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Begusarai District of Bihar, 1991
#> 210                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Akola District of Maharashtra, 1991
#> 211                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nainital District of Uttar Pradesh, 1991
#> 212                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bikaner District of Rajasthan, 1991
#> 213                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for North Twenty Four Parganas District of West Bengal, 1991
#> 214                                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Haryana
#> 215                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Belgaum District of Karnataka, 1991
#> 216                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Patna District of Bihar, 1991
#> 217                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Puri District of Orissa, 1991
#> 218                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mau District of Uttar Pradesh, 1991
#> 219                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kamarajar District of Tamil Nadu, 1991
#> 220                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lahul and Spiti District of Himachal Pradesh, 1991
#> 221                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sonitpur District of Assam, 1991
#> 222                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Maharashtra
#> 223                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Surendranagar District of Gujarat, 1991
#> 224                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tuensang District of Nagaland, 1991
#> 225                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hamirpur District of Uttar Pradesh, 1991
#> 226                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chengai Anna District of Tamil Nadu, 1991
#> 227                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Wayanad District of Kerala, 1991
#> 228                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Siang District of Arunachal Pradesh, 1991
#> 229                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Betul District of Madhya Pradesh, 1991
#> 230                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hazaribag District of Bihar, 1991
#> 231                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Meghalaya
#> 232                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bareilly District of Uttar Pradesh, 1991
#> 233                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sirohi District of Rajasthan, 1991
#> 234                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Daman and Diu
#> 235                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mysore District of Karnataka, 1991
#> 236                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mahbubnagar District of Andhra Pradesh, 1991
#> 237                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sidhi District of Madhya Pradesh, 1991
#> 238                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Samastipur District of Bihar, 1991
#> 239                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Amravati District of Maharashtra, 1991
#> 240                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bijnor District of Uttar Pradesh, 1991
#> 241                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Churu District of Rajasthan, 1991
#> 242                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for South Twenty Four Parganas District of West Bengal, 1991
#> 243                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ambala District of Haryana, 1991
#> 244                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Datia District of Madhya Pradesh, 1991
#> 245                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nalanda District of Bihar, 1991
#> 246                                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Punjab
#> 247                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Azamgarh District of Uttar Pradesh, 1991
#> 248                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ramanathapuram District of Tamil Nadu, 1991
#> 249                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Alappuzha District of Kerala, 1991
#> 250                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lakhimpur District of Assam, 1991
#> 251                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Greater Bombay District of Maharashtra, 1991
#> 252                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhavnagar District of Gujarat, 1991
#> 253                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mon District of Nagaland, 1991
#> 254                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Banda District of Uttar Pradesh, 1991
#> 255                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for North Arcot Ambedker District of Tamil Nadu, 1991
#> 256                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chamba District of Himachal Pradesh, 1991
#> 257                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for East Siang District of Arunachal Pradesh, 1991
#> 258                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hoshangabad District of Madhya Pradesh, 1991
#> 259                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Palamu District of Bihar, 1991
#> 260                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jaintia Hills District of Meghalaya, 1991
#> 261                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Pilibhit District of Uttar Pradesh, 1991
#> 262                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhilwara District of Rajasthan, 1991
#> 263                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Daman District of Daman and Diu, 1991
#> 264                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gurgaon District of Haryana, 1991
#> 265                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rangareddi District of Andhra Pradesh, 1991
#> 266                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mandsaur District of Madhya Pradesh, 1991
#> 267                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Darbhanga District of Bihar, 1991
#> 268                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Yavatmal District of Maharashtra, 1991
#> 269                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Moradabad District of Uttar Pradesh, 1991
#> 270                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jhunjhunun District of Rajasthan, 1991
#> 271                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Calcutta District of West Bengal, 1991
#> 272                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Yamunanagar District of Haryana, 1991
#> 273                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - India (Excluding J&K)
#> 274                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bellary District of Karnataka, 1991
#> 275                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhojpur District of Bihar, 1991
#> 276                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gurdaspur District of Punjab, 1991
#> 277                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jaunpur District of Uttar Pradesh, 1991
#> 278                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chidambaranar District of Tamil Nadu, 1991
#> 279                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shimla District of Himachal Pradesh, 1991
#> 280                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dhemaji District of Assam, 1991
#> 281                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Thane District of Maharashtra, 1991
#> 282                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Amreli District of Gujarat, 1991
#> 283                                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Orissa
#> 284                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Fatehpur District of Uttar Pradesh, 1991
#> 285                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dharmapuri District of Tamil Nadu, 1991
#> 286                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kozhikode District of Kerala, 1991
#> 287                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dibang Valley District of Arunachal Pradesh, 1991
#> 288                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jabalpur District of Madhya Pradesh, 1991
#> 289                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lohardaga District of Bihar, 1991
#> 290                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for East Khasi Hills District of Meghalaya, 1991
#> 291                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shahjahanpur District of Uttar Pradesh, 1991
#> 292                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Udaipur District of Rajasthan, 1991
#> 293                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Diu District of Daman and Diu, 1991
#> 294                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Raichur District of Karnataka, 1991
#> 295                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hyderabad District of Andhra Pradesh, 1991
#> 296                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ratlam District of Madhya Pradesh, 1991
#> 297                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Madhubani District of Bihar, 1991
#> 298                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Wardha District of Maharashtra, 1991
#> 299                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rampur District of Uttar Pradesh, 1991
#> 300                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Alwar District of Rajasthan, 1991
#> 301                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Haora District of West Bengal, 1991
#> 302                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dakshin Kannad District of Karnataka, 1991
#> 303                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Andhra Pradesh
#> 304                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shivpuri District of Madhya Pradesh, 1991
#> 305                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rohtas District of Bihar, 1991
#> 306                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kanniyakumari District of Tamil Nadu, 1991
#> 307                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Amritsar District of Punjab, 1991
#> 308                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ballia District of Uttar Pradesh, 1991
#> 309                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tirunelveli Kattabomman District of Tamil Nadu, 1991
#> 310                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Pathanamthitta District of Kerala, 1991
#> 311                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Marigaon District of Assam, 1991
#> 312                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Raigarh District of Maharashtra, 1991
#> 313                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Junagadh District of Gujarat, 1991
#> 314                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Pratapgarh District of Uttar Pradesh, 1991
#> 315                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tiruvannamalai Sambuvarayar District of Tamil Nadu, 1991
#> 316                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kangra District of Himachal Pradesh, 1991
#> 317                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lohit District of Arunachal Pradesh, 1991
#> 318                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Narsimhapur District of Madhya Pradesh, 1991
#> 319                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gumla District of Bihar, 1991
#> 320                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Khasi Hills District of Meghalaya, 1991
#> 321                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kheri District of Uttar Pradesh, 1991
#> 322                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chittaurgarh District of Rajasthan, 1991
#> 323                                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Delhi
#> 324                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rewari District of Haryana, 1991
#> 325                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Medak District of Andhra Pradesh, 1991
#> 326                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ujjain District of Madhya Pradesh, 1991
#> 327                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Saharsa District of Bihar, 1991
#> 328                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nagpur District of Maharashtra, 1991
#> 329                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Saharanpur District of Uttar Pradesh, 1991
#> 330                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bharatpur District of Rajasthan, 1991
#> 331                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hugli District of West Bengal, 1991
#> 332                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kurukshetra District of Haryana, 1991
#> 333                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Srikakulam District of Andhra Pradesh, 1991
#> 334                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bidar District of Karnataka, 1991
#> 335                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Aurangabad District of Bihar, 1991
#> 336                                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Tripura
#> 337                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Firozpur District of Punjab, 1991
#> 338                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ghazipur District of Uttar Pradesh, 1991
#> 339                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Solan District of Himachal Pradesh, 1991
#> 340                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nagaon District of Assam, 1991
#> 341                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ratnagiri District of Maharashtra, 1991
#> 342                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kachchh District of Gujarat, 1991
#> 343                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sambalpur District of Orissa, 1991
#> 344                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Malappuram District of Kerala, 1991
#> 345                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Changlang District of Arunachal Pradesh, 1991
#> 346                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mandla District of Madhya Pradesh, 1991
#> 347                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ranchi District of Bihar, 1991
#> 348                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for East Garo Hills District of Meghalaya, 1991
#> 349                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sitapur District of Uttar Pradesh, 1991
#> 350                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dungarpur District of Rajasthan, 1991
#> 351                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Delhi District of Delhi, 1991
#> 352                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shimoga District of Karnataka, 1991
#> 353                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nizamabad District of Andhra Pradesh, 1991
#> 354                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shajapur District of Madhya Pradesh, 1991
#> 355                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Madhepura District of Bihar, 1991
#> 356                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhandara District of Maharashtra, 1991
#> 357                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hardwar District of Uttar Pradesh, 1991
#> 358                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dholpur District of Rajasthan, 1991
#> 359                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Medinipur District of West Bengal, 1991
#> 360                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dharwad District of Karnataka, 1991
#> 361                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Vizianagaram District of Andhra Pradesh, 1991
#> 362                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Guna District of Madhya Pradesh, 1991
#> 363                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jehanabad District of Bihar, 1991
#> 364                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Tripura District of Tripura, 1991
#> 365                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ludhiana District of Punjab, 1991
#> 366                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Varanasi District of Uttar Pradesh, 1991
#> 367                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kollam District of Kerala, 1991
#> 368                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Golaghat District of Assam, 1991
#> 369                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sindhudurg District of Maharashtra, 1991
#> 370                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Banas Kantha District of Gujarat, 1991
#> 371                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sundargarh District of Orissa, 1991
#> 372                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Allahabad District of Uttar Pradesh, 1991
#> 373                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for South Arcot District of Tamil Nadu, 1991
#> 374                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hamirpur District of Himachal Pradesh, 1991
#> 375                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tirap District of Arunachal Pradesh, 1991
#> 376                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chhindwara District of Madhya Pradesh, 1991
#> 377                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Purbi Singhbhum District of Bihar, 1991
#> 378                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Garo Hills District of Meghalaya, 1991
#> 379                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hardoi District of Uttar Pradesh, 1991
#> 380                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Banswara District of Rajasthan, 1991
#> 381                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Lakshadweep
#> 382                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mahendragarh District of Haryana, 1991
#> 383                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Adilabad District of Andhra Pradesh, 1991
#> 384                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dewas District of Madhya Pradesh, 1991
#> 385                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Purnia District of Bihar, 1991
#> 386                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chandrapur District of Maharashtra, 1991
#> 387                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Muzaffarnagar District of Uttar Pradesh, 1991
#> 388                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sawai Madhopur District of Rajasthan, 1991
#> 389                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bankura District of West Bengal, 1991
#> 390                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kaithal District of Haryana, 1991
#> 391                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Visakhapatnam District of Andhra Pradesh, 1991
#> 392                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bijapur District of Karnataka, 1991
#> 393                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gaya District of Bihar, 1991
#> 394                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Solapur District of Maharashtra, 1991
#> 395                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for North Tripura District of Tripura, 1991
#> 396                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jalandhar District of Punjab, 1991
#> 397                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mirzapur District of Uttar Pradesh, 1991
#> 398                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sirmaur District of Himachal Pradesh, 1991
#> 399                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jorhat District of Assam, 1991
#> 400                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nashik District of Maharashtra, 1991
#> 401                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sabar Kantha District of Gujarat, 1991
#> 402                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kendujhar District of Orissa, 1991
#> 403                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bahraich District of Uttar Pradesh, 1991
#> 404                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Salem District of Tamil Nadu, 1991
#> 405                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Seoni District of Madhya Pradesh, 1991
#> 406                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Pashchimi Singhbhum District of Bihar, 1991
#> 407                                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Mizoram
#> 408                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Unnao District of Uttar Pradesh, 1991
#> 409                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bundi District of Rajasthan, 1991
#> 410                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lakshadweep District of Lakshadweep, 1991
#> 411                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tumkur District of Karnataka, 1991
#> 412                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Karimnagar District of Andhra Pradesh, 1991
#> 413                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jhabua District of Madhya Pradesh, 1991
#> 414                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Katihar District of Bihar, 1991
#> 415                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gadchiroli District of Maharashtra, 1991
#> 416                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Meerut District of Uttar Pradesh, 1991
#> 417                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jaipur District of Rajasthan, 1991
#> 418                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Puruliya District of West Bengal, 1991
#> 419                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gulbarga District of Karnataka, 1991
#> 420                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for East Godavari District of Andhra Pradesh, 1991
#> 421                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tikamgarh District of Madhya Pradesh, 1991
#> 422                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nawada District of Bihar, 1991
#> 423                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kolhapur District of Maharashtra, 1991
#> 424                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for South Tripura District of Tripura, 1991
#> 425                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kapurthala District of Punjab, 1991
#> 426                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sonbhadra District of Uttar Pradesh, 1991
#> 427                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Trivandrum District of Kerala, 1991
#> 428                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sibsagar District of Assam, 1991
#> 429                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dhule District of Maharashtra, 1991
#> 430                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mahesana District of Gujarat, 1991
#> 431                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mayurbhanj District of Orissa, 1991
#> 432                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gonda District of Uttar Pradesh, 1991
#> 433                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Periyar District of Tamil Nadu, 1991
#> 434                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Palakkad District of Kerala, 1991
#> 435                                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Assam
#> 436                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Aizawl District of Mizoram, 1991
#> 437                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lucknow District of Uttar Pradesh, 1991
#> 438                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kota District of Rajasthan, 1991
#> 439                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Pondicherry
#> 440                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhiwani District of Haryana, 1991
#> 441                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Warangal District of Andhra Pradesh, 1991
#> 442                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dhar District of Madhya Pradesh, 1991
#> 443                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Khagaria District of Bihar, 1991
#> 444                                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Manipur
#> 445                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ghaziabad District of Uttar Pradesh, 1991
#> 446                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sikar District of Rajasthan, 1991
#> 447                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Barddhaman District of West Bengal, 1991
#> 448                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Karnal District of Haryana, 1991
#> 449                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Godavari District of Andhra Pradesh, 1991
#> 450                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chikmagalur District of Karnataka, 1991
#> 451                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Saran District of Bihar, 1991
#> 452                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Aurangabad District of Maharashtra, 1991
#> 453                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Uttar Pradesh
#> 454                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hoshiarpur District of Punjab, 1991
#> 455                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - West Bengal
#> 456                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kinnaur District of Himachal Pradesh, 1991
#> 457                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dibrugarh District of Assam, 1991
#> 458                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jalgaon District of Maharashtra, 1991
#> 459                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gandhinagar District of Gujarat, 1991
#> 460                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Baleshwar District of Orissa, 1991
#> 461                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Barabanki District of Uttar Pradesh, 1991
#> 462                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nilgiri District of Tamil Nadu, 1991
#> 463                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Una District of Himachal Pradesh, 1991
#> 464                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dhubri District of Assam, 1991
#> 465                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Balaghat District of Madhya Pradesh, 1991
#> 466                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Araria District of Bihar, 1991
#> 467                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lunglei District of Mizoram, 1991
#> 468                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rae Bareli District of Uttar Pradesh, 1991
#> 469                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jhalawar District of Rajasthan, 1991
#> 470                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Pondicherry District of Pondicherry, 1991
#> 471                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Uttar Kannad District of Karnataka, 1991
#> 472                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Khammam District of Andhra Pradesh, 1991
#> 473                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Indore District of Madhya Pradesh, 1991
#> 474                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Munger District of Bihar, 1991
#> 475                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Senapati District of Manipur, 1991
#> 476                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bulandshahr District of Uttar Pradesh, 1991
#> 477                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ajmer District of Rajasthan, 1991
#> 478                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Birbhum District of West Bengal, 1991
#> 479                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hassan District of Karnataka, 1991
#> 480                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Krishna District of Andhra Pradesh, 1991
#> 481                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chhatarpur District of Madhya Pradesh, 1991
#> 482                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Siwan District of Bihar, 1991
#> 483                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jalna District of Maharashtra, 1991
#> 484                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Uttarkashi District of Uttar Pradesh, 1991
#> 485                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rupnagar District of Punjab, 1991
#> 486                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Koch Bihar District of West Bengal, 1991
#> 487                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Madhya Pradesh
#> 488                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tinsukia District of Assam, 1991
#> 489                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ahmadnagar District of Maharashtra, 1991
#> 490                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ahmadabad District of Gujarat, 1991
#> 491                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Cuttack District of Orissa, 1991
#> 492                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Faizabad District of Uttar Pradesh, 1991
#> 493                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Coimbatore District of Tamil Nadu, 1991
#> 494                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Thrissur District of Kerala, 1991
#> 495                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kokrajhar District of Assam, 1991
#> 496                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Surguja District of Madhya Pradesh, 1991
#> 497                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kishanganj District of Bihar, 1991
#> 498                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chhimtuipui District of Mizoram, 1991
#> 499                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Farrukhabad District of Uttar Pradesh, 1991
#> 500                                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Sikkim
#> 501                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Karaikal District of Pondicherry, 1991
#> 502                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jind District of Haryana, 1991
#> 503                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nalgonda District of Andhra Pradesh, 1991
#> 504                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Nimar District of Madhya Pradesh, 1991
#> 505                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhagalpur District of Bihar, 1991
#> 506                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tamenglong District of Manipur, 1991
#> 507                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Aligarh District of Uttar Pradesh, 1991
#> 508                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tonk District of Rajasthan, 1991
#> 509                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Andaman and Nicobar Islands
#> 510                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Panipat District of Haryana, 1991
#> 511                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Guntur District of Andhra Pradesh, 1991
#> 512                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chitradurga District of Karnataka, 1991
#> 513                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gopalganj District of Bihar, 1991
#> 514                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Parbhani District of Maharashtra, 1991
#> 515                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chamoli District of Uttar Pradesh, 1991
#> 516                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Patiala District of Punjab, 1991
#> 517                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jalpaiguri District of West Bengal, 1991
#> 518                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Tripura
#> 519                                                                                                                      Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - India
#> 520                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Kerala
#> 521                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Jammu & Kashmir
#> 522                                                                                                                 Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Tamil Nadu
#> 523                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Meghalaya
#> 524                                                                                                           Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Himachal Pradesh
#> 525                                                                                                                 Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Puducherry
#> 526                                                                                                                      Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Assam
#> 527                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Punjab
#> 528                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Andaman & Nicobar Islands
#> 529                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - West Bengal
#> 530                                                                                                                 Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Chandigarh
#> 531                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Jharkhand
#> 532                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Uttarakhand
#> 533                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Odisha
#> 534                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Haryana
#> 535                                                                                                               Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Chhattisgarh
#> 536                                                                                                               Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - NCT of Delhi
#> 537                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Madhya Pradesh
#> 538                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Rajasthan
#> 539                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Gujarat
#> 540                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Uttar Pradesh
#> 541                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Daman & Diu
#> 542                                                                                                                      Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Bihar
#> 543                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Dadra & Nagar Haveli
#> 544                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Sikkim
#> 545                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Maharashtra
#> 546                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Arunachal Pradesh
#> 547                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Andhra Pradesh
#> 548                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Nagaland
#> 549                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Karnataka
#> 550                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Manipur
#> 551                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Goa
#> 552                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Mizoram
#> 553                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Lakshadweep
#> 554                                                                                          Crop-wise Details on Yields, Net Profits of ZBNF and Chemical Farming in States of Himachal Pradesh during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 555                                                                                                                                Achievement Made in Respect of Agriculture Credit Flow as Reported by NABARD from 2016-17 to 2018-19 (From: Ministry of Finance)
#> 556                                                                                                                   Details of Increase in Minimum Support Prices (MSP) of Rabi Crops from 2018-19 to 2020-21 (From: Ministry of Agriculture and Farmers Welfare)
#> 557                                                                                                               State/UT-wise Farmer Applications Covered under PMFBY/RWBCIS Combined from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 558                                                                                                                                    Production of Food Grains and Horticulture Crops from 2010-11 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 559                                                                                  Expenditure on Agriculture and Allied Activities under Mahatma Gandhi National Rural Employment Guarantee Scheme from 2016-17 to 2018-19 (From: Ministry of Rural Development)
#> 560                                                                                               State/UT-wise Agriculture Credit Disbursement by Commercial Banks, Regional Rural Banks and Cooperative Banks from 2016-17 to 2018-19 (From: Ministry of Finance)
#> 561                                                                                                                State/UT-wise Centre Share Released and Utilisation under PMKSY-PDMC from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 562                                        Number of Farmer Applications Insured and Indemnity Claims Disbursed under Pradhan Mantri Fasal Bima Yojana (PMFBY) Scheme in State of Assam from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 563                    Memorandums Received from the State Government of Andhra Pradesh Seeking Financial Assistance from National Disaster Response Fund (NDRF) in the Wake of Drought from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 564                                                                                                                        State-wise Funds Released and Funds Utilized under WDC-PMKSY from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 565                                      Assistance Sought by the State Government of Andhra Pradesh, Assistance Approved by the High Level Committee (HLC) and the Assistance Released from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 566                                                                                                                             State/UT-wise Barren & Unculturable Land in the Country from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 567                                                                                                State/UT-wise Unincorporated Non-Agricultural Enterprises as per 73rd Round of NSS Report during 2015-16 (From: Ministry of Micro, Small and Medium Enterprises)
#> 568                                                                                              Funds Allocated to FFP Centres for Application of Technology Modules in Farmers Fields from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 569                                                                                                              State-wise Amount Approved from National Disaster Response Fund (NDRF) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 570                                                             State/UT-wise Funds Allocated and Released Development of Horticulture Including Setting up of Cold Storages under MIDH as on 14 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 571                                                                                                                            State/UT-wise Number of Farmers Issued Soil Health Cards from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 572                                                                                                             State-wise Per Hectare Fertiliser Consumption of Major Cotton Producing from 2004-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 573                                                                  Percentage of Certified/Quality Seeds Available with Private Companies (Including Foreign Multinational Companies) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 574                                                                                       Funds Allocated by National innovation Foundation for innovation Validation and Dissemination from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 575                                                                                                                   Production and Demand of Fruits and Vegetables in State of Punjab from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 576                                                                                                             State/UT-wise Number of Wholly Leased-in Operational Holdings as per Agriculture Census 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 577                                                      Details of Total Admissible Claims, Claims Approved and Claims Paid by insurance Companies since inception of the PMFBY/RWBCIS from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 578                                                                                                                               State-wise Area, Production and Yield of Major Cotton from 2013-14 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 579                                                                               State-wise Central Assistance (CA) Released and Irrigation Potential Created (IPC) under PMKSY-AIBP, SMI & RRR during 2015-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 580                                                                    State/UT-wise Number of Districts and Number Farmers Trained under Agriculture Technology Management Agency (ATMA) Scheme during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 581                                                                                                      State/UT-wise Grants-in-Aid Approved/Released for Cold Chain Projects by MoFPI from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 582                                                                                                                           Bank-wise Agricultural Loans outstanding to Small and Marginal Farmers by Public Sector Banks during 2019 (From: Ministry of Finance)
#> 583    State-wise No. of Custom Hiring Centers (CHC) Established under a new Central Sector Scheme on Promotion of Agricultural Mechanization for In-Situ Management of Crop Residue during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 584                                                      Consumption of the Major Fertilizers Namely Urea, Di-Ammonium Phosphate, Muriate of Potash, Complex and Single Super Phosphate from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 585                                                                                                                              Details of Pulses & Oilseeds Procured at MSP under PSS from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 586                                                                                    State/UT-wise Central Assistance Released and Micro Irrigation area Covered under the PMKSY-PDMC from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 587                                  Farmers Applications Covered, Sum Insured, Total Premium, Total Claims and Number of Farmers Benefited for Aforesaid Crops under PMFBY in Bihar during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 588                                                                                                                                   State-wise Details of Sanction Accorded under MIS from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 589                                                                      State-wise Additional Area Brought under Protective Irrigation and Central Assistance Released under PMKSY-WDC from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 590                                                                                                                                      Commodity-wise Details of Cost, MSP and Return from 2017-18 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 591                                                                         State/UT-wise Percentage of Gross Cropped Area (GCA) covered under Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 592                                                                                                                                         State/UT-wise List of Data Rejected by PFMS as on 26 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 593                                                                                                                                Quantum of Major Fertilizers Consumed in the Country from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 594                                                                                      State/UT-wise Premium Collected and Claims Paid under Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 595                                                                                                                                   Commodity-wise Increase in Minimum Support Prices from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 596                                                                                                      State/UT-wise List of Beneficiaries who have Received Payment under the Scheme as on 25 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 597                                                                                 State-wise Compensation Paid Provided to the Farmers under Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2017-18 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 598                                                                 State/UT-wise Number of Farmer Families Registered and Benefited under Pradhan Mantri Kisan Samman Nidhi (PM-KISAN) as on 18 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 599                                                                               Estimated Cumulative Percentages of Annual Harvest and Post- Harvest Losses of Major Agricultural Produces in India during 2012-13 (From: Ministry of Food Processing Industries)
#> 600                                    State/UT-wise Percentage of Workers in usual Status (PS+SS) in Agriculture Sector Excluding Growing of Crops (AGEGC) and Non-Agriculture Sectors in Informal Sector during 2017-18 (From: Ministry of Labour and Employment)
#> 601                                                                                                               Country-wise Major Fruit and Vegetables & Melons Producing Countries in the World during 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 602                                                                                                                           Monthend Average Wholesale and Retail Prices of Fruits and Vegetables during 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 603                                                                                                                                         Crop-wise Return over Cost of Production during 2019-20 and 2020-21 (From: Ministry of Agriculture and Farmers Welfare)
#> 604                                                                             State/UT-wise Number of Farmers Trained under Sub-Mission on Plant Protection and Plant Quarantine during 2017-2018 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 605                                                                                                                                           Value of Output from Apple Farming in J&K from 2011-12 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 606                                                                                         State-wise Reported Loss of Crops Due to Flood/Landslides/Hydro-Metrological Hazards South-West Monsoon during 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 607                                                           District-wise Number of Farmers Trained under Sub-Mission on Plant Protection and Plant Quarantine in State of Haryana during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 608                                                                                                             Majority of Cotton Crop Area in the country is covered under Bt. Cotton from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 609                                                                                      State-wise Funds Allocated and Utilized for Promotion of Zero Budget Natural Farming (ZBNF) during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 610                                                                                                                                   Amount of Organic Products Produce in the Country from 2014-15 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 611                                                       Minimum Support Price (MSP), Cost of Production and Profit Margins over Cost of Production for Major Kharif and Rabi Crops during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 612                                                                                                               Budgetary Allocation under the BGREI Programme in the state of Odisha from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 613                                                                                               State/UT-wise Farmers Suicide as per Accidental Deaths and Suicides in India (ADSI) Reports from 2014 to 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 614                                                                                                                                  State/UT-wise Suicide by Persons in Farming/Agriculture Sector during 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 615                                                                   State/UT-wise Average Monthly Income per Agricultural Household as per Situation Assessment Survey of Agricultural Households during 2013 (From: Ministry of Agriculture and Farmers Welfare)
#> 616                                                                                                                                Percentage Increase in MSP for Kharif and Rabi Crops from 2017-18 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 617                                                                                  State/UT-wise Expenditure Incurred on Disbursement of Benefits to Farmers under PM-Kisan Scheme during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 618                                                                                       State-wise Number of Farmers Cases of Reversal of Transactions (in reply to Unstarred Question on 6th December, 2019) (From: Ministry of Agriculture and Farmers Welfare)
#> 619                                                                                                           State-wise Financial Assistance Approved from the NDRF in Wake of Drought from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 620                                                                  Number of Farmers Covered and who got Claims and Budget Allocations under Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 621                                                                                                State/UT-wise and Installment-wise Number of Registered Beneficiaries under PM-KISAN as on 27 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 622                             Brief of Loan Waiver Schemes Announced by the Present State Governments of Madhya Pradesh, Rajasthan and Punjab and the Status of the Implementation during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 623                                                                                                                                                                MSP for Kharif and Rabi Crops during 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 624                                                                        Detail of Agriculture Loan Disbursed to Farmers and Number of Farmers Benefitted districts of Konkan area in State of Maharashtra during 2017-18 and 2018-19 (From: Ministry of Finance)
#> 625                                    State/UT-wise Release of Funds under National Horticulture Mission (NHM) and Horticulture Mission for North Eastern and Himalayan States (HMNEH) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 626                                               State-wise Watershed Projects Sanctioned, Area covered by the Projects, Completed and Funds Released as Central Share under WDC-PMKSY from 2009-10 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 627                                                                                                   District-wise Number of Farmers Covered under PM-KISAN in State of Madhya Pradesh as on 27 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 628                                                                                                              State/UT and Status-wise Land Holding Distribution of Farmers/Cultivators Suicides during 2015 (From: Ministry of Agriculture and Farmers Welfare)
#> 629                                                                                                                      Return Over Cost of Crops Production (As Per Marketing Season) from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 630                                                                                            Crop-wise Details on Yields, Net Profits of ZBNF and Chemical Farming in States of Andhra Pradesh during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 631                                                               Details of Achievement made in respect of Agriculture Credit Flow as reported by National Bank for Agriculture and Rural Development (NABARD) from 2016-17 to 2018-19 (From: Ministry of Finance)
#> 632                                     Number of Accounts in which Agricultural Term Loans which inter Alia includes Purchase of Agricultural Implements such as Tractors and Machinery were Provided by Banks from 2016-17 to 2018-19 (From: Ministry of Finance)
#> 633                                                                                                                         State/UT-wise GoI Expenditure reported by State Governments from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 634                                                                                                                                                 Cost, MSP and Return for Pulses and Oilseeds during 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 635                                                                                     Scheme-wise Amount Disbursed by National Bank for Agriculture and Rural Development (NABARD) to State of Maharashtra from 2016-17 to 2018-19 (From: Ministry of Jal Shakti)
#> 636                                                                                                                                                        State/UT-wise Net Irrigated Area as per Agriculture Census during 2015-16 (From: Ministry of Jal Shakti)
#> 637                                                                                                                                             All India Level Yield of Rice and Wheat from 2014-15 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 638                                                                                                                       Details of Agricultural Land, Arable Land and Cultivable Land from 2010-11 to 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#> 639                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Karnataka
#> 640                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Nagaland
#> 641                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Goa
#> 642                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Manipur
#> 643                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Lakshadweep
#> 644                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Mizoram
#> 645                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Kerala
#> 646                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Tripura
#> 647                                                                                                                  Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - India
#> 648                                                                                                             Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Tamil Nadu
#> 649                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Meghalaya
#> 650                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Jammu & Kashmir
#> 651                                                                                                             Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Puducherry
#> 652                                                                                                                  Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Assam
#> 653                                                                                                       Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Himachal Pradesh
#> 654                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Andaman & Nicobar Islands
#> 655                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - West Bengal
#> 656                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Punjab
#> 657                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Jharkhand
#> 658                                                                                                             Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Chandigarh
#> 659                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Odisha
#> 660                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Uttarakhand
#> 661                                                                                                           Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Chhattisgarh
#> 662                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Haryana
#> 663                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Madhya Pradesh
#> 664                                                                                                           Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - NCT of Delhi
#> 665                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Gujarat
#> 666                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Rajasthan
#> 667                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Daman & Diu
#> 668                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Uttar Pradesh
#> 669                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Dadra & Nagar Haveli
#> 670                                                                                                                  Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Bihar
#> 671                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Maharashtra
#> 672                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Sikkim
#> 673                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Andhra Pradesh
#> 674                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Arunachal Pradesh
#> 675                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - India
#> 676                                                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Jharkhand
#> 677                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Jharkhand
#> 678                                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Chandigarh
#> 679                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - India
#> 680                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Assam
#> 681                                                                                                           Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Jammu & Kashmir
#> 682                                                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Odisha
#> 683                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Odisha
#> 684                                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Uttarakhand
#> 685                                                                                                           Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Jammu & Kashmir
#> 686                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - West Bengal
#> 687                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Himachal Pradesh
#> 688                                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Chhattisgarh
#> 689                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Chhattisgarh
#> 690                                                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Haryana
#> 691                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Himachal Pradesh
#> 692                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Jharkhand
#> 693                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Punjab
#> 694                                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Madhya Pradesh
#> 695                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Madhya Pradesh
#> 696                                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - NCT of Delhi
#> 697                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Uttarakhand
#> 698                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Odisha
#> 699                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Chandigarh
#> 700                                                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Gujarat
#> 701                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Gujarat
#> 702                                                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Rajasthan
#> 703                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Rajasthan
#> 704                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Chhattisgarh
#> 705                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Uttarakhand
#> 706                                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Daman & Diu
#> 707                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Daman & Diu
#> 708                                                                                                                                  Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Uttar Pradesh
#> 709                                                                                                             Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Uttar Pradesh
#> 710                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Madhya Pradesh
#> 711                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Haryana
#> 712                                                                                                                           Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Dadra & Nagar Haveli
#> 713                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Dadra & Nagar Haveli
#> 714                                                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Bihar
#> 715                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Bihar
#> 716                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Gujarat
#> 717                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - NCT of Delhi
#> 718                                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Maharashtra
#> 719                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Maharashtra
#> 720                                                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Sikkim
#> 721                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Sikkim
#> 722                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Daman & Diu
#> 723                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Rajasthan
#> 724                                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Andhra Pradesh
#> 725                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Andhra Pradesh
#> 726                                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Arunachal Pradesh
#> 727                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Arunachal Pradesh
#> 728                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Dadra & Nagar Haveli
#> 729                                                                                                             Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Uttar Pradesh
#> 730                                                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Karnataka
#> 731                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Karnataka
#> 732                                                                                                                                       Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Nagaland
#> 733                                                                                                                  Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Nagaland
#> 734                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Maharashtra
#> 735                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Bihar
#> 736                                                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Goa
#> 737                                                                                                                       Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Goa
#> 738                                                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Manipur
#> 739                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Manipur
#> 740                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Andhra Pradesh
#> 741                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Sikkim
#> 742                                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Lakshadweep
#> 743                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Lakshadweep
#> 744                                                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Mizoram
#> 745                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Mizoram
#> 746                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Karnataka
#> 747                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Manipur
#> 748                                                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Kerala
#> 749                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Kerala
#> 750                                                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Tripura
#> 751                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Tripura
#> 752                                                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - India
#> 753                                                                                                                       Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Goa
#> 754                                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Tamil Nadu
#> 755                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Tamil Nadu
#> 756                                                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Meghalaya
#> 757                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Meghalaya
#> 758                                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Jammu & Kashmir
#> 759                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Kerala
#> 760                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Mizoram
#> 761                                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Puducherry
#> 762                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Andaman & Nicobar Islands
#> 763                                                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Assam
#> 764                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Assam
#> 765                                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Himachal Pradesh
#> 766                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Tamil Nadu
#> 767                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Tripura
#> 768                                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Andaman & Nicobar Islands
#> 769                                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - West Bengal
#> 770                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - West Bengal
#> 771                                                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Punjab
#> 772                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Puducherry
#> 773                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Meghalaya
#> 774                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - India
#> 775                                                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Jharkhand
#> 776                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Jharkhand
#> 777                                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Chandigarh
#> 778                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - India
#> 779                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Assam
#> 780                                                                                                               Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Jammu & Kashmir
#> 781                                                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Odisha
#> 782                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Odisha
#> 783                                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Uttarakhand
#> 784                                                                                                               Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Jammu & Kashmir
#> 785                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - West Bengal
#> 786                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Himachal Pradesh
#> 787                                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Chhattisgarh
#> 788                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Chhattisgarh
#> 789                                                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Haryana
#> 790                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Himachal Pradesh
#> 791                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Jharkhand
#> 792                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Punjab
#> 793                                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Madhya Pradesh
#> 794                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Madhya Pradesh
#> 795                                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - NCT of Delhi
#> 796                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Uttarakhand
#> 797                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Odisha
#> 798                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Chandigarh
#> 799                                                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Gujarat
#> 800                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Gujarat
#> 801                                                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Rajasthan
#> 802                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Rajasthan
#> 803                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Chhattisgarh
#> 804                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Uttarakhand
#> 805                                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Daman & Diu
#> 806                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Daman & Diu
#> 807                                                                                                                                      Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Uttar Pradesh
#> 808                                                                                                                 Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Uttar Pradesh
#> 809                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Madhya Pradesh
#> 810                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Haryana
#> 811                                                                                                                               Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Dadra & Nagar Haveli
#> 812                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Dadra & Nagar Haveli
#> 813                                                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Bihar
#> 814                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Bihar
#> 815                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Gujarat
#> 816                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - NCT of Delhi
#> 817                                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Maharashtra
#> 818                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Maharashtra
#> 819                                                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Sikkim
#> 820                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Sikkim
#> 821                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Daman & Diu
#> 822                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Rajasthan
#> 823                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Andhra Pradesh
#> 824                                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Arunachal Pradesh
#> 825                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Arunachal Pradesh
#> 826                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Dadra & Nagar Haveli
#> 827                                                                                                                 Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Uttar Pradesh
#> 828                                                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Karnataka
#> 829                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Karnataka
#> 830                                                                                                                                           Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Nagaland
#> 831                                                                                                                      Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Nagaland
#> 832                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Maharashtra
#> 833                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Bihar
#> 834                                                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Goa
#> 835                                                                                                                           Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Goa
#> 836                                                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Manipur
#> 837                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Manipur
#> 838                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Andhra Pradesh
#> 839                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Sikkim
#> 840                                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Lakshadweep
#> 841                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Lakshadweep
#> 842                                                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Mizoram
#> 843                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Mizoram
#> 844                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Karnataka
#> 845                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Manipur
#> 846                                                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Kerala
#> 847                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Kerala
#> 848                                                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Tripura
#> 849                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Tripura
#> 850                                                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - India
#> 851                                                                                                                           Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Goa
#> 852                                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Tamil Nadu
#> 853                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Tamil Nadu
#> 854                                                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Meghalaya
#> 855                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Meghalaya
#> 856                                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Jammu & Kashmir
#> 857                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Kerala
#> 858                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Mizoram
#> 859                                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Puducherry
#> 860                                                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Assam
#> 861                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Assam
#> 862                                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Himachal Pradesh
#> 863                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Tamil Nadu
#> 864                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Tripura
#> 865                                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Andaman & Nicobar Islands
#> 866                                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - West Bengal
#> 867                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - West Bengal
#> 868                                                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Punjab
#> 869                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Puducherry
#> 870                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Meghalaya
#> 871                                                                                                              Minimum Support Price (MSP) and Wholesale Prices of Major Agricultural Commodities during 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 872                                                                                 State-wise Custom Hiring Centres Established under Sub Mission on Agricultural Mechanization (SMAM) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 873                                 District-wise the Number of Farmers Benefited under Paramparagat Krishi Vikas Yojana (PKVY) in State of Uttar Pradesh (in reply to Unstarred Question on 22 November, 2019) (From: Ministry of Agriculture and Farmers Welfare)
#> 874                                                                                                                       Value of Output from Agriculture and Allied Activities in J&K from 2004-05 to 2010-11 (From: Ministry of Agriculture and Farmers Welfare)
#> 875                                 State/UT-wise Allocation of Funds under National Horticulture Mission (NHM) and Horticulture Mission for North Eastern and Himalayan States (HMNEH) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 876                                                                                                                                     State/UT and Crop-wise Production of Foodgrains from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 877                                                                                                                                   Details of MSP, Cost and Percent Return Over Cost from 2017-18 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 878                                                                                     State/UT-wise Income Generated by the Agricultural Households under National Sample Survey Office (NSSO) during 2012-13 (From: Ministry of Agriculture and Farmers Welfare)
#> 879                                                                        State-wise Number of Custom Hiring Centres Established under Submission on Agricultural Mechanization (SMAM) from 2014-15 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 880                                                                                                                       Value of Output from Agriculture and Allied Activities in J&K from 2011-12 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 881                                       District-wise Amount of Financial Assistance Provided to the Beneficiaries under Pradhan Mantri Kisan Samman Nidhi Yojana (PM-KISAN) in Maharashtra from 2018 to 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 882                                                                 State-wise detail of number of farmers imparted skill development training related to agriculture by Government as on 11th Nov, 2019 (From: Ministry of Skill Development and Entrepreneurship)
#> 883                                                                                                              State/UT/Agency-wise Funds Released under the Aforementioned scheme during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 884                             State/UT-wise Fund Allocated, Released and Expenditure under Schemes being Implemented by Department of Agriculture, Cooperation and farmers Welfare during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 885                                                                                                                                           Value of Output from Apple Farming in J&K from 2004-05 to 2010-11 (From: Ministry of Agriculture and Farmers Welfare)
#> 886                                                                              District-wise beneficiaries detail for registration period in Maharashtra under PM-KISAN 1st August 2019 to 30th November 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 887                                                                                                                                     State/UT-wise Details of Suicide Committed by Farmers from 2014 to 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 888                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Samastipur District of Bihar, 1991
#> 889                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kolar District of Karnataka, 1991
#> 890                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kendujhar District of Orissa, 1991
#> 891                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rajnandgaon District of Madhya Pradesh, 1991
#> 892                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bahraich District of Uttar Pradesh, 1991
#> 893                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Salem District of Tamil Nadu, 1991
#> 894                                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - India (Excluding J&K)
#> 895                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kinnaur District of Himachal Pradesh, 1991
#> 896                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Mizoram
#> 897                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Vidisha District of Madhya Pradesh, 1991
#> 898                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Unnao District of Uttar Pradesh, 1991
#> 899                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bundi District of Rajasthan, 1991
#> 900                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lakshadweep District of Lakshadweep, 1991
#> 901                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhemaji District of Assam, 1991
#> 902                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Amreli District of Gujarat, 1991
#> 903                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhiwani District of Haryana, 1991
#> 904                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gadchiroli District of Maharashtra, 1991
#> 905                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Damoh District of Madhya Pradesh, 1991
#> 906                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Meerut District of Uttar Pradesh, 1991
#> 907                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jaipur District of Rajasthan, 1991
#> 908                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Puruliya District of West Bengal, 1991
#> 909                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Siang District of Arunachal Pradesh, 1991
#> 910                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Palamu District of Bihar, 1991
#> 911                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kolhapur District of Maharashtra, 1991
#> 912                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kottayam District of Kerala, 1991
#> 913                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for South Tripura District of Tripura, 1991
#> 914                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kapurthala District of Punjab, 1991
#> 915                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sonbhadra District of Uttar Pradesh, 1991
#> 916                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rangareddi District of Andhra Pradesh, 1991
#> 917                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Darbhanga District of Bihar, 1991
#> 918                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mandya District of Karnataka, 1991
#> 919                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mayurbhanj District of Orissa, 1991
#> 920                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Durg District of Madhya Pradesh, 1991
#> 921                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gonda District of Uttar Pradesh, 1991
#> 922                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Periyar District of Tamil Nadu, 1991
#> 923                                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Andhra Pradesh
#> 924                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rohtas District of Bihar, 1991
#> 925                                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Karnataka
#> 926                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Aizawl District of Mizoram, 1991
#> 927                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhopal District of Madhya Pradesh, 1991
#> 928                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lucknow District of Uttar Pradesh, 1991
#> 929                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kota District of Rajasthan, 1991
#> 930                                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Pondicherry
#> 931                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Marigaon District of Assam, 1991
#> 932                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Junagadh District of Gujarat, 1991
#> 933                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jind District of Haryana, 1991
#> 934                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Manipur
#> 935                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Satna District of Madhya Pradesh, 1991
#> 936                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ghaziabad District of Uttar Pradesh, 1991
#> 937                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sikar District of Rajasthan, 1991
#> 938                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Barddhaman District of West Bengal, 1991
#> 939                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dibang Valley District of Arunachal Pradesh, 1991
#> 940                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lohardaga District of Bihar, 1991
#> 941                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Aurangabad District of Maharashtra, 1991
#> 942                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Alappuzha District of Kerala, 1991
#> 943                                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Uttar Pradesh
#> 944                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hyderabad District of Andhra Pradesh, 1991
#> 945                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Madhubani District of Bihar, 1991
#> 946                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mysore District of Karnataka, 1991
#> 947                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Baleshwar District of Orissa, 1991
#> 948                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Raipur District of Madhya Pradesh, 1991
#> 949                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Barabanki District of Uttar Pradesh, 1991
#> 950                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nilgiri District of Tamil Nadu, 1991
#> 951                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Srikakulam District of Andhra Pradesh, 1991
#> 952                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bangalore District of Karnataka, 1991
#> 953                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lunglei District of Mizoram, 1991
#> 954                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sehore District of Madhya Pradesh, 1991
#> 955                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rae Bareli District of Uttar Pradesh, 1991
#> 956                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jhalawar District of Rajasthan, 1991
#> 957                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pondicherry District of Pondicherry, 1991
#> 958                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nagaon District of Assam, 1991
#> 959                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kachchh District of Gujarat, 1991
#> 960                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hisar District of Haryana, 1991
#> 961                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Senapati District of Manipur, 1991
#> 962                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rewa District of Madhya Pradesh, 1991
#> 963                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bulandshahr District of Uttar Pradesh, 1991
#> 964                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ajmer District of Rajasthan, 1991
#> 965                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Birbhum District of West Bengal, 1991
#> 966                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lohit District of Arunachal Pradesh, 1991
#> 967                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pathanamthitta District of Kerala, 1991
#> 968                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Uttarkashi District of Uttar Pradesh, 1991
#> 969                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rupnagar District of Punjab, 1991
#> 970                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Koch Bihar District of West Bengal, 1991
#> 971                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Medak District of Andhra Pradesh, 1991
#> 972                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Saharsa District of Bihar, 1991
#> 973                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Raichur District of Karnataka, 1991
#> 974                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Cuttack District of Orissa, 1991
#> 975                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bastar District of Madhya Pradesh, 1991
#> 976                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Faizabad District of Uttar Pradesh, 1991
#> 977                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jehanabad District of Bihar, 1991
#> 978                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bangalore Rural District of Karnataka, 1991
#> 979                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chhimtuipui District of Mizoram, 1991
#> 980                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Raisen District of Madhya Pradesh, 1991
#> 981                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Farrukhabad District of Uttar Pradesh, 1991
#> 982                                                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Sikkim
#> 983                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Karaikal District of Pondicherry, 1991
#> 984                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Golaghat District of Assam, 1991
#> 985                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Banas Kantha District of Gujarat, 1991
#> 986                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sirsa District of Haryana, 1991
#> 987                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tamenglong District of Manipur, 1991
#> 988                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shahdol District of Madhya Pradesh, 1991
#> 989                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Aligarh District of Uttar Pradesh, 1991
#> 990                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tonk District of Rajasthan, 1991
#> 991                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Andaman and Nicobar Islands
#> 992                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Changlang District of Arunachal Pradesh, 1991
#> 993                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ranchi District of Bihar, 1991
#> 994                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Haryana
#> 995                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Parbhani District of Maharashtra, 1991
#> 996                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kollam District of Kerala, 1991
#> 997                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chamoli District of Uttar Pradesh, 1991
#> 998                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Patiala District of Punjab, 1991
#> 999                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalpaiguri District of West Bengal, 1991
#> 1000                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nizamabad District of Andhra Pradesh, 1991
#> 1001                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Madhepura District of Bihar, 1991
#> 1002                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shimoga District of Karnataka, 1991
#> 1003                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhenkanal District of Orissa, 1991
#> 1004                                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Maharashtra
#> 1005                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sultanpur District of Uttar Pradesh, 1991
#> 1006                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dindigul Quaid E Milleth District of Tamil Nadu, 1991
#> 1007                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Vizianagaram District of Andhra Pradesh, 1991
#> 1008                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Belgaum District of Karnataka, 1991
#> 1009                                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Nagaland
#> 1010                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Betul District of Madhya Pradesh, 1991
#> 1011                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Etawah District of Uttar Pradesh, 1991
#> 1012                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for North District of Sikkim, 1991
#> 1013                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mahe District of Pondicherry, 1991
#> 1014                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jorhat District of Assam, 1991
#> 1015                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sabar Kantha District of Gujarat, 1991
#> 1016                                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Himachal Pradesh
#> 1017                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Churachandpur District of Manipur, 1991
#> 1018                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sidhi District of Madhya Pradesh, 1991
#> 1019                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mathura District of Uttar Pradesh, 1991
#> 1020                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jaisalmer District of Rajasthan, 1991
#> 1021                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Andamans District of Andaman and Nicobar Islands, 1991
#> 1022                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tirap District of Arunachal Pradesh, 1991
#> 1023                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Purbi Singhbhum District of Bihar, 1991
#> 1024                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ambala District of Haryana, 1991
#> 1025                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bid District of Maharashtra, 1991
#> 1026                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Trivandrum District of Kerala, 1991
#> 1027                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sangrur District of Punjab, 1991
#> 1028                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Darjiling District of West Bengal, 1991
#> 1029                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Adilabad District of Andhra Pradesh, 1991
#> 1030                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Purnia District of Bihar, 1991
#> 1031                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tumkur District of Karnataka, 1991
#> 1032                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Phulabani District of Orissa, 1991
#> 1033                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Greater Bombay District of Maharashtra, 1991
#> 1034                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Siddharthnagar District of Uttar Pradesh, 1991
#> 1035                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tiruchchirappalli District of Tamil Nadu, 1991
#> 1036                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Visakhapatnam District of Andhra Pradesh, 1991
#> 1037                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gaya District of Bihar, 1991
#> 1038                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bellary District of Karnataka, 1991
#> 1039                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kohima District of Nagaland, 1991
#> 1040                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hoshangabad District of Madhya Pradesh, 1991
#> 1041                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kanpur (Dehat) District of Uttar Pradesh, 1991
#> 1042                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East District of Sikkim, 1991
#> 1043                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Yanam District of Pondicherry, 1991
#> 1044                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sibsagar District of Assam, 1991
#> 1045                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mahesana District of Gujarat, 1991
#> 1046                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chamba District of Himachal Pradesh, 1991
#> 1047                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chandel District of Manipur, 1991
#> 1048                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mandsaur District of Madhya Pradesh, 1991
#> 1049                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Agra District of Uttar Pradesh, 1991
#> 1050                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jodhpur District of Rajasthan, 1991
#> 1051                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nicobars District of Andaman and Nicobar Islands, 1991
#> 1052                                                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Assam
#> 1053                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pashchimi Singhbhum District of Bihar, 1991
#> 1054                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Yamunanagar District of Haryana, 1991
#> 1055                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nanded District of Maharashtra, 1991
#> 1056                                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Madhya Pradesh
#> 1057                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dehradun District of Uttar Pradesh, 1991
#> 1058                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bathinda District of Punjab, 1991
#> 1059                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Dinajpur District of West Bengal, 1991
#> 1060                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Karimnagar District of Andhra Pradesh, 1991
#> 1061                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Katihar District of Bihar, 1991
#> 1062                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Uttar Kannad District of Karnataka, 1991
#> 1063                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Balangir District of Orissa, 1991
#> 1064                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Thane District of Maharashtra, 1991
#> 1065                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Maharajganj District of Uttar Pradesh, 1991
#> 1066                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Thanjavur District of Tamil Nadu, 1991
#> 1067                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Godavari District of Andhra Pradesh, 1991
#> 1068                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nawada District of Bihar, 1991
#> 1069                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Phek District of Nagaland, 1991
#> 1070                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jabalpur District of Madhya Pradesh, 1991
#> 1071                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for South District of Sikkim, 1991
#> 1072                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dibrugarh District of Assam, 1991
#> 1073                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gandhinagar District of Gujarat, 1991
#> 1074                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kangra District of Himachal Pradesh, 1991
#> 1075                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Thoubal District of Manipur, 1991
#> 1076                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ratlam District of Madhya Pradesh, 1991
#> 1077                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Firozabad District of Uttar Pradesh, 1991
#> 1078                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nagaur District of Rajasthan, 1991
#> 1079                                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Chandigarh
#> 1080                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhubri District of Assam, 1991
#> 1081                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Araria District of Bihar, 1991
#> 1082                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kurukshetra District of Haryana, 1991
#> 1083                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Osmanabad District of Maharashtra, 1991
#> 1084                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Morena District of Madhya Pradesh, 1991
#> 1085                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Garhwal District of Uttar Pradesh, 1991
#> 1086                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Faridkot District of Punjab, 1991
#> 1087                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Maldah District of West Bengal, 1991
#> 1088                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Warangal District of Andhra Pradesh, 1991
#> 1089                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Khagaria District of Bihar, 1991
#> 1090                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Kerala
#> 1091                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kalahandi District of Orissa, 1991
#> 1092                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Raigarh District of Maharashtra, 1991
#> 1093                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Basti District of Uttar Pradesh, 1991
#> 1094                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pudukkottai District of Tamil Nadu, 1991
#> 1095                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Godavari District of Andhra Pradesh, 1991
#> 1096                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Saran District of Bihar, 1991
#> 1097                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bidar District of Karnataka, 1991
#> 1098                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalaun District of Uttar Pradesh, 1991
#> 1099                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West District of Sikkim, 1991
#> 1100                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tinsukia District of Assam, 1991
#> 1101                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ahmadabad District of Gujarat, 1991
#> 1102                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hamirpur District of Himachal Pradesh, 1991
#> 1103                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bishnupur District of Manipur, 1991
#> 1104                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ujjain District of Madhya Pradesh, 1991
#> 1105                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Etah District of Uttar Pradesh, 1991
#> 1106                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pali District of Rajasthan, 1991
#> 1107                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chandigarh District of Chandigarh, 1991
#> 1108                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kokrajhar District of Assam, 1991
#> 1109                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kishanganj District of Bihar, 1991
#> 1110                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kaithal District of Haryana, 1991
#> 1111                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Latur District of Maharashtra, 1991
#> 1112                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhind District of Madhya Pradesh, 1991
#> 1113                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pithoragarh District of Uttar Pradesh, 1991
#> 1114                                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Rajasthan
#> 1115                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Murshidabad District of West Bengal, 1991
#> 1116                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Khammam District of Andhra Pradesh, 1991
#> 1117                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Munger District of Bihar, 1991
#> 1118                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kasaragod District of Kerala, 1991
#> 1119                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Koraput District of Orissa, 1991
#> 1120                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gorakhpur District of Uttar Pradesh, 1991
#> 1121                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pasumpon Thevar Thirumagan District of Tamil Nadu, 1991
#> 1122                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Krishna District of Andhra Pradesh, 1991
#> 1123                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Siwan District of Bihar, 1991
#> 1124                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bijapur District of Karnataka, 1991
#> 1125                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Zunheboto District of Nagaland, 1991
#> 1126                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Narsimhapur District of Madhya Pradesh, 1991
#> 1127                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Karbi Anglong District of Assam, 1991
#> 1128                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kheda District of Gujarat, 1991
#> 1129                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Una District of Himachal Pradesh, 1991
#> 1130                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Imphal District of Manipur, 1991
#> 1131                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shajapur District of Madhya Pradesh, 1991
#> 1132                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mainpuri District of Uttar Pradesh, 1991
#> 1133                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Barmer District of Rajasthan, 1991
#> 1134                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Dadra and Nagar Haveli
#> 1135                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bongaigaon District of Assam, 1991
#> 1136                                                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Goa
#> 1137                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Karnal District of Haryana, 1991
#> 1138                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Buldana District of Maharashtra, 1991
#> 1139                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gwalior District of Madhya Pradesh, 1991
#> 1140                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Almora District of Uttar Pradesh, 1991
#> 1141                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ganganagar District of Rajasthan, 1991
#> 1142                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nadia District of West Bengal, 1991
#> 1143                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nalgonda District of Andhra Pradesh, 1991
#> 1144                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhagalpur District of Bihar, 1991
#> 1145                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kannur District of Kerala, 1991
#> 1146                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ganjam District of Orissa, 1991
#> 1147                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sindhudurg District of Maharashtra, 1991
#> 1148                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Deoria District of Uttar Pradesh, 1991
#> 1149                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Madurai District of Tamil Nadu, 1991
#> 1150                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Guntur District of Andhra Pradesh, 1991
#> 1151                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gopalganj District of Bihar, 1991
#> 1152                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chikmagalur District of Karnataka, 1991
#> 1153                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Wokha District of Nagaland, 1991
#> 1154                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mandla District of Madhya Pradesh, 1991
#> 1155                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jhansi District of Uttar Pradesh, 1991
#> 1156                                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Tamil Nadu
#> 1157                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for North Cachar Hills District of Assam, 1991
#> 1158                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Panch Mahals District of Gujarat, 1991
#> 1159                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bilaspur District of Himachal Pradesh, 1991
#> 1160                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ukhrul District of Manipur, 1991
#> 1161                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dewas District of Madhya Pradesh, 1991
#> 1162                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Budaun District of Uttar Pradesh, 1991
#> 1163                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalor District of Rajasthan, 1991
#> 1164                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dadra and Nagar Haveli District of Dadra and Nagar Haveli, 1991
#> 1165                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Goalpara District of Assam, 1991
#> 1166                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for North Goa District of Goa, 1991
#> 1167                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Panipat District of Haryana, 1991
#> 1168                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Akola District of Maharashtra, 1991
#> 1169                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Datia District of Madhya Pradesh, 1991
#> 1170                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nainital District of Uttar Pradesh, 1991
#> 1171                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bikaner District of Rajasthan, 1991
#> 1172                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for North Twenty Four Parganas District of West Bengal, 1991
#> 1173                                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Arunachal Pradesh
#> 1174                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Godda District of Bihar, 1991
#> 1175                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Wayanad District of Kerala, 1991
#> 1176                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Puri District of Orissa, 1991
#> 1177                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nashik District of Maharashtra, 1991
#> 1178                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mau District of Uttar Pradesh, 1991
#> 1179                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kamarajar District of Tamil Nadu, 1991
#> 1180                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Prakasam District of Andhra Pradesh, 1991
#> 1181                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pashchim Champaran District of Bihar, 1991
#> 1182                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chitradurga District of Karnataka, 1991
#> 1183                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mokokchung District of Nagaland, 1991
#> 1184                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chhindwara District of Madhya Pradesh, 1991
#> 1185                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lalitpur District of Uttar Pradesh, 1991
#> 1186                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Madras District of Tamil Nadu, 1991
#> 1187                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Karimganj District of Assam, 1991
#> 1188                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Vadodara District of Gujarat, 1991
#> 1189                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mandi District of Himachal Pradesh, 1991
#> 1190                                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Meghalaya
#> 1191                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jhabua District of Madhya Pradesh, 1991
#> 1192                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bareilly District of Uttar Pradesh, 1991
#> 1193                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sirohi District of Rajasthan, 1991
#> 1194                                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Daman and Diu
#> 1195                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Barpeta District of Assam, 1991
#> 1196                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for South Goa District of Goa, 1991
#> 1197                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sonipat District of Haryana, 1991
#> 1198                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Amravati District of Maharashtra, 1991
#> 1199                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shivpuri District of Madhya Pradesh, 1991
#> 1200                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bijnor District of Uttar Pradesh, 1991
#> 1201                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Churu District of Rajasthan, 1991
#> 1202                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for South Twenty Four Parganas District of West Bengal, 1991
#> 1203                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tawang District of Arunachal Pradesh, 1991
#> 1204                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sahibganj District of Bihar, 1991
#> 1205                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kozhikode District of Kerala, 1991
#> 1206                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Punjab
#> 1207                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhule District of Maharashtra, 1991
#> 1208                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Azamgarh District of Uttar Pradesh, 1991
#> 1209                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ramanathapuram District of Tamil Nadu, 1991
#> 1210                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nellore District of Andhra Pradesh, 1991
#> 1211                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Purba Champaran District of Bihar, 1991
#> 1212                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dakshin Kannad District of Karnataka, 1991
#> 1213                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tuensang District of Nagaland, 1991
#> 1214                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Seoni District of Madhya Pradesh, 1991
#> 1215                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hamirpur District of Uttar Pradesh, 1991
#> 1216                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chengai Anna District of Tamil Nadu, 1991
#> 1217                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hailakandi District of Assam, 1991
#> 1218                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bharuch District of Gujarat, 1991
#> 1219                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kullu District of Himachal Pradesh, 1991
#> 1220                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jaintia Hills District of Meghalaya, 1991
#> 1221                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhar District of Madhya Pradesh, 1991
#> 1222                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pilibhit District of Uttar Pradesh, 1991
#> 1223                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhilwara District of Rajasthan, 1991
#> 1224                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Daman District of Daman and Diu, 1991
#> 1225                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nalbari District of Assam, 1991
#> 1226                                                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Gujarat
#> 1227                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rohtak District of Haryana, 1991
#> 1228                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Yavatmal District of Maharashtra, 1991
#> 1229                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Guna District of Madhya Pradesh, 1991
#> 1230                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Moradabad District of Uttar Pradesh, 1991
#> 1231                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jhunjhunun District of Rajasthan, 1991
#> 1232                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Calcutta District of West Bengal, 1991
#> 1233                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Kameng District of Arunachal Pradesh, 1991
#> 1234                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dumka District of Bihar, 1991
#> 1235                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Malappuram District of Kerala, 1991
#> 1236                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gurdaspur District of Punjab, 1991
#> 1237                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalgaon District of Maharashtra, 1991
#> 1238                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jaunpur District of Uttar Pradesh, 1991
#> 1239                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chidambaranar District of Tamil Nadu, 1991
#> 1240                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chittoor District of Andhra Pradesh, 1991
#> 1241                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sitamarhi District of Bihar, 1991
#> 1242                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dharwad District of Karnataka, 1991
#> 1243                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mon District of Nagaland, 1991
#> 1244                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Balaghat District of Madhya Pradesh, 1991
#> 1245                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Banda District of Uttar Pradesh, 1991
#> 1246                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Cachar District of Assam, 1991
#> 1247                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Surat District of Gujarat, 1991
#> 1248                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lahul and Spiti District of Himachal Pradesh, 1991
#> 1249                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Khasi Hills District of Meghalaya, 1991
#> 1250                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Indore District of Madhya Pradesh, 1991
#> 1251                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shahjahanpur District of Uttar Pradesh, 1991
#> 1252                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Udaipur District of Rajasthan, 1991
#> 1253                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Diu District of Daman and Diu, 1991
#> 1254                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kamrup District of Assam, 1991
#> 1255                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jamnagar District of Gujarat, 1991
#> 1256                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Faridabad District of Haryana, 1991
#> 1257                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Wardha District of Maharashtra, 1991
#> 1258                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tikamgarh District of Madhya Pradesh, 1991
#> 1259                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rampur District of Uttar Pradesh, 1991
#> 1260                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Alwar District of Rajasthan, 1991
#> 1261                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Haora District of West Bengal, 1991
#> 1262                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Kameng District of Arunachal Pradesh, 1991
#> 1263                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Deoghar District of Bihar, 1991
#> 1264                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Palakkad District of Kerala, 1991
#> 1265                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kanniyakumari District of Tamil Nadu, 1991
#> 1266                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Amritsar District of Punjab, 1991
#> 1267                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ahmadnagar District of Maharashtra, 1991
#> 1268                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ballia District of Uttar Pradesh, 1991
#> 1269                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tirunelveli Kattabomman District of Tamil Nadu, 1991
#> 1270                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Cuddapah District of Andhra Pradesh, 1991
#> 1271                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Muzaffarpur District of Bihar, 1991
#> 1272                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gulbarga District of Karnataka, 1991
#> 1273                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Orissa
#> 1274                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Surguja District of Madhya Pradesh, 1991
#> 1275                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Fatehpur District of Uttar Pradesh, 1991
#> 1276                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dharmapuri District of Tamil Nadu, 1991
#> 1277                                                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Bihar
#> 1278                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Valsad District of Gujarat, 1991
#> 1279                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shimla District of Himachal Pradesh, 1991
#> 1280                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Khasi Hills District of Meghalaya, 1991
#> 1281                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Nimar District of Madhya Pradesh, 1991
#> 1282                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kheri District of Uttar Pradesh, 1991
#> 1283                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chittaurgarh District of Rajasthan, 1991
#> 1284                                                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Delhi
#> 1285                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Darrang District of Assam, 1991
#> 1286                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rajkot District of Gujarat, 1991
#> 1287                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gurgaon District of Haryana, 1991
#> 1288                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nagpur District of Maharashtra, 1991
#> 1289                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chhatarpur District of Madhya Pradesh, 1991
#> 1290                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Saharanpur District of Uttar Pradesh, 1991
#> 1291                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bharatpur District of Rajasthan, 1991
#> 1292                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hugli District of West Bengal, 1991
#> 1293                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lower Subansiri District of Arunachal Pradesh, 1991
#> 1294                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhanbad District of Bihar, 1991
#> 1295                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Thrissur District of Kerala, 1991
#> 1296                                                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Tripura
#> 1297                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Firozpur District of Punjab, 1991
#> 1298                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pune District of Maharashtra, 1991
#> 1299                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ghazipur District of Uttar Pradesh, 1991
#> 1300                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Anantapur District of Andhra Pradesh, 1991
#> 1301                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Vaishali District of Bihar, 1991
#> 1302                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hassan District of Karnataka, 1991
#> 1303                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sambalpur District of Orissa, 1991
#> 1304                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bilaspur District of Madhya Pradesh, 1991
#> 1305                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pratapgarh District of Uttar Pradesh, 1991
#> 1306                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tiruvannamalai Sambuvarayar District of Tamil Nadu, 1991
#> 1307                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Patna District of Bihar, 1991
#> 1308                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Solan District of Himachal Pradesh, 1991
#> 1309                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Garo Hills District of Meghalaya, 1991
#> 1310                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Nimar District of Madhya Pradesh, 1991
#> 1311                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sitapur District of Uttar Pradesh, 1991
#> 1312                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dungarpur District of Rajasthan, 1991
#> 1313                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Delhi District of Delhi, 1991
#> 1314                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sonitpur District of Assam, 1991
#> 1315                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Surendranagar District of Gujarat, 1991
#> 1316                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rewari District of Haryana, 1991
#> 1317                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhandara District of Maharashtra, 1991
#> 1318                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Panna District of Madhya Pradesh, 1991
#> 1319                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hardwar District of Uttar Pradesh, 1991
#> 1320                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dholpur District of Rajasthan, 1991
#> 1321                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Medinipur District of West Bengal, 1991
#> 1322                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Upper Subansiri District of Arunachal Pradesh, 1991
#> 1323                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Giridih District of Bihar, 1991
#> 1324                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ernakulam District of Kerala, 1991
#> 1325                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Tripura District of Tripura, 1991
#> 1326                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ludhiana District of Punjab, 1991
#> 1327                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Satara District of Maharashtra, 1991
#> 1328                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Varanasi District of Uttar Pradesh, 1991
#> 1329                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kurnool District of Andhra Pradesh, 1991
#> 1330                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Begusarai District of Bihar, 1991
#> 1331                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kodagu District of Karnataka, 1991
#> 1332                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sundargarh District of Orissa, 1991
#> 1333                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Raigarh District of Madhya Pradesh, 1991
#> 1334                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Allahabad District of Uttar Pradesh, 1991
#> 1335                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for South Arcot District of Tamil Nadu, 1991
#> 1336                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nalanda District of Bihar, 1991
#> 1337                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sirmaur District of Himachal Pradesh, 1991
#> 1338                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Garo Hills District of Meghalaya, 1991
#> 1339                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rajgarh District of Madhya Pradesh, 1991
#> 1340                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hardoi District of Uttar Pradesh, 1991
#> 1341                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Banswara District of Rajasthan, 1991
#> 1342                                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Lakshadweep
#> 1343                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lakhimpur District of Assam, 1991
#> 1344                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhavnagar District of Gujarat, 1991
#> 1345                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mahendragarh District of Haryana, 1991
#> 1346                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chandrapur District of Maharashtra, 1991
#> 1347                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sagar District of Madhya Pradesh, 1991
#> 1348                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Muzaffarnagar District of Uttar Pradesh, 1991
#> 1349                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sawai Madhopur District of Rajasthan, 1991
#> 1350                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bankura District of West Bengal, 1991
#> 1351                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Siang District of Arunachal Pradesh, 1991
#> 1352                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hazaribag District of Bihar, 1991
#> 1353                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Solapur District of Maharashtra, 1991
#> 1354                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Idukki District of Kerala, 1991
#> 1355                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for North Tripura District of Tripura, 1991
#> 1356                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalandhar District of Punjab, 1991
#> 1357                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sangli District of Maharashtra, 1991
#> 1358                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mirzapur District of Uttar Pradesh, 1991
#> 1359                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mahbubnagar District of Andhra Pradesh, 1991
#> 1360                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhojpur District of Bihar, 1991
#> 1361                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hoshiarpur District of Punjab, 1991
#> 1362                                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - West Bengal
#> 1363                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Aurangabad District of Bihar, 1991
#> 1364                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gumla District of Bihar, 1991
#> 1365                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for The Dangs District of Gujarat, 1991
#> 1366                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalna District of Maharashtra, 1991
#> 1367                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Coimbatore District of Tamil Nadu, 1991
#> 1368                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tehri Garhwal District of Uttar Pradesh, 1991
#> 1369                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kanpur (Nagar) District of Uttar Pradesh, 1991
#> 1370                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ratnagiri District of Maharashtra, 1991
#> 1371                                                                                                              Bank-wise Achievement under Priority Sector, Agriculture and Weaker Section in State of Maharashtra from 2016 to 2018 (From: Ministry of Finance)
#> 1372                                                                                                     State/UT-wise Number of Suicides by Self Employed persons in Farming/Agriculture during 2014 and 2015 (From : Ministry of Agriculture and Farmers Welfare)
#> 1373                                                      State/UT-wise Details of Amount of Premium Charged from Farmers/Gross Premium and Claim amount paid to Farmers under PMFBY during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1374                                                                         State/UT-wise Statement showing Districts covered under Mission for Integrated Development of Horticulture (MIDH) As on 06.04.2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 1375                                                                                         Marketing Season-wise number of Farmers Benefited to MSP under Procurement of Paddy and Wheat as on 03 July, 2019 (From : Ministry of Agriculture and Farmers Welfare)
#> 1376                                                     Details of Farmers Benefited for Procurement of Pulses at MSP under Price Support Scheme (PSS)/Price Stabilization Fund (PSF) from 2014-15 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1377                                                                                    Details of Cost, MSP and percentage Return weighted average cost of production for Kharif Crop from 2017-18 to 2019-20 (From : Ministry of Agriculture and Farmers Welfare)
#> 1378                                                                                                                                  Year-wise cultivated land/area under cultivation from 2012-13 to 2014-15 (From : Ministry of Agriculture and Farmers Welfare)
#> 1379                                                                                                         Availability of Certified/Quality Seeds including Native Seeds in Country from 2016-17 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1380                                                                                            Year-wise Details of procurement centres for procurement of Pulses, Oilseeds and Copra from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1381                              State/UT-wise Average Monthly Income (Rs.) per Agricultural Household as per the results of the SAS of Agricultural Households, NSS 70th Round during July 2012 to June 2013 (From : Ministry of Agriculture and Farmers Welfare)
#> 1382                                                                                                                                  State/UT-wise Details of Procurement of Wheat during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1383                                                  State-wise Production of cotton as per Cotton Advisory Board (CAB) and its' Procurement under Minimum Support Price (MSP) by CCI from 2014-15 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1384          Allocation of Funds (Central Share) to the state of Jammu & Kashmir to increase production and productivity of agricultural produce under Centrally Sponsored Schemes during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1385                                                                                                                Cost of production, MSP and return over cost of major Kharif and Rabi crops during 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1386                 State/UT-wise Details of percentage of Expenditure on Agriculture and allied Activities under the Mahatma Gandhi National Rural Employment Guarantee Scheme (MGNREGS) during the Financial Year 2017-18 (From : Ministry of Rural Development)
#> 1387                                                                                       District-wise cold storages assisted by Gujarat State Horticulture Mission under NHM (MIDH) from 2015-16 to 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1388                                                                                All India Average Monthly Wholesale Price and Minimum Support Price (MSP) of major Kharif crops during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1389                                                                                                    Details of the premium collected and payout made under PMFBY and RWBCIS during 2016-17 and Kharif 2017 (From : Ministry of Agriculture and Farmers Welfare)
#> 1390                                                                                                                                        Cost and purchase price (MSP) of pulses during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1391                                                                                                                              Details of MSP, Cost and percent return over Cost during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1392                                                                                  All India Average Monthly Wholesale Price and Minimum Support Price (MSP) of major Rabi crops during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1393                                                                                                                Details of Minimum Support Prices (MSP) of pulses, including bonus from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1394                                                                                                                                   State/UT-wise Production of Vegetables Crops during 2016-17 and 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1395                                                                                                                                                        State/UT-wise Net Un-Irrigated Area during 2014-15 (From : Ministry of Agriculture and Farmers Welfare)
#> 1396                                                                                                                                    State/UT-wise farmers benefitted from m-Kisan Portal from 2014 to 2018 (From : Ministry of Agriculture and Farmers Welfare)
#> 1397                                                                                                                                               State/UT-wise milk production in the country during 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1398                                                                                                                                  Absolute increase in Minimum Support Price (MSP) from 2008-09 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1399                                                                                                                                         Country wise Import figures of Asafoetida from 2015-16 to 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1400                                                                                                                                     MSP, cost of production and wholesale prices of pulses during 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1401          Scheme-wise Funds Allocated and Released under various Schemes Implemented by Department of Agriculture, Cooperation and Farmers Welfare for the state of Andhra Pradesh from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1402                                                                                                                                                               Cost of cultivation of wheat during 2016-17 (From : Ministry of Agriculture and Farmers Welfare)
#> 1403                                                                                                                                                               Cost of cultivation of Paddy during 2015-16 (From : Ministry of Agriculture and Farmers Welfare)
#> 1404                                                Scheme-wise Details of Funds Allocated in Tamil Nadu for the development of Agriculture and allied Sector under various schemes during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1405                                                                            State/UT-wise Agriculture Credit Disbursement Data as reported by National Bank for Agriculture and Rural Development (NABARD) from 2015-16 to 2017-18 (From : Ministry of Finance)
#> 1406                                                                                    State/UT-wise number of beneficiaries benefitted under National Scheme of Welfare of Fishermen from 2014-15 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1407                                                                                                                     State/UT-wise farmers benefitted from Soil Health Card Scheme from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1408                                                                                                                                 The Minimum Support Prices (MSPs) of rabi crops during 2014-15 and 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1409                                                                                                State-wise Central Assistance Approved under National Disaster Response Fund (NDRF) from 2012-13 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1410                                                                                                                       Business Statistics of Crop Insurance Schemes in Maharashtra from 2013-14 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1411                                                                                                    Agriculture related projects assisted by Ministry of Food Processing Industries during 11th & 12th Plan (From: Ministry of Agriculture and Farmers Welfare)
#> 1412                                                                                                                                          State/UT-wise Suicides by Farmers and Labourers from 2012 to 2015 (From: Ministry of Agriculture and Farmers Welfare)
#> 1413                                                                                       State-wise Details of Procurement of Pulses Made by FCI, NAFED and SFAC at MSP under PSF during KHARIF 2016 and 2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1414                                                               State/UT-wise Details of Average Premium as Against Sum Insured Charged by Insurance Companies under (PMFBY) & (RWBCIS) during 2016 and 2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1415                                                                                                                                            Monthly Average Price of Coconut in Kerala Markets during 2018 (From : Ministry of Agriculture and Farmers Welfare)
#> 1416                                               Commodity-wise Cost, Minimum Support Price (MSP) and Percent Return Over Cost under Pradhan Mantri Krishi Sinchai Yojana (PMKSY) during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1417                                                                                  Allocation, Release and Expenditure under Crop Diversification Programme (CDP) during 2013-14 to 2016-17 as on 28-02-2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1418                                                                                                    Year-wise Details of Funds Released under National Food Security Mission (NFSM) from 2007-08 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1419                                                                State-wise Financial Assistance Provided by the Government to under National E-Governance Plan Agriculture (NEGP-A) from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1420                                                   State-wise Financial Assistance Provided by the Government to under Sub Mission on Agricultural Mechanization under NMAET (SMAM) from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1421                                                                                                                                     State-wise Details of Classification of Cultivators as per Census 2011 (From: Ministry of Agriculture and Farmers Welfare)
#> 1422                                                                                            State and Scheme-wise details of Funds Released under the different Crop Development Programmes during 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1423                                                                                                                               State/ UT-wise Area Covered under Micro Irrigation during 2014-15 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1424                                                                                                                      State/ UT-wise Marine Fish Production Decline in sea catch during 2013-14 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare )
#> 1425                                                                                                                                                Month-wise Export of Top 5 Agricultural Commodities from 2013 to 2017 (From: Ministry of Commerce and Industry)
#> 1426                                                                                                  Statement Indicating Share of Import of Agriculture and Allied Products of the Total Imports from 2014-15 to 2017-18 (From : Ministry of Commerce & Industry)
#> 1427                                                                                                                                  Commodity-wise Import of Agricultural Commodities from Apr-Mar 2014 to Apr-Mar 2017 (From: Ministry of Commerce and Industry)
#> 1428                                                                                                                                  Commodity-wise Export of Agricultural Commodities from Apr-Mar 2014 to Apr-Mar 2017 (From: Ministry of Commerce and Industry)
#> 1429                                                                                                                                      State/Sector-wise Number of Projects under RKVY  during 2015 and 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 1430                                                                                                                                       Crops-wise Area Coverage under Rabi crops during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1431                                                                                                                      Office-wise Vacancies in Ministry of Agriculture and Farmers Welfare As on 06.04.2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 1432                                                                                               Crop-wise Increase/Decrease in All-India Weighted Average Cost of Production (A2+FL) from 2013-14 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1433                                                                                                        State/UT-wise Details of Fund Released under Extension Reforms(ATMA) Scheme from 2015-16 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1434                                                                                                   Crop-wise Increase/Decrease in Minimum Support Prices (MSPs) and Wholesale Price from 2013-14 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1435                                                                                     Category-wise Export of Organic Products under National Programme of Organic Production (NPOP) from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1436                                                          Crop-wise Difference Between Market Price and Cost of Production and Minimum Support Prices (MSPs) and Cost of production from 2014-15 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1437                                                                                     State/UT-wise Statement showing Number of Farmers benefitted under Minimum Support Price (MSP) from 2015-16 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 1438                                                                                                                                                  Commodity-wise Export of Agricultural Commodities from 2014 to 2017 (From: Ministry of Commerce and Industry)
#> 1439                                                                                                                                                  Commodity-wise Import of Agricultural Commodities from 2014 to 2017 (From: Ministry of Commerce and Industry)
#> 1440                                                                                   State-wise Financial Assistance Provided by the Government to under Soil Health Management (SHM) from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1441                                                                           State/UT-wise Details of Agricultural Land, Net Area Sown and Net Irrigated Area during 2014 to 2015 (From: Ministry of Water Resources, River Development and Ganga Rejuvenation\n)
#> 1442                                                                                           State/UT-wise Number of Operational Holdings, Operated Area, Net Sown Area and Net Irrigated Area of Agriculture Census 2010-11 (From : Ministry of Water Resources)
#> 1443                                                                                                                                    State/ UT wise Estimates of Area of Sugarcane during 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1444                                                                                                               State/UT-wise Details of Farmers Covered and Claims under PMFBY during 2016-17 and 2017-18  (From : Ministry of Agriculture and Farmers Welfare)
#> 1445                                                                                                                 State-wise details of Seeds Reserved in the National Seed Reserve from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1446                                                                 Year-wise Amount Sanctioned and Released for Expenditure for the National Animal Disease Reporting System (NADRS) from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1447                                                                                           All-India Weighted Average Projected Cost of Production of Mandated Kharif & Rabi Crops from 2013-14 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1448                                                                                                               Year-wise Fund Allocated and Released under Soil Health Card Scheme from 2014-15 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1449                                                                                                                                      State-wise Area Coverage of Kharif Season during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1450                                                                                                                                                  State-wise Return Over Cost of Production during 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1451                                                                                Number of clusters approved for implementation under Paramparagat Krishi Vikas Yojana(PKVY) during 2015-16 (till 5.11.2015) (From: Ministry of Agriculture and Farmers Welfare)
#> 1452                                                                                                                                                    Wheat and Rice Projected Demand from 2015-16 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1453                                                                                                                         State-wise Funds under State Disaster Response Fund (SDRF) from 2012-13 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1454                                                                                                    State wise funds allocated released under Pradhan Mantri Krishi Sinchayee Yojana (PMKSY) during 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1455                                                                                                             State/ UT-wise Area coverage under Integrated Farming System (in ha) during 2014-15 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1456                      State/ UT-wise Tentative Coverage of Farmers under Pradhan Mantri Fasal Bima Yojana (PMFBY)/ Restructured Weather Based Crop Insurance Scheme (RWBCIS) during Kharif and Rabi 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1457                                                                                                                                                                Agriculture Loans Disbursed by SCBs in 2016-17 (till December 2016) (From: Ministry of Finance)
#> 1458                                                                      State/ UT-wise Agriculture Loan outstanding data for all agencies (Commercial, Cooperative and Regional Rural Banks) as on 31-03-2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1459                                                                   State/ UT-wise details of Budget Allocation, Releases and Utilization under Organic Farming in North-East Region from 2015-16 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1460                                         District-wise Cold Storage Projects Sanctioned in Maharashtra under Mission for Integrated Development of Horticulture (MIDH)(NHM & NHB)from 2014-15 to 2016-2017  (From: Ministry of Agriculture and Farmers Welfare)
#> 1461                                                                                                State/ UT-wise Release of Funds under National Livestock Mission during 2014-15 to 2017-18 as on 07-08-2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1462                                                                                Expenditure under various schemes of the Department of Agriculture, Cooperation and Farmers Welfare from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1463                                                           State/ UT-wise Details of Funds Allocated, Released and Expenditure under Paramparagat Krishi Vikas Yojana (PKVY) scheme from 2015-16 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1464               Details of Funds allocated and released to the State Governments under Schemes being implemented by the Department of Agriculture, Cooperation and Farmers Welfare during 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1465                                                                                                  State/ UT-wise Number of Accounts and Loan Amount outstanding in respect of all Agencies as on 31-03-2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1466                  Details of Farmer deriving Benefits and Amount allocated by Uttar Pradesh Government under Soil Health Card Scheme for Bundelkhand Region (in reply to Unstarred Question for 04-08-2017) (From: Ministry of Agriculture and Farmers Welfare)
#> 1467                                                                                                                               State/ UT-wise Operated Area (in hectare) as per Agriculture Census during 2010-11 (Ministry of Agriculture and Farmers Welfare)
#> 1468                                                                                            Year-wise details of premium and claims in Madhya Pradesh and Rajasthan under PMFBY during 2016-17 and 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1469                                                    Statement Indicating Share of Import of Agriculture and Allied Products Including Vegetables, Oil, Pulses, Freash Fruits, Spices and Sugar from 2014-15 to 2017-18 (From : Ministry of Commerce & Industry)
#> 1470                                                   State/UT-wise Details of Farmer Applicats Insured, Premium Collected and Claims Settled under Pradhan Mantri Fasal Bima Yojana (PMFBY) for Rabi 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1471                                                    State/UT-wise Details of Area under Organic Cultivation under the Schemes Paramparagat Krishi Vikas Yojana (PKVY), MOVCDNER and NPOP from 2014 to 2018 (From : Ministry of Agriculture and Farmers Welfare)
#> 1472                                                                 State/UT-wise Average Monthly Income per Agricultural Household as per Situation Assessment Survey of Agricultural Households during 2013 (From : Ministry of Agriculture and Farmers Welfare)
#> 1473                                                                                                                                                     State/UT-wise Milk Production from 2013-14 to 2016-17 (From : Ministry of Agriculture and Farmers Welfare)
#> 1474                                                                                                               State/UT-wise number of suicides committed by persons engaged in farming sector during 2016 (From : Ministry of Agriculture and Farmers Welfare)
#> 1475                                                                                                                                  State/UT-wise Bio-Fertilizer Production in India from 2011-12 to 2016-17 (From : Ministry of Agriculture and Farmers Welfare)
#> 1476                                                                           State/UT-wise Commercial production units of organic inputs under National Project on Organic Farming progress till August 2017 (From : Ministry of Agriculture and Farmers Welfare)
#> 1477                                                     State/UT-wise Commercial Production units of Organic inputs under National Project on Organic Farming Progress till August 2017 (According to NABARD) (From : Ministry of Agriculture and Farmers Welfare)
#> 1478                                                                                                                            Number Total Holdings and Farmers Covered under Crop Insurance Schemes during 2015-16 (Ministry of Agriculture and Farmers Welfare)
#> 1479                                                                                                                                   State-wise Details of Net Irrigated and Un-Irrigated Area for the year 2013-14 (Ministry of Agriculture and Farmers Welfare)
#> 1480                                                                                                         Assistance Approved from National Disaster Response Fund (NDRF) for Drought from 2013-14 to 2015-16 (From:Ministry of Agriculture and Farmers Welfare)
#> 1481                                                                                                                                         Total Production of Major Crops/Commodities from 2009-10 to 2015-16 (From:Ministry of Agriculture and Farmers Welfare)
#> 1482                          State Wise Performance and Status of the Major Activities of Existing Krishi Vigyan Kendras (KVKS) in the Country (Including those in andhra Pradesh and Telangana) during 2015-16 (From:Ministry of Agriculture and Farmers Welfare)
#> 1483                                 State Wise Number of Units and Subsidy Under Capital Investment Subsidy Scheme for Fruit/Vegetable Compost Unit (according to NABARD Communication) from 2013-14 to 2015-16 (From:Ministry of Agriculture and Farmers Welfare)
#> 1484                                                                                                                                                      State/UT-wise Suicides by Farmers During 2015 and 2016 (From:Ministry of Agriculture and Farmers Welfare)
#> 1485            State/UT-wise Funds Released by the National Horticulture Board (NHB) under Development of Commercial Horticulture Through Production and Post Harvest Management Scheme from 2013-14 to 2016-17 (From:Ministry of Agriculture and Farmers Welfare)
#> 1486                                                                                                                              State/UT-wise 1st Advance Estimates of Production of Foodgrains during 2016-17 (From:Ministry of Agriculture and Farmers Welfare)
#> 1487                                                                                                         State-wise Number of Soil Testing Laboratories under Soil Health Management Scheme during 2015-16 (From : Ministry of Agriculture and Farmers Welfare)
#> 1488                                                         State/ UT-wise Details of Cropped Area Insured and sum Insured under Different Crop Insurance Schemes since Kharif and Rabi season 2014 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1489                                                                                                                    State/ UT-wise Release of Funds under Micro Irrigation during 2016-17 (upto 14-03-2017) (From: Ministry of Agriculture and Farmers Welfare)
#> 1490                                                                                                                                                      Agriculture Loans Disbursed by Scheduled Commercial Banks during 2014 to 2016 (From: Ministry of Finance)
#> 1491                                                                                                                                   State/UT-wise Various Organic Manures Produced/ Available during 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1492                                                                      State-wise Details of Procurement of Rice at the Minimum Support Price (MSP) under Price Support Scheme (PSS) from 2014-15 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1493                                                                       State/ UT and NGO-wise details of Financial Assistance Provided for Krishi Vigyan Kendra (KVK) Activities during 2014-15 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare )
#> 1494                                                                                                                                       State/Sector-wise Number of Projects under RKVY during 2015 and 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 1495                                                                                               Commodity-wise Number of Purchase Centers Operated by NAFED for Procurement of Oilseeds during 2016 and 2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1496                       State/UT-wise Details of Funds Released by Department of Animal Husbandry, Dairying and Fisheries (DADF) under Various Components of the Scheme to Fishermen from 2014-15 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1497                                                                                                                                             Programme-wise Agricultural Development for Bihar during 2015 (From : Ministry of Agriculture and Farmers Welfare)
#> 1498                                                                                            Year and Crop-wise Increase in All India Weighted Average Cost of Production of Kharif Crops from 2014 to 2018 (From : Ministry of Agriculture and Farmers Welfare)
#> 1499                                                                   State/UT-wise Details of Mini Soil Testing Labs Set-up in Krishi Vigyan Kendras (KVKs) (in reply to Starred question on 03 August 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1500               State/UT-wise Details of Number of Soil Health Cards Distributed and Number of Farmers Benefited with advisories on Soil Health Management (in reply to Starred question on 03 August 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1501                                                                           Details of the Drought-Affected District (including Mandals) in Andhra Pradesh (in reply to Unstarred Question on 27 July 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1502                                           State/UT-wise List of Wholesale Regulated Markets Integrated with National Agriculture Market (e-NAM) Platform (in reply to Unstarred Question on 27 July 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1503                                                  State/UT-wise Details of Farmer Applicants Insured, Premium Collected and Claims Settled under Pradhan Mantri Fasal Bima Yojana (PMFBY) for Rabi 2016-17 (From : Ministry of Agriculture and Farmers Welfare)
#> 1504                                       State-wise Soil Testing Laboratories (STLs) and its Analysing Capacity Sanctioned under the Soil Health Management (in reply to Unstarred question on 27 July 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1505                                                                                                   State/UT-wise Number of Soil Samples Tested under Soil Health Card (SHC) Scheme from 2015-17 to 2017-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1506                                                       State-wise Details of Farmer Applicats Insured, Premium Collected and Claims Settled under Pradhan Mantri Fasal Bima Yojana (PMFBY) for Kharif 2017 (From : Ministry of Agriculture and Farmers Welfare)
#> 1507                                                                                    State/UT-wise Number of Soil Health Cards Distributed to Farmers under Soil Health Card Scheme from 2015-17 to 2017-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1508                                                                                                                             State/UT-wise Agriculture Credit Disbursement Data during 2015-16 and 2016-17 (From : Ministry of Agriculture and Farmers Welfare)
#> 1509                                                                                                        State-wise Damage of Major Crops Area due to Rain (in reply to Unstarred question on 27 July 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1510                                                                                                                Details of Sanction Accorded under Market Intervention Price (MIS) from 2010-11 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1511                                                                                                                                            Item-wise India's Import of Agricultural Products from 2014-15 to 2016-17 (From: Ministry of Commerce and Industry)
#> 1512                                                                               State/UT-wise Number of Extension Programmes Organized by Krishi Vigyan Kendras (KVKs) and Farmers Benefitted during 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1513                                                                                       Scheme/Mission under Umbrella Scheme Green Revolution - Krishonnati Yojana as Central Share from 2017-18 to 2019-20 (From : Ministry of Agriculture and Farmers Welfare)
#> 1514                                                                                                State/UT-wise Agriculture Credit Target as reported by National Bank for Agriculture and Rural Development (NABARD) during 2018-19 (From : Ministry of Finance)
#> 1515                                                                                                                                   Modified National Agricultural Insurance Scheme-Kharif Season (Cuddalore, Namakkal and Sivagangai Districts Only) : SHB 2017
#> 1516                                                                                                                                                                Procurement and Distribution of Breeder Seeds from Tamilnadu Agricultural University : SHB 2017
#> 1517                                                                                                                                                   Modified National Agricultural Insurance Scheme- Rabi (Cuddalore,Nammakal,Sivakangai Districts only) 2013-14
#> 1518                                                                                                                                                                                                Modified National Agricultural Insurance Scheme- Kharif 2014-15
#> 1519                                                                                                                                                                                   Index Numbers of Agricultural Production and Productivity 2015-16 : SHB 2017
#> 1520                                                                                                       State/UT-wise Number of Participants in Farmers Oriented Extension Activities by ATMA during 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1521                                                                       State/UT-wise Funds Allocated, Release and Expenditure under Paramparagat Krishi Vikas Yojana (PKVY) Schemes from 2015-16 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1522                                                                                                                                        State/UT-wise Distribution of Cold Storages from 2014-15 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1523                                                                     Region-wise Number of Purchase Centers Operated for Wheat Procurement by FCI and State Govt/Agencies during Rabi Market Season 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1524                                       State/UT & Region-wise Agricultural Credit/Loans Disbursement to the Farmers by commercial banks, regional rural banks and cooperative banks from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1525                                                                                                                                   Agricultural Inputs handled by the Tamil Nadu Co-operative Marketing Federation and Other Marketing Institutions 2013 - 2015
#> 1526                                                                                                                                                                                                          National Agricultural Insurance Scheme - Rabi 2013-14
#> 1527                                                                                                                                  Statement of amount of funds released to the states under PKVY during 2015-16(From:Ministry of Agriculture & Farmers Welfare)
#> 1528                                                                                                                                         Pilot Mandis in National Agriculture Market (NAM) as on 06/05/2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 1529                                                                                                                                                      State-wise Production of Rice from 2010-11 to 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#> 1530                                                                                                                                                                                                            Annual Wholesale Price Index of Agriculture Produce
#> 1531                                                                       State-wise details of cropped areas affected due to cyclone/flash flood/floods/landslides/cloudburst etc. during 2014-15 and 2015-16(From : Ministry of Agriculture and Farmers Welfare)
#> 1532                                                             State-wise details of cropped areas affected due to cyclonic storms/ flash flood/floods/landslides/ cloudburst and drought etc. during 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1533                                                                                                                                           State-wise status of Soil Health Card (SHC) Scheme as on 15.11.2016 (From:Ministry of Agriculture & Farmers Welfare)
#> 1534                                                                                                                                                                      All India Consumer Price Index Numbers for Agricultural Labourers from 1995-96 to 2014-15
#> 1535                                State-wise budgetary allocation (Rs. in lakhs) to support research and development under crop improvement in Crop Science and Horticulture Science during 2014-15 & 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1536                                                                                                                                                            Production of Groundnut from 2013-14 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1537                                                                                                                                                     Average Daily Wage Rate in Rural in Agricultural - Major Category of Men, Women and Children till Feb 2014
#> 1538                                                                                                                                      Position of the outbreaks of avian influenza in India during 2013 to 2016(From:Ministry of Agriculture & Farmers Welfare)
#> 1539                                                                                                  Organic Manure Production & Availability in the Country (Excluding Green Manures) from 2009-10 to 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#> 1540                                                                                                                               State-wise Average Daily Wage Rate in Rural in Agricultural: Animal Husbandry includes Poultry, Dairy and Herdsman till Feb-2014
#> 1541                                                                                                                                                              Import tariffs on edible oils during 2007 to 2016(From:Ministry of Agriculture & Farmers Welfare)
#> 1542                                                                                                   State/UT-wise Farming Area (including in conversion) under Organic Certification from 2011-12 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1543                                                                                                State-wise details of loanee and non-loanee farmers covered under PMFBY and WBCIS (combined) during kharif 2016(From:Ministry of Agriculture & Farmers Welfare)
#> 1544                          Assistance sought by the State Government and assistance approved from the National Disaster Response Fund (NDRF) for drought, hailstorm, cold wave/frost from 2012-13 to 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#> 1545                              State-wise details of farmers covered under Pradhan Mantri Fasal Bima Yojana (PMFBY) and Restructured Weather Based Crop Insurance Scheme (RWBCIS) (combined) during Kharif 2016 (From:Ministry of Agriculture & Farmers Welfare)
#> 1546                                                                                                                             State/UT-wise Production of Organic Fertilizer in India from 2012-13 to 2015-2016 (From:Ministry of Agriculture & Farmers Welfare)
#> 1547                                                                                                                                                                       Agriculture production of different foodgrains from year 2003 to 2014 at all India level
#> 1548                                                                                       State-wise number of soil samples collected, tested and Soil Health Cards issued under Soil Health Card Scheme in 2015 (From :Ministry of Agriculture & Farmers Welfare)
#> 1549                                                                                                                                State-wise Average Daily Wage Rate in Rural in Agricultural: General Agricultural icludes Watering and Irrigation till Feb 2014
#> 1550                                                                                                                                                                                 Share of agriculture sector in total electricity sales from 2009-10 to 2013-14
#> 1551                                                                                              Status and Implementation of Support Extended from Prime Minister Fasal Bima Yojana PMFBY during  Kharif 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 1552                                                                                           Status and Implementation of Support Extended from Prime Minister Fasal Bima Yojana (PMFBY) during  Rabi 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1553                                                                                                       Prime Activities and Village level Agricultural Co-operative Credit Societies and Land Development Banks Co-operative Societies/ Urban Banks 2013 - 2015
#> 1554                                                                                                                                                  Modified National Agricultural Insurance Scheme-Kharif (Cuddalore,Nammakal,Sivakangai Districts only) 2014-15
#> 1555                                                                                                                            State/ UT-wise Number of Operational Holders as per Agriculture Census during 2010-11 (Ministry of Agriculture and Farmers Welfare)
#> 1556                         State/ UT-wise Percentage of Farmers Covered under Crop Insurance Schemes to the Number of households and Farmers Benefitted under National Agricultural Insurance Scheme during 2015-16 (Ministry of Agriculture and Farmers Welfare)
#> 1557                                                                                                                                                                                                Total budget and expenditure of State Agricultural Universities
#> 1558                                                                                                                                      Sector wise FDI inflows in agriculture from 2013-14 to 2016-17 (Apr- Sep)(From:Ministry of Agriculture & Farmers Welfare)
#> 1559                                                                                                                      State-wise number of Soil Health Cards issued during 2015-16 to 2016-17 as on 15.11.2016 (From:Ministry of Agriculture & Farmers Welfare)
#> 1560                                                                                                                                     Total FDI inflows in agriculture sector from 2013-14 to 2016-17 (Apr- Sep)(From:Ministry of Agriculture & Farmers Welfare)
#> 1561                                                                                                                                                      State-wise Production of Rice from 2012-13 to 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#> 1562                                                                                                                                                                                                                    Karnataka Agricultural Market Data for 2012
#> 1563                                                                                                                                                                                                                       Value of Output from Agriculture 2011-15
#> 1564                                                                                                                                                                                                        National Agricultural Insurance Scheme - Kharif 2013-14
#> 1565                                                                                                                                   State-wise details of districts declared drought affected during 2015-16(From : Ministry of Agriculture and Farmers Welfare)
#> 1566                                    State/UT wise details of back ended capital subsidy disbursed to establish dairy units through NABARD under Dairy Entrepreneurship Development Scheme during 2012 to 2016 (From :Ministry of Agriculture & Farmers Welfare)
#> 1567                                                                                                  Sate/Ut-wise Number of districts affected by deficit and scanty rainfall during South-West Monsoon - 2015 (From: Ministry of Agriculture and Farmers Welfare)
#> 1568                                                                                      Details of Claims Paid and Outstanding under various Crop Insurance Schemes from 2014-15 to 2016-17  as on 19-07-2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1569                                                                                                                                                              Production of Coconut from 2012-13 to 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#>                                                                                                                                                                                                                                                         description
#> 1                                                                                                   State-wise Total Procurements of Cotton under Minimum Support Price (MSP) by CCI during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 2                                                                                                                                    Details of Procurements of Cotton under MSP by CCI from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 3                                                                                                                                             All India level Production of Food Grains from 2000-01 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 4                                                                                                                          State-wise Central Assistance Released under CADWM Programme from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 5                                                                                                               State-wise Procurement of Raw Jute under Minimum Support Price (MSP) during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 6                                                                                                                                   State-wise Procurement of Raw Jute under MSP Scheme from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 7                                                                                                                                                        State-wise Production of Mango from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 8                                                                                              All India level Sugarcane Weighted Average Projected Cost of Production for Crop Seasons from 2013-14 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 9                                                                                               State-wise Central Share Released under On Farm Water Management (OFWM) and PMKSY- PDMC from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 10                                                                                                     Details of outstanding Claims of Crops during last two crop seassons Rabi during 2017-18 and Kharif 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 11                                              State/UT-wise Number of wholly leased-in operational Holdings by all Social Groups, Scheduled Castes and Scheduled Tribes as per the Agriculture Census 2010-11 (From: Ministry of Agriculture and Farmers Welfare)
#> 12                                                                                          State/UT-wise Premium Collected from Farmers under Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 13                                                                                                                                          Amount of Budget Allocated and Amount Spent from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 14                                                                                                                                                                 Crop-wise Coverage Area during 2018 and 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 15                                                         Premium Paid by Farmers to Insurance Companies and Claims Paid to Eligible Farmers in State of Karnataka under the Scheme during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 16                                                                                                                                         Commodity-wise Minimum Support Prices (MSPs) from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 17                                                                                                State/UT-wise Projected Operational Holding under Pradhan Mantri Kisan Samman Nidhi (PM-KISAN) during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 18                                                                                                                     State/UT-wise Procurement of Rice at Minimum Support Price (MSP) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 19                                                                                                                                                        Year-wise Procurement of Jute from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 20                                         Gross Capital Formation (GCF) in Agriculture and Allied Sectors Relative to Gross Value Added (GVA) of Total Economy at 2011-12 Basic Prices from 2011-12 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 21                  Funds Allocated Released and Expenditure for the Schemes being Implemented by the Department of Agriculture, Cooperation and Farmers Welfare in the State of Kerala from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 22                                                                                                                        Stated-wise Details of Procurement of cotton under MSP by CCI from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 23                                                          District-wise Estimated Number of Farmers, Farmers Registered and Benefits Provided to them under PM-Kisan Scheme in Karnataka as on 04 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 24                                                                                                                                  State/UT-wise Procurement of Wheat for Central Pool from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 25                                                                                                                                        Commodity-wise Procurement of Coarsegrains during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 26                                                                                                       State-wise Number of Farmers Benefited, Marketing Seasonwise (Paddy and Wheat) from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 27                                                                                                               Average Wholesale Prices and MSP of Essential Agricultural Commodities from 2017-18 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 28                                                                                                                                 State/UT-wise Production and Procurement of Wheat during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 29                                                                                                                                 State/UT-wise Amount released to PM-KISAN beneficiaries as on 17 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 30                                                                                                                     Operation-wise Procurement Made under Price Support Scheme (PSS) from 2015-16 To 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 31                                                                                                State/UT-wise Production, Estimate, Procurement and Percentage Procurement of Rice during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 32                                                 State/UT-wise Estimated No. of Worker, Working in Unincorporated Non-Agricultural Enterprises As per 73rd Round of NSS Report during June 2015-June 2016 (From: Ministry of Micro, Small and Medium Enterprises)
#> 33                                                                                                                                  State/UT-wise Number of PM-KISAN beneficiaries covered as on 17 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 34                                                                                                                           State/UT-wise Number of Beneficiaries Covered under Scheme as on 24 February, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 35                                                                                                            Mandi-wise List of Farmers Registered in Andhra Pradesh on e-NAM Platform as on 29 February, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 36                                                                                               State/UT-wise total Amount Released under Pradhan Mantri Kisan Samman Nidhi (PM-KISAN) as on 24 February, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 37                                                                                                                                                   State/UT-wise details of Farmers suicide from 2014 to 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 38                                                                                   State/UT-wise details of beneficiaries who have been paid all four installments under PM-Kisan Scheme as on 13 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 39                                                                                                                                                      State-wise Compensation Paid during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 40                                                                                               State/UT-wise Number of Farmers Registered Pradhan Mantri Kisan Maan Dhan Yojana (PM-KMY) as on 11 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 41                                                                                                 State/UT-wise details of data rejected, transactions failed, etc. under PM-Kisan Scheme as on 17 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 42                                                                                                                      State/UT-wise percentage of Arable land and Barren and unculturable land during 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 43                                                                                                                                        MSP Suggested by State Government for the Kharif Crops during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 44                                                                                                                                                 State/UT-wise Status of PM-Kisan Scheme as on 17 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 45                                                                                                     State-wise Funds Released Under Sub Mission on Agricultural Mechanization (SMAM) from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 46                                                                                                                                                 MSP Suggested by State Government for Rabi Crops for 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 47                                                                                                                                      State-wise of in-situ management of crop residue from 2018-19 to 201-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 48                                                                                                                                               MSP Suggested by State Government for Kharif Crops for 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 49                                                                                   State/UT-wise Central assistance released under Pradhan Mantri Krishi Sinchayee Yojana as per PDMC from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 50                                                                                                                                                 MSP Suggested by State Government for Rabi Crops for 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 51                                                                       State-wise Average Monthly Income per Agricultural Household as per Situation Assessment Survey of Agricultural Households during 2013 (From: Ministry of Agriculture and Farmers Welfare)
#> 52                                                                                                                                      IEC Activities by States Government and ICAR during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 53                                                                    Details of funds allocated, released and utilised in respect of the State Government of West Bengal under Schemes from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 54                                                                                                                                                                    State/UT-wise Farmers Suicide during 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 55                                                                         State/UT-wise Funds Sanctioned and Utilized for the Activities under the in-Situ Crop Residue Management Scheme during 2018 and 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 56                                                                                     State-wise Fund allocation and released under Bringing Green Revolution to Eastern India (BGREI) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 57                                                                                                       Premium Received and Claims Paid by Insurance Companies under PMFBY and RWBCIS from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 58                                                                                                                                     State-wise State Disaster Response Fund (SDRF) Allocation during 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 59                                                                             State/UT-wise Status of Development/Up-Gradation of Rural Haats under MGNREGS (in Reply to Starred Question on 7 February, 2020) (From: Ministry of Agriculture and Farmers Welfare)
#> 60                                                                                                                        State/UT-wise Number of farmers registered under PM-KISAN portal as on 17 March, 2020 (From: Ministry of Agriculture and Farmers Welfare)
#> 61                                                                                                                            Country-wise 25 Top Basmati Rice Export Destinations from India from 2015 to 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 62                                                                                                                                               State/UT-wise Data on Suicide Committed by Farmers during 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 63                                                                                                                                   State/UT-wise Procurement of Rice for Central Pool from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 64                                                                                                                              Pulses, Oilseeds and Copra Procured at MSP under PSS during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 65                          State/UT-wise Amount of Farm Loans Waived by States through their Respective Debt Waiver Schemes as per Data Provided by NABARD/Few (in reply to Starred Question on 6 March, 2020) (From: Ministry of Agriculture and Farmers Welfare)
#> 66                                                                                                        Budget and Actual Expenditure on Crop Insurance Schemes by Central Government from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 67                                                                                           State/UT-wise Average Monthly Income Per Agricultural Household from different Sources from July 2012 to June 2013 (From: Ministry of Agriculture and Farmers Welfare)
#> 68                                                                 Estimates Released by Department of Agriculture Cooperation and Farmers Welfare, the Production of Cereals in the country from 2013-14 to 2017-18 (From: Ministry of Food Processing Industries)
#> 69                                                                                                                                Commodity-wise MSP, Cost and Percent Return over Cost from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 70                                                                                                  State/UT-wise Farmer Beneficiaries Applicants Enrolled under PMFBY (Kharif and Rabi seasons) during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 71                                                                                                                 State/UT-wise Number of Clusters and Fund Released under PKVY Scheme from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 72                                                                                                                      State/UT-wise Number of Farmers Provided with Soil Health Cards from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 73                                                                       Details of coverage since inception of the scheme in Chhattisgarh under PMFBY & RWBCIS Scheme in Chhattisgarh from 2016-17 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 74                                                                                  Details of Production of Foodgrains, Paddy (in terms of rice), wheat, and vegetables in the country from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 75                                                                                                                      State/UT-wise Suicide by Persons Self-Employed in Farming/Agriculture from 2013 to 2015 (From: Ministry of Agriculture and Farmers Welfare)
#> 76                                                                                          Details of farmers covered, estimated claims, claims approved and claims paid to the farmer from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 77                                                                        Gross Premium Collected and Claims Paid by Empanelled General Insurance Companies since Inception of PMFBY during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 78                                                                                                          State-wise Number of Farmers Benefited, Marketing Season of Paddy and Wheat from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 79                                                                                                             Scheme-wise Achievements Made for the Benefit of Agriculture and Farmers from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 80                                                                                                          State/UT-wise Claims paid under Pradhan Mantri Fasal Bima Yojana (PMFBY) during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 81                                                                                              Details of Companies Empanelled for PMFBY and Claims paid by them to farmers from Kharif 2016 to Kharif 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 82                                                                                        District-wise Number of Farmers whose Soil Tested & Soil Health Cards Issued in Uttar Pradesh from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 83                                                                                                                      Commodity-wise Absolute Increase in Minimum Support Price (MSP) from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 84                                                                                                           States/Commodity -wise Farmer's Benefited under Price Support Scheme (PSS) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 85                                                                                                                                                   State-wise Production of Sugarcane from 2015-16 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 86                                                                                                                                                        State/UT-wise Agricultural/Arable Land during 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#> 87                                                       Crop-wise Production, Procurement at Minimum Support Price (MSP) and Imports of Wheat, Millets, Rice and Pulses in the country from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 88                                                                                                       Number of Farmers who have Availed Soil Health Cards in North Eastern Statesduring 2015-17 and 2017-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 89                                                                                                         Target and Distribution of Soil Health Cards in State of Delhi and Rajasthan from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 90                                                                                Production of Foodgrains, Horticultural Crops and Growth Rate of GVA of Agriculture and Allied Sector from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 91                                                                                                                                                State-wise Farmers Benefitted under PSF Scheme during 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 92                                                                                                State/UT-wise Subsidy/Financial Assistance Provided by Government for Seed Production from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 93                                                                                                    State-wise Funds Allocated under Sub Mission on Agricultural Mechanization (SMAM) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 94                                                                                                                       State/UT-wise Production of Foodgrains, Oilseeds and Sugarcane from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 95                                                                                                                  State/UT-wise Number of Farmers who have Received Soil Health Cards from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 96                                                                                                                                    State-wise Procurement of Cotton under MSP by CCI from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 97   Fund Allocated under Central Scheme on Promotion of Agricultural Mechanization for In-Situ Management of Crop Residue for Boosting Mechanization of Agricultural Production Processes from 2018-19 to 2019-20(From: Ministry of Agriculture & Farmers Welfare)
#> 98                                                    State/UT-wise Growth Rates of Gross State Value Added (GSVA) of Agriculture and Allied (Sector Agriculture, forestry and fishing) from 2015-16 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 99                                                                                                                                                               Imports of Food Grains from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 100                                                                                           Details of Central Assistance (CA) Released and Allocation to the State of Madhya Pradesh from 2014-15 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 101                                                                                                                           Cumulative Wastage of Various Agricultural Produce as per Reports during 2010 and 2015 (From: Ministry of Food Processing Industries)
#> 102                                                                                                             State/UT-wise Funds Allocated for Horticulture Mechanization under MIDH from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 103                                                                                                   State/UT-wise Average Monthly Income per Agricultural Household as per Situational Assessment Survey 2013 (From: Ministry of Agriculture and Farmers Welfare)
#> 104                                                                                                                      Details of Physical Achievement in the State of Madhya Pradesh from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 105                                                               State-wise Storage Capacity Sanctioned under Agricultural Marketing infrastructure (AMI) Sub-Scheme of ISAM up to 31 March, 2019 (From: Ministry of Consumer Affairs, Food & Public Distribution)
#> 106                                                                                                                       State-wise Funds Allocated for various Machineries under NFSM from 2015-16 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 107                                                                                                                           Crop-wise Base Collection in National Genebank (-18 degree C) as on 30 June, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 108                                                                                                                   State/UT-wise Procurement of Wheat at Minimum Support Price (MSP) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 109                                                                                                               Details of Procurement of Cotton by Cotton Corporation of India (CCI) from 2015-16 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 110                                                                                                                               Scheme-wise Amount of Budget Estimate and Expenditure from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 111                                                                                                                State-wise Fund Allocation for Supply of Farm Implements under NMOOP from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 112                                                                                                                   State/Commodity-wise Pulses & oil Seeds Procured at MSP Under PSS from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 113                                                                                               Crop-wise Foodgrains Production and Yield under National Food Security Mission (NFSM) from 2006-07 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 114                                               Season-wise Gross Premium Paid to Insurance company, Claim Paid, Claims Pending Since Inception of Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2016 to 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 115                                                                               State-wise Number of Projects Sanctioned and Cost of Projects in Agriculture Mechanisation under RKVY from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 116                                                                       State-wise details of Funds Allocated for Boosting Mechanization of Agricultural Production Processes by ICAR from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 117                                                                                                                                                Export and Import Value of Floriculture Products during 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 118                                                                                                                                      Pulses & Oilseeds Procured at MSP Under PSS during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 119                                                                                                                                        State/UT-wise Production of Major Foodgrains from 2015-16 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 120                                                                                        State/UT-wise Agriculture Credit Disbursement as reported by the National Bank for Agriculture and Rural Development (NABARD) during 2018-19 (From: Ministry of Finance)
#> 121                                                                                                                     State/UT-wise Procurement of Rice and Wheat for Central Pool during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 122                                                                                                                                           State-wise Procurement of Coarsegrains during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 123                                                                                                                        State/UT-wise Average Monthly Income Per Agricultural Household during 2003 and 2013 (From: Ministry of Agriculture and Farmers Welfare)
#> 124                                                                                                                      Details of Percentage Losses Estimated for Major Agricultural Produces during 2010 and 2015 (From: Ministry of Food Processing Industries)
#> 125                                                                                             State/UT-wise Number of Drought affected districts on the basis of Memorandum Submitted from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 126                                                              Grants-in-Aid (Central Share) released to Government of Andhra Pradesh and Telangana under ATMA Scheme since inception from 2005-06 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 127                                                     Season-wise Subsidized Number of Farmers Covered under the Scheme, Farmers who got Claims on loss of their Crops and Amount of Claims from 2016 to 2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 128                                                                                                             State/UT-wise Number of Wholly Leased in Operational Holdings as per Agriculture Census 2010-11 (From: Ministry of Agriculture and Farmers Welfare)
#> 129                                                                                                                            State/UT-wise Area under Cultivation of Major Food Crops from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 130                                                                                                             Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Karnataka
#> 131                                                                                                              Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Nagaland
#> 132                                                                                                                   Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Goa
#> 133                                                                                                               Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Manipur
#> 134                                                                                                           Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Lakshadweep
#> 135                                                                                                               Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Mizoram
#> 136                                                                                                                Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Kerala
#> 137                                                                                                               Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Tripura
#> 138                                                                                                                 Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - India
#> 139                                                                                                            Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Tamil Nadu
#> 140                                                                                                             Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Meghalaya
#> 141                                                                                                       Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Jammu & Kashmir
#> 142                                                                                                            Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Puducherry
#> 143                                                                                                                 Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Assam
#> 144                                                                                                      Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Himachal Pradesh
#> 145                                                                                             Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Andaman & Nicobar Islands
#> 146                                                                                                           Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - West Bengal
#> 147                                                                                                                Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Punjab
#> 148                                                                                                             Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Jharkhand
#> 149                                                                                                            Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Chandigarh
#> 150                                                                                                                Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Odisha
#> 151                                                                                                           Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Uttarakhand
#> 152                                                                                                          Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Chhattisgarh
#> 153                                                                                                               Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Haryana
#> 154                                                                                                        Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Madhya Pradesh
#> 155                                                                                                          Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - NCT of Delhi
#> 156                                                                                                               Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Gujarat
#> 157                                                                                                             Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Rajasthan
#> 158                                                                                                           Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Daman & Diu
#> 159                                                                                                         Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Uttar Pradesh
#> 160                                                                                                  Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Dadra & Nagar Haveli
#> 161                                                                                                                 Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Bihar
#> 162                                                                                                           Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Maharashtra
#> 163                                                                                                                Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Sikkim
#> 164                                                                                                        Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Andhra Pradesh
#> 165                                                                                                     Occupational Classification of Main Workers and Marginal Workers Other than Cultivators and Agricultural Labourers by Age and Sex, 2011 - Arunachal Pradesh
#> 166                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jhansi District of Uttar Pradesh, 1991
#> 167                                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Tamil Nadu
#> 168                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kannur District of Kerala, 1991
#> 169                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lower Subansiri District of Arunachal Pradesh, 1991
#> 170                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sehore District of Madhya Pradesh, 1991
#> 171                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dhanbad District of Bihar, 1991
#> 172                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Imphal District of Manipur, 1991
#> 173                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mainpuri District of Uttar Pradesh, 1991
#> 174                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Barmer District of Rajasthan, 1991
#> 175                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Dadra and Nagar Haveli
#> 176                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mandya District of Karnataka, 1991
#> 177                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Anantapur District of Andhra Pradesh, 1991
#> 178                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rewa District of Madhya Pradesh, 1991
#> 179                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Vaishali District of Bihar, 1991
#> 180                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Buldana District of Maharashtra, 1991
#> 181                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Almora District of Uttar Pradesh, 1991
#> 182                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ganganagar District of Rajasthan, 1991
#> 183                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nadia District of West Bengal, 1991
#> 184                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for The Dangs District of Gujarat, 1991
#> 185                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gwalior District of Madhya Pradesh, 1991
#> 186                                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Bihar
#> 187                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Valsad District of Gujarat, 1991
#> 188                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ganjam District of Orissa, 1991
#> 189                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Deoria District of Uttar Pradesh, 1991
#> 190                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Madurai District of Tamil Nadu, 1991
#> 191                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kottayam District of Kerala, 1991
#> 192                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Darrang District of Assam, 1991
#> 193                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bastar District of Madhya Pradesh, 1991
#> 194                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rajkot District of Gujarat, 1991
#> 195                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mokokchung District of Nagaland, 1991
#> 196                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lalitpur District of Uttar Pradesh, 1991
#> 197                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Madras District of Tamil Nadu, 1991
#> 198                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Himachal Pradesh
#> 199                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Upper Subansiri District of Arunachal Pradesh, 1991
#> 200                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Raisen District of Madhya Pradesh, 1991
#> 201                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Giridih District of Bihar, 1991
#> 202                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ukhrul District of Manipur, 1991
#> 203                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Budaun District of Uttar Pradesh, 1991
#> 204                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jalor District of Rajasthan, 1991
#> 205                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dadra and Nagar Haveli District of Dadra and Nagar Haveli, 1991
#> 206                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Faridabad District of Haryana, 1991
#> 207                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kurnool District of Andhra Pradesh, 1991
#> 208                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shahdol District of Madhya Pradesh, 1991
#> 209                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Begusarai District of Bihar, 1991
#> 210                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Akola District of Maharashtra, 1991
#> 211                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nainital District of Uttar Pradesh, 1991
#> 212                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bikaner District of Rajasthan, 1991
#> 213                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for North Twenty Four Parganas District of West Bengal, 1991
#> 214                                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Haryana
#> 215                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Belgaum District of Karnataka, 1991
#> 216                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Patna District of Bihar, 1991
#> 217                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Puri District of Orissa, 1991
#> 218                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mau District of Uttar Pradesh, 1991
#> 219                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kamarajar District of Tamil Nadu, 1991
#> 220                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lahul and Spiti District of Himachal Pradesh, 1991
#> 221                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sonitpur District of Assam, 1991
#> 222                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Maharashtra
#> 223                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Surendranagar District of Gujarat, 1991
#> 224                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tuensang District of Nagaland, 1991
#> 225                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hamirpur District of Uttar Pradesh, 1991
#> 226                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chengai Anna District of Tamil Nadu, 1991
#> 227                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Wayanad District of Kerala, 1991
#> 228                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Siang District of Arunachal Pradesh, 1991
#> 229                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Betul District of Madhya Pradesh, 1991
#> 230                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hazaribag District of Bihar, 1991
#> 231                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Meghalaya
#> 232                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bareilly District of Uttar Pradesh, 1991
#> 233                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sirohi District of Rajasthan, 1991
#> 234                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Daman and Diu
#> 235                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mysore District of Karnataka, 1991
#> 236                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mahbubnagar District of Andhra Pradesh, 1991
#> 237                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sidhi District of Madhya Pradesh, 1991
#> 238                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Samastipur District of Bihar, 1991
#> 239                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Amravati District of Maharashtra, 1991
#> 240                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bijnor District of Uttar Pradesh, 1991
#> 241                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Churu District of Rajasthan, 1991
#> 242                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for South Twenty Four Parganas District of West Bengal, 1991
#> 243                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ambala District of Haryana, 1991
#> 244                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Datia District of Madhya Pradesh, 1991
#> 245                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nalanda District of Bihar, 1991
#> 246                                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Punjab
#> 247                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Azamgarh District of Uttar Pradesh, 1991
#> 248                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ramanathapuram District of Tamil Nadu, 1991
#> 249                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Alappuzha District of Kerala, 1991
#> 250                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lakhimpur District of Assam, 1991
#> 251                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Greater Bombay District of Maharashtra, 1991
#> 252                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhavnagar District of Gujarat, 1991
#> 253                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mon District of Nagaland, 1991
#> 254                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Banda District of Uttar Pradesh, 1991
#> 255                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for North Arcot Ambedker District of Tamil Nadu, 1991
#> 256                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chamba District of Himachal Pradesh, 1991
#> 257                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for East Siang District of Arunachal Pradesh, 1991
#> 258                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hoshangabad District of Madhya Pradesh, 1991
#> 259                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Palamu District of Bihar, 1991
#> 260                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jaintia Hills District of Meghalaya, 1991
#> 261                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Pilibhit District of Uttar Pradesh, 1991
#> 262                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhilwara District of Rajasthan, 1991
#> 263                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Daman District of Daman and Diu, 1991
#> 264                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gurgaon District of Haryana, 1991
#> 265                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rangareddi District of Andhra Pradesh, 1991
#> 266                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mandsaur District of Madhya Pradesh, 1991
#> 267                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Darbhanga District of Bihar, 1991
#> 268                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Yavatmal District of Maharashtra, 1991
#> 269                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Moradabad District of Uttar Pradesh, 1991
#> 270                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jhunjhunun District of Rajasthan, 1991
#> 271                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Calcutta District of West Bengal, 1991
#> 272                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Yamunanagar District of Haryana, 1991
#> 273                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - India (Excluding J&K)
#> 274                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bellary District of Karnataka, 1991
#> 275                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhojpur District of Bihar, 1991
#> 276                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gurdaspur District of Punjab, 1991
#> 277                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jaunpur District of Uttar Pradesh, 1991
#> 278                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chidambaranar District of Tamil Nadu, 1991
#> 279                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shimla District of Himachal Pradesh, 1991
#> 280                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dhemaji District of Assam, 1991
#> 281                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Thane District of Maharashtra, 1991
#> 282                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Amreli District of Gujarat, 1991
#> 283                                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Orissa
#> 284                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Fatehpur District of Uttar Pradesh, 1991
#> 285                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dharmapuri District of Tamil Nadu, 1991
#> 286                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kozhikode District of Kerala, 1991
#> 287                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dibang Valley District of Arunachal Pradesh, 1991
#> 288                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jabalpur District of Madhya Pradesh, 1991
#> 289                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lohardaga District of Bihar, 1991
#> 290                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for East Khasi Hills District of Meghalaya, 1991
#> 291                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shahjahanpur District of Uttar Pradesh, 1991
#> 292                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Udaipur District of Rajasthan, 1991
#> 293                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Diu District of Daman and Diu, 1991
#> 294                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Raichur District of Karnataka, 1991
#> 295                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hyderabad District of Andhra Pradesh, 1991
#> 296                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ratlam District of Madhya Pradesh, 1991
#> 297                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Madhubani District of Bihar, 1991
#> 298                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Wardha District of Maharashtra, 1991
#> 299                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rampur District of Uttar Pradesh, 1991
#> 300                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Alwar District of Rajasthan, 1991
#> 301                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Haora District of West Bengal, 1991
#> 302                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dakshin Kannad District of Karnataka, 1991
#> 303                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Andhra Pradesh
#> 304                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shivpuri District of Madhya Pradesh, 1991
#> 305                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rohtas District of Bihar, 1991
#> 306                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kanniyakumari District of Tamil Nadu, 1991
#> 307                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Amritsar District of Punjab, 1991
#> 308                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ballia District of Uttar Pradesh, 1991
#> 309                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tirunelveli Kattabomman District of Tamil Nadu, 1991
#> 310                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Pathanamthitta District of Kerala, 1991
#> 311                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Marigaon District of Assam, 1991
#> 312                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Raigarh District of Maharashtra, 1991
#> 313                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Junagadh District of Gujarat, 1991
#> 314                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Pratapgarh District of Uttar Pradesh, 1991
#> 315                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tiruvannamalai Sambuvarayar District of Tamil Nadu, 1991
#> 316                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kangra District of Himachal Pradesh, 1991
#> 317                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lohit District of Arunachal Pradesh, 1991
#> 318                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Narsimhapur District of Madhya Pradesh, 1991
#> 319                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gumla District of Bihar, 1991
#> 320                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Khasi Hills District of Meghalaya, 1991
#> 321                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kheri District of Uttar Pradesh, 1991
#> 322                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chittaurgarh District of Rajasthan, 1991
#> 323                                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Delhi
#> 324                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rewari District of Haryana, 1991
#> 325                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Medak District of Andhra Pradesh, 1991
#> 326                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ujjain District of Madhya Pradesh, 1991
#> 327                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Saharsa District of Bihar, 1991
#> 328                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nagpur District of Maharashtra, 1991
#> 329                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Saharanpur District of Uttar Pradesh, 1991
#> 330                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bharatpur District of Rajasthan, 1991
#> 331                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hugli District of West Bengal, 1991
#> 332                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kurukshetra District of Haryana, 1991
#> 333                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Srikakulam District of Andhra Pradesh, 1991
#> 334                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bidar District of Karnataka, 1991
#> 335                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Aurangabad District of Bihar, 1991
#> 336                                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Tripura
#> 337                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Firozpur District of Punjab, 1991
#> 338                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ghazipur District of Uttar Pradesh, 1991
#> 339                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Solan District of Himachal Pradesh, 1991
#> 340                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nagaon District of Assam, 1991
#> 341                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ratnagiri District of Maharashtra, 1991
#> 342                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kachchh District of Gujarat, 1991
#> 343                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sambalpur District of Orissa, 1991
#> 344                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Malappuram District of Kerala, 1991
#> 345                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Changlang District of Arunachal Pradesh, 1991
#> 346                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mandla District of Madhya Pradesh, 1991
#> 347                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ranchi District of Bihar, 1991
#> 348                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for East Garo Hills District of Meghalaya, 1991
#> 349                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sitapur District of Uttar Pradesh, 1991
#> 350                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dungarpur District of Rajasthan, 1991
#> 351                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Delhi District of Delhi, 1991
#> 352                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shimoga District of Karnataka, 1991
#> 353                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nizamabad District of Andhra Pradesh, 1991
#> 354                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Shajapur District of Madhya Pradesh, 1991
#> 355                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Madhepura District of Bihar, 1991
#> 356                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhandara District of Maharashtra, 1991
#> 357                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hardwar District of Uttar Pradesh, 1991
#> 358                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dholpur District of Rajasthan, 1991
#> 359                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Medinipur District of West Bengal, 1991
#> 360                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dharwad District of Karnataka, 1991
#> 361                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Vizianagaram District of Andhra Pradesh, 1991
#> 362                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Guna District of Madhya Pradesh, 1991
#> 363                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jehanabad District of Bihar, 1991
#> 364                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Tripura District of Tripura, 1991
#> 365                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ludhiana District of Punjab, 1991
#> 366                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Varanasi District of Uttar Pradesh, 1991
#> 367                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kollam District of Kerala, 1991
#> 368                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Golaghat District of Assam, 1991
#> 369                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sindhudurg District of Maharashtra, 1991
#> 370                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Banas Kantha District of Gujarat, 1991
#> 371                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sundargarh District of Orissa, 1991
#> 372                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Allahabad District of Uttar Pradesh, 1991
#> 373                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for South Arcot District of Tamil Nadu, 1991
#> 374                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hamirpur District of Himachal Pradesh, 1991
#> 375                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tirap District of Arunachal Pradesh, 1991
#> 376                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chhindwara District of Madhya Pradesh, 1991
#> 377                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Purbi Singhbhum District of Bihar, 1991
#> 378                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Garo Hills District of Meghalaya, 1991
#> 379                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hardoi District of Uttar Pradesh, 1991
#> 380                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Banswara District of Rajasthan, 1991
#> 381                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Lakshadweep
#> 382                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mahendragarh District of Haryana, 1991
#> 383                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Adilabad District of Andhra Pradesh, 1991
#> 384                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dewas District of Madhya Pradesh, 1991
#> 385                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Purnia District of Bihar, 1991
#> 386                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chandrapur District of Maharashtra, 1991
#> 387                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Muzaffarnagar District of Uttar Pradesh, 1991
#> 388                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sawai Madhopur District of Rajasthan, 1991
#> 389                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bankura District of West Bengal, 1991
#> 390                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kaithal District of Haryana, 1991
#> 391                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Visakhapatnam District of Andhra Pradesh, 1991
#> 392                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bijapur District of Karnataka, 1991
#> 393                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gaya District of Bihar, 1991
#> 394                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Solapur District of Maharashtra, 1991
#> 395                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for North Tripura District of Tripura, 1991
#> 396                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jalandhar District of Punjab, 1991
#> 397                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mirzapur District of Uttar Pradesh, 1991
#> 398                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sirmaur District of Himachal Pradesh, 1991
#> 399                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jorhat District of Assam, 1991
#> 400                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nashik District of Maharashtra, 1991
#> 401                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sabar Kantha District of Gujarat, 1991
#> 402                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kendujhar District of Orissa, 1991
#> 403                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bahraich District of Uttar Pradesh, 1991
#> 404                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Salem District of Tamil Nadu, 1991
#> 405                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Seoni District of Madhya Pradesh, 1991
#> 406                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Pashchimi Singhbhum District of Bihar, 1991
#> 407                                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Mizoram
#> 408                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Unnao District of Uttar Pradesh, 1991
#> 409                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bundi District of Rajasthan, 1991
#> 410                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lakshadweep District of Lakshadweep, 1991
#> 411                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tumkur District of Karnataka, 1991
#> 412                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Karimnagar District of Andhra Pradesh, 1991
#> 413                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jhabua District of Madhya Pradesh, 1991
#> 414                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Katihar District of Bihar, 1991
#> 415                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gadchiroli District of Maharashtra, 1991
#> 416                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Meerut District of Uttar Pradesh, 1991
#> 417                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jaipur District of Rajasthan, 1991
#> 418                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Puruliya District of West Bengal, 1991
#> 419                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gulbarga District of Karnataka, 1991
#> 420                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for East Godavari District of Andhra Pradesh, 1991
#> 421                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tikamgarh District of Madhya Pradesh, 1991
#> 422                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nawada District of Bihar, 1991
#> 423                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kolhapur District of Maharashtra, 1991
#> 424                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for South Tripura District of Tripura, 1991
#> 425                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kapurthala District of Punjab, 1991
#> 426                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sonbhadra District of Uttar Pradesh, 1991
#> 427                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Trivandrum District of Kerala, 1991
#> 428                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sibsagar District of Assam, 1991
#> 429                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dhule District of Maharashtra, 1991
#> 430                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mahesana District of Gujarat, 1991
#> 431                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Mayurbhanj District of Orissa, 1991
#> 432                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gonda District of Uttar Pradesh, 1991
#> 433                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Periyar District of Tamil Nadu, 1991
#> 434                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Palakkad District of Kerala, 1991
#> 435                                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Assam
#> 436                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Aizawl District of Mizoram, 1991
#> 437                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lucknow District of Uttar Pradesh, 1991
#> 438                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kota District of Rajasthan, 1991
#> 439                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Pondicherry
#> 440                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhiwani District of Haryana, 1991
#> 441                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Warangal District of Andhra Pradesh, 1991
#> 442                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dhar District of Madhya Pradesh, 1991
#> 443                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Khagaria District of Bihar, 1991
#> 444                                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Manipur
#> 445                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ghaziabad District of Uttar Pradesh, 1991
#> 446                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Sikar District of Rajasthan, 1991
#> 447                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Barddhaman District of West Bengal, 1991
#> 448                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Karnal District of Haryana, 1991
#> 449                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Godavari District of Andhra Pradesh, 1991
#> 450                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chikmagalur District of Karnataka, 1991
#> 451                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Saran District of Bihar, 1991
#> 452                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Aurangabad District of Maharashtra, 1991
#> 453                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Uttar Pradesh
#> 454                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hoshiarpur District of Punjab, 1991
#> 455                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - West Bengal
#> 456                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kinnaur District of Himachal Pradesh, 1991
#> 457                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dibrugarh District of Assam, 1991
#> 458                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jalgaon District of Maharashtra, 1991
#> 459                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gandhinagar District of Gujarat, 1991
#> 460                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Baleshwar District of Orissa, 1991
#> 461                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Barabanki District of Uttar Pradesh, 1991
#> 462                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nilgiri District of Tamil Nadu, 1991
#> 463                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Una District of Himachal Pradesh, 1991
#> 464                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Dhubri District of Assam, 1991
#> 465                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Balaghat District of Madhya Pradesh, 1991
#> 466                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Araria District of Bihar, 1991
#> 467                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Lunglei District of Mizoram, 1991
#> 468                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rae Bareli District of Uttar Pradesh, 1991
#> 469                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jhalawar District of Rajasthan, 1991
#> 470                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Pondicherry District of Pondicherry, 1991
#> 471                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Uttar Kannad District of Karnataka, 1991
#> 472                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Khammam District of Andhra Pradesh, 1991
#> 473                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Indore District of Madhya Pradesh, 1991
#> 474                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Munger District of Bihar, 1991
#> 475                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Senapati District of Manipur, 1991
#> 476                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bulandshahr District of Uttar Pradesh, 1991
#> 477                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ajmer District of Rajasthan, 1991
#> 478                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Birbhum District of West Bengal, 1991
#> 479                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Hassan District of Karnataka, 1991
#> 480                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Krishna District of Andhra Pradesh, 1991
#> 481                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chhatarpur District of Madhya Pradesh, 1991
#> 482                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Siwan District of Bihar, 1991
#> 483                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jalna District of Maharashtra, 1991
#> 484                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Uttarkashi District of Uttar Pradesh, 1991
#> 485                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Rupnagar District of Punjab, 1991
#> 486                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Koch Bihar District of West Bengal, 1991
#> 487                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Madhya Pradesh
#> 488                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tinsukia District of Assam, 1991
#> 489                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ahmadnagar District of Maharashtra, 1991
#> 490                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Ahmadabad District of Gujarat, 1991
#> 491                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Cuttack District of Orissa, 1991
#> 492                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Faizabad District of Uttar Pradesh, 1991
#> 493                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Coimbatore District of Tamil Nadu, 1991
#> 494                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Thrissur District of Kerala, 1991
#> 495                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kokrajhar District of Assam, 1991
#> 496                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Surguja District of Madhya Pradesh, 1991
#> 497                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Kishanganj District of Bihar, 1991
#> 498                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chhimtuipui District of Mizoram, 1991
#> 499                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Farrukhabad District of Uttar Pradesh, 1991
#> 500                                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Sikkim
#> 501                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Karaikal District of Pondicherry, 1991
#> 502                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jind District of Haryana, 1991
#> 503                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Nalgonda District of Andhra Pradesh, 1991
#> 504                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for West Nimar District of Madhya Pradesh, 1991
#> 505                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Bhagalpur District of Bihar, 1991
#> 506                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tamenglong District of Manipur, 1991
#> 507                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Aligarh District of Uttar Pradesh, 1991
#> 508                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Tonk District of Rajasthan, 1991
#> 509                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex, 1991 - Andaman and Nicobar Islands
#> 510                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Panipat District of Haryana, 1991
#> 511                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Guntur District of Andhra Pradesh, 1991
#> 512                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chitradurga District of Karnataka, 1991
#> 513                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Gopalganj District of Bihar, 1991
#> 514                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Parbhani District of Maharashtra, 1991
#> 515                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Chamoli District of Uttar Pradesh, 1991
#> 516                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Patiala District of Punjab, 1991
#> 517                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Educational Level and Sex for Jalpaiguri District of West Bengal, 1991
#> 518                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Tripura
#> 519                                                                                                                      Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - India
#> 520                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Kerala
#> 521                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Jammu & Kashmir
#> 522                                                                                                                 Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Tamil Nadu
#> 523                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Meghalaya
#> 524                                                                                                           Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Himachal Pradesh
#> 525                                                                                                                 Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Puducherry
#> 526                                                                                                                      Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Assam
#> 527                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Punjab
#> 528                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Andaman & Nicobar Islands
#> 529                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - West Bengal
#> 530                                                                                                                 Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Chandigarh
#> 531                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Jharkhand
#> 532                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Uttarakhand
#> 533                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Odisha
#> 534                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Haryana
#> 535                                                                                                               Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Chhattisgarh
#> 536                                                                                                               Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - NCT of Delhi
#> 537                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Madhya Pradesh
#> 538                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Rajasthan
#> 539                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Gujarat
#> 540                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Uttar Pradesh
#> 541                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Daman & Diu
#> 542                                                                                                                      Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Bihar
#> 543                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Dadra & Nagar Haveli
#> 544                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Sikkim
#> 545                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Maharashtra
#> 546                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Arunachal Pradesh
#> 547                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Andhra Pradesh
#> 548                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Nagaland
#> 549                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Karnataka
#> 550                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Manipur
#> 551                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Goa
#> 552                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Mizoram
#> 553                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Lakshadweep
#> 554                                                                                          Crop-wise Details on Yields, Net Profits of ZBNF and Chemical Farming in States of Himachal Pradesh during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 555                                                                                                                                Achievement Made in Respect of Agriculture Credit Flow as Reported by NABARD from 2016-17 to 2018-19 (From: Ministry of Finance)
#> 556                                                                                                                   Details of Increase in Minimum Support Prices (MSP) of Rabi Crops from 2018-19 to 2020-21 (From: Ministry of Agriculture and Farmers Welfare)
#> 557                                                                                                               State/UT-wise Farmer Applications Covered under PMFBY/RWBCIS Combined from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 558                                                                                                                                    Production of Food Grains and Horticulture Crops from 2010-11 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 559                                                                                  Expenditure on Agriculture and Allied Activities under Mahatma Gandhi National Rural Employment Guarantee Scheme from 2016-17 to 2018-19 (From: Ministry of Rural Development)
#> 560                                                                                               State/UT-wise Agriculture Credit Disbursement by Commercial Banks, Regional Rural Banks and Cooperative Banks from 2016-17 to 2018-19 (From: Ministry of Finance)
#> 561                                                                                                                State/UT-wise Centre Share Released and Utilisation under PMKSY-PDMC from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 562                                        Number of Farmer Applications Insured and Indemnity Claims Disbursed under Pradhan Mantri Fasal Bima Yojana (PMFBY) Scheme in State of Assam from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 563                    Memorandums Received from the State Government of Andhra Pradesh Seeking Financial Assistance from National Disaster Response Fund (NDRF) in the Wake of Drought from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 564                                                                                                                        State-wise Funds Released and Funds Utilized under WDC-PMKSY from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 565                                      Assistance Sought by the State Government of Andhra Pradesh, Assistance Approved by the High Level Committee (HLC) and the Assistance Released from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 566                                                                                                                             State/UT-wise Barren & Unculturable Land in the Country from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 567                                                                                                State/UT-wise Unincorporated Non-Agricultural Enterprises as per 73rd Round of NSS Report during 2015-16 (From: Ministry of Micro, Small and Medium Enterprises)
#> 568                                                                                              Funds Allocated to FFP Centres for Application of Technology Modules in Farmers Fields from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 569                                                                                                              State-wise Amount Approved from National Disaster Response Fund (NDRF) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 570                                                             State/UT-wise Funds Allocated and Released Development of Horticulture Including Setting up of Cold Storages under MIDH as on 14 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 571                                                                                                                            State/UT-wise Number of Farmers Issued Soil Health Cards from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 572                                                                                                             State-wise Per Hectare Fertiliser Consumption of Major Cotton Producing from 2004-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 573                                                                  Percentage of Certified/Quality Seeds Available with Private Companies (Including Foreign Multinational Companies) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 574                                                                                       Funds Allocated by National innovation Foundation for innovation Validation and Dissemination from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 575                                                                                                                   Production and Demand of Fruits and Vegetables in State of Punjab from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 576                                                                                                             State/UT-wise Number of Wholly Leased-in Operational Holdings as per Agriculture Census 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 577                                                      Details of Total Admissible Claims, Claims Approved and Claims Paid by insurance Companies since inception of the PMFBY/RWBCIS from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 578                                                                                                                               State-wise Area, Production and Yield of Major Cotton from 2013-14 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 579                                                                               State-wise Central Assistance (CA) Released and Irrigation Potential Created (IPC) under PMKSY-AIBP, SMI & RRR during 2015-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 580                                                                    State/UT-wise Number of Districts and Number Farmers Trained under Agriculture Technology Management Agency (ATMA) Scheme during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 581                                                                                                      State/UT-wise Grants-in-Aid Approved/Released for Cold Chain Projects by MoFPI from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 582                                                                                                                           Bank-wise Agricultural Loans outstanding to Small and Marginal Farmers by Public Sector Banks during 2019 (From: Ministry of Finance)
#> 583    State-wise No. of Custom Hiring Centers (CHC) Established under a new Central Sector Scheme on Promotion of Agricultural Mechanization for In-Situ Management of Crop Residue during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 584                                                      Consumption of the Major Fertilizers Namely Urea, Di-Ammonium Phosphate, Muriate of Potash, Complex and Single Super Phosphate from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 585                                                                                                                              Details of Pulses & Oilseeds Procured at MSP under PSS from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 586                                                                                    State/UT-wise Central Assistance Released and Micro Irrigation area Covered under the PMKSY-PDMC from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 587                                  Farmers Applications Covered, Sum Insured, Total Premium, Total Claims and Number of Farmers Benefited for Aforesaid Crops under PMFBY in Bihar during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 588                                                                                                                                   State-wise Details of Sanction Accorded under MIS from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 589                                                                      State-wise Additional Area Brought under Protective Irrigation and Central Assistance Released under PMKSY-WDC from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 590                                                                                                                                      Commodity-wise Details of Cost, MSP and Return from 2017-18 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 591                                                                         State/UT-wise Percentage of Gross Cropped Area (GCA) covered under Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 592                                                                                                                                         State/UT-wise List of Data Rejected by PFMS as on 26 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 593                                                                                                                                Quantum of Major Fertilizers Consumed in the Country from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 594                                                                                      State/UT-wise Premium Collected and Claims Paid under Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 595                                                                                                                                   Commodity-wise Increase in Minimum Support Prices from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 596                                                                                                      State/UT-wise List of Beneficiaries who have Received Payment under the Scheme as on 25 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 597                                                                                 State-wise Compensation Paid Provided to the Farmers under Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2017-18 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 598                                                                 State/UT-wise Number of Farmer Families Registered and Benefited under Pradhan Mantri Kisan Samman Nidhi (PM-KISAN) as on 18 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 599                                                                               Estimated Cumulative Percentages of Annual Harvest and Post- Harvest Losses of Major Agricultural Produces in India during 2012-13 (From: Ministry of Food Processing Industries)
#> 600                                    State/UT-wise Percentage of Workers in usual Status (PS+SS) in Agriculture Sector Excluding Growing of Crops (AGEGC) and Non-Agriculture Sectors in Informal Sector during 2017-18 (From: Ministry of Labour and Employment)
#> 601                                                                                                               Country-wise Major Fruit and Vegetables & Melons Producing Countries in the World during 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 602                                                                                                                           Monthend Average Wholesale and Retail Prices of Fruits and Vegetables during 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 603                                                                                                                                         Crop-wise Return over Cost of Production during 2019-20 and 2020-21 (From: Ministry of Agriculture and Farmers Welfare)
#> 604                                                                             State/UT-wise Number of Farmers Trained under Sub-Mission on Plant Protection and Plant Quarantine during 2017-2018 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 605                                                                                                                                           Value of Output from Apple Farming in J&K from 2011-12 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 606                                                                                         State-wise Reported Loss of Crops Due to Flood/Landslides/Hydro-Metrological Hazards South-West Monsoon during 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 607                                                           District-wise Number of Farmers Trained under Sub-Mission on Plant Protection and Plant Quarantine in State of Haryana during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 608                                                                                                             Majority of Cotton Crop Area in the country is covered under Bt. Cotton from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 609                                                                                      State-wise Funds Allocated and Utilized for Promotion of Zero Budget Natural Farming (ZBNF) during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 610                                                                                                                                   Amount of Organic Products Produce in the Country from 2014-15 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 611                                                       Minimum Support Price (MSP), Cost of Production and Profit Margins over Cost of Production for Major Kharif and Rabi Crops during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 612                                                                                                               Budgetary Allocation under the BGREI Programme in the state of Odisha from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 613                                                                                               State/UT-wise Farmers Suicide as per Accidental Deaths and Suicides in India (ADSI) Reports from 2014 to 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 614                                                                                                                                  State/UT-wise Suicide by Persons in Farming/Agriculture Sector during 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 615                                                                   State/UT-wise Average Monthly Income per Agricultural Household as per Situation Assessment Survey of Agricultural Households during 2013 (From: Ministry of Agriculture and Farmers Welfare)
#> 616                                                                                                                                Percentage Increase in MSP for Kharif and Rabi Crops from 2017-18 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 617                                                                                  State/UT-wise Expenditure Incurred on Disbursement of Benefits to Farmers under PM-Kisan Scheme during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 618                                                                                       State-wise Number of Farmers Cases of Reversal of Transactions (in reply to Unstarred Question on 6th December, 2019) (From: Ministry of Agriculture and Farmers Welfare)
#> 619                                                                                                           State-wise Financial Assistance Approved from the NDRF in Wake of Drought from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 620                                                                  Number of Farmers Covered and who got Claims and Budget Allocations under Pradhan Mantri Fasal Bima Yojana (PMFBY) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 621                                                                                                State/UT-wise and Installment-wise Number of Registered Beneficiaries under PM-KISAN as on 27 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 622                             Brief of Loan Waiver Schemes Announced by the Present State Governments of Madhya Pradesh, Rajasthan and Punjab and the Status of the Implementation during 2017-18 and 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 623                                                                                                                                                                MSP for Kharif and Rabi Crops during 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 624                                                                        Detail of Agriculture Loan Disbursed to Farmers and Number of Farmers Benefitted districts of Konkan area in State of Maharashtra during 2017-18 and 2018-19 (From: Ministry of Finance)
#> 625                                    State/UT-wise Release of Funds under National Horticulture Mission (NHM) and Horticulture Mission for North Eastern and Himalayan States (HMNEH) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 626                                               State-wise Watershed Projects Sanctioned, Area covered by the Projects, Completed and Funds Released as Central Share under WDC-PMKSY from 2009-10 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 627                                                                                                   District-wise Number of Farmers Covered under PM-KISAN in State of Madhya Pradesh as on 27 November, 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 628                                                                                                              State/UT and Status-wise Land Holding Distribution of Farmers/Cultivators Suicides during 2015 (From: Ministry of Agriculture and Farmers Welfare)
#> 629                                                                                                                      Return Over Cost of Crops Production (As Per Marketing Season) from 2015-16 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 630                                                                                            Crop-wise Details on Yields, Net Profits of ZBNF and Chemical Farming in States of Andhra Pradesh during 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 631                                                               Details of Achievement made in respect of Agriculture Credit Flow as reported by National Bank for Agriculture and Rural Development (NABARD) from 2016-17 to 2018-19 (From: Ministry of Finance)
#> 632                                     Number of Accounts in which Agricultural Term Loans which inter Alia includes Purchase of Agricultural Implements such as Tractors and Machinery were Provided by Banks from 2016-17 to 2018-19 (From: Ministry of Finance)
#> 633                                                                                                                         State/UT-wise GoI Expenditure reported by State Governments from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 634                                                                                                                                                 Cost, MSP and Return for Pulses and Oilseeds during 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 635                                                                                     Scheme-wise Amount Disbursed by National Bank for Agriculture and Rural Development (NABARD) to State of Maharashtra from 2016-17 to 2018-19 (From: Ministry of Jal Shakti)
#> 636                                                                                                                                                        State/UT-wise Net Irrigated Area as per Agriculture Census during 2015-16 (From: Ministry of Jal Shakti)
#> 637                                                                                                                                             All India Level Yield of Rice and Wheat from 2014-15 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 638                                                                                                                       Details of Agricultural Land, Arable Land and Cultivable Land from 2010-11 to 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#> 639                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Karnataka
#> 640                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Nagaland
#> 641                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Goa
#> 642                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Manipur
#> 643                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Lakshadweep
#> 644                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Mizoram
#> 645                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Kerala
#> 646                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Tripura
#> 647                                                                                                                  Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - India
#> 648                                                                                                             Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Tamil Nadu
#> 649                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Meghalaya
#> 650                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Jammu & Kashmir
#> 651                                                                                                             Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Puducherry
#> 652                                                                                                                  Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Assam
#> 653                                                                                                       Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Himachal Pradesh
#> 654                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Andaman & Nicobar Islands
#> 655                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - West Bengal
#> 656                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Punjab
#> 657                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Jharkhand
#> 658                                                                                                             Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Chandigarh
#> 659                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Odisha
#> 660                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Uttarakhand
#> 661                                                                                                           Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Chhattisgarh
#> 662                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Haryana
#> 663                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Madhya Pradesh
#> 664                                                                                                           Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - NCT of Delhi
#> 665                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Gujarat
#> 666                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Rajasthan
#> 667                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Daman & Diu
#> 668                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Uttar Pradesh
#> 669                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Dadra & Nagar Haveli
#> 670                                                                                                                  Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Bihar
#> 671                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Maharashtra
#> 672                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Sikkim
#> 673                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Andhra Pradesh
#> 674                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Industrial Category and Sex, 2011 - Arunachal Pradesh
#> 675                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - India
#> 676                                                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Jharkhand
#> 677                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Jharkhand
#> 678                                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Chandigarh
#> 679                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - India
#> 680                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Assam
#> 681                                                                                                           Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Jammu & Kashmir
#> 682                                                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Odisha
#> 683                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Odisha
#> 684                                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Uttarakhand
#> 685                                                                                                           Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Jammu & Kashmir
#> 686                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - West Bengal
#> 687                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Himachal Pradesh
#> 688                                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Chhattisgarh
#> 689                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Chhattisgarh
#> 690                                                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Haryana
#> 691                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Himachal Pradesh
#> 692                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Jharkhand
#> 693                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Punjab
#> 694                                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Madhya Pradesh
#> 695                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Madhya Pradesh
#> 696                                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - NCT of Delhi
#> 697                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Uttarakhand
#> 698                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Odisha
#> 699                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Chandigarh
#> 700                                                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Gujarat
#> 701                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Gujarat
#> 702                                                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Rajasthan
#> 703                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Rajasthan
#> 704                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Chhattisgarh
#> 705                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Uttarakhand
#> 706                                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Daman & Diu
#> 707                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Daman & Diu
#> 708                                                                                                                                  Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Uttar Pradesh
#> 709                                                                                                             Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Uttar Pradesh
#> 710                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Madhya Pradesh
#> 711                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Haryana
#> 712                                                                                                                           Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Dadra & Nagar Haveli
#> 713                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Dadra & Nagar Haveli
#> 714                                                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Bihar
#> 715                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Bihar
#> 716                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Gujarat
#> 717                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - NCT of Delhi
#> 718                                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Maharashtra
#> 719                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Maharashtra
#> 720                                                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Sikkim
#> 721                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Sikkim
#> 722                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Daman & Diu
#> 723                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Rajasthan
#> 724                                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Andhra Pradesh
#> 725                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Andhra Pradesh
#> 726                                                                                                                              Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Arunachal Pradesh
#> 727                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Arunachal Pradesh
#> 728                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Dadra & Nagar Haveli
#> 729                                                                                                             Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Uttar Pradesh
#> 730                                                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Karnataka
#> 731                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Karnataka
#> 732                                                                                                                                       Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Nagaland
#> 733                                                                                                                  Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Nagaland
#> 734                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Maharashtra
#> 735                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Bihar
#> 736                                                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Goa
#> 737                                                                                                                       Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Goa
#> 738                                                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Manipur
#> 739                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Manipur
#> 740                                                                                                            Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Andhra Pradesh
#> 741                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Sikkim
#> 742                                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Lakshadweep
#> 743                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Lakshadweep
#> 744                                                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Mizoram
#> 745                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Mizoram
#> 746                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Karnataka
#> 747                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Manipur
#> 748                                                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Kerala
#> 749                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Kerala
#> 750                                                                                                                                        Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Tripura
#> 751                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Tripura
#> 752                                                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - India
#> 753                                                                                                                       Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Goa
#> 754                                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Tamil Nadu
#> 755                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Tamil Nadu
#> 756                                                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Meghalaya
#> 757                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Meghalaya
#> 758                                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Jammu & Kashmir
#> 759                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Kerala
#> 760                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Mizoram
#> 761                                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Puducherry
#> 762                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Andaman & Nicobar Islands
#> 763                                                                                                                                          Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Assam
#> 764                                                                                                                     Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Assam
#> 765                                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Himachal Pradesh
#> 766                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Tamil Nadu
#> 767                                                                                                                   Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Tripura
#> 768                                                                                                                      Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Andaman & Nicobar Islands
#> 769                                                                                                                                    Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - West Bengal
#> 770                                                                                                               Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - West Bengal
#> 771                                                                                                                                         Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Punjab
#> 772                                                                                                                Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Puducherry
#> 773                                                                                                                 Occupational Classification of Marginal Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Meghalaya
#> 774                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - India
#> 775                                                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Jharkhand
#> 776                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Jharkhand
#> 777                                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Chandigarh
#> 778                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - India
#> 779                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Assam
#> 780                                                                                                               Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Jammu & Kashmir
#> 781                                                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Odisha
#> 782                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Odisha
#> 783                                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Uttarakhand
#> 784                                                                                                               Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Jammu & Kashmir
#> 785                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - West Bengal
#> 786                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Himachal Pradesh
#> 787                                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Chhattisgarh
#> 788                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Chhattisgarh
#> 789                                                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Haryana
#> 790                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Himachal Pradesh
#> 791                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Jharkhand
#> 792                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Punjab
#> 793                                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Madhya Pradesh
#> 794                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Madhya Pradesh
#> 795                                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - NCT of Delhi
#> 796                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Uttarakhand
#> 797                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Odisha
#> 798                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Chandigarh
#> 799                                                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Gujarat
#> 800                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Gujarat
#> 801                                                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Rajasthan
#> 802                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Rajasthan
#> 803                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Chhattisgarh
#> 804                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Uttarakhand
#> 805                                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Daman & Diu
#> 806                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Daman & Diu
#> 807                                                                                                                                      Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Uttar Pradesh
#> 808                                                                                                                 Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Uttar Pradesh
#> 809                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Madhya Pradesh
#> 810                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Haryana
#> 811                                                                                                                               Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Dadra & Nagar Haveli
#> 812                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Dadra & Nagar Haveli
#> 813                                                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Bihar
#> 814                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Bihar
#> 815                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Gujarat
#> 816                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - NCT of Delhi
#> 817                                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Maharashtra
#> 818                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Maharashtra
#> 819                                                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Sikkim
#> 820                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Sikkim
#> 821                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Daman & Diu
#> 822                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Rajasthan
#> 823                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Andhra Pradesh
#> 824                                                                                                                                  Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Arunachal Pradesh
#> 825                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Arunachal Pradesh
#> 826                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Dadra & Nagar Haveli
#> 827                                                                                                                 Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Uttar Pradesh
#> 828                                                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Karnataka
#> 829                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Karnataka
#> 830                                                                                                                                           Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Nagaland
#> 831                                                                                                                      Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Nagaland
#> 832                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Maharashtra
#> 833                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Bihar
#> 834                                                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Goa
#> 835                                                                                                                           Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Goa
#> 836                                                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Manipur
#> 837                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Manipur
#> 838                                                                                                                Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Andhra Pradesh
#> 839                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Sikkim
#> 840                                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Lakshadweep
#> 841                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Lakshadweep
#> 842                                                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Mizoram
#> 843                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Mizoram
#> 844                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Karnataka
#> 845                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Manipur
#> 846                                                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Kerala
#> 847                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Kerala
#> 848                                                                                                                                            Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Tripura
#> 849                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Tripura
#> 850                                                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - India
#> 851                                                                                                                           Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Goa
#> 852                                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Tamil Nadu
#> 853                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Tamil Nadu
#> 854                                                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Meghalaya
#> 855                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Meghalaya
#> 856                                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Jammu & Kashmir
#> 857                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Kerala
#> 858                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Mizoram
#> 859                                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Puducherry
#> 860                                                                                                                                              Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Assam
#> 861                                                                                                                         Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - Assam
#> 862                                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Himachal Pradesh
#> 863                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Tamil Nadu
#> 864                                                                                                                       Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Tripura
#> 865                                                                                                                          Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Andaman & Nicobar Islands
#> 866                                                                                                                                        Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - West Bengal
#> 867                                                                                                                   Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Tribes, 2011 - West Bengal
#> 868                                                                                                                                             Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex, 2011 - Punjab
#> 869                                                                                                                    Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Puducherry
#> 870                                                                                                                     Occupational Classification of Main Workers Other than Cultivators and Agricultural Labourers by Sex for Scheduled Castes, 2011 - Meghalaya
#> 871                                                                                                              Minimum Support Price (MSP) and Wholesale Prices of Major Agricultural Commodities during 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 872                                                                                 State-wise Custom Hiring Centres Established under Sub Mission on Agricultural Mechanization (SMAM) from 2014-15 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 873                                 District-wise the Number of Farmers Benefited under Paramparagat Krishi Vikas Yojana (PKVY) in State of Uttar Pradesh (in reply to Unstarred Question on 22 November, 2019) (From: Ministry of Agriculture and Farmers Welfare)
#> 874                                                                                                                       Value of Output from Agriculture and Allied Activities in J&K from 2004-05 to 2010-11 (From: Ministry of Agriculture and Farmers Welfare)
#> 875                                 State/UT-wise Allocation of Funds under National Horticulture Mission (NHM) and Horticulture Mission for North Eastern and Himalayan States (HMNEH) from 2016-17 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 876                                                                                                                                     State/UT and Crop-wise Production of Foodgrains from 2016-17 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 877                                                                                                                                   Details of MSP, Cost and Percent Return Over Cost from 2017-18 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 878                                                                                     State/UT-wise Income Generated by the Agricultural Households under National Sample Survey Office (NSSO) during 2012-13 (From: Ministry of Agriculture and Farmers Welfare)
#> 879                                                                        State-wise Number of Custom Hiring Centres Established under Submission on Agricultural Mechanization (SMAM) from 2014-15 to 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 880                                                                                                                       Value of Output from Agriculture and Allied Activities in J&K from 2011-12 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 881                                       District-wise Amount of Financial Assistance Provided to the Beneficiaries under Pradhan Mantri Kisan Samman Nidhi Yojana (PM-KISAN) in Maharashtra from 2018 to 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 882                                                                 State-wise detail of number of farmers imparted skill development training related to agriculture by Government as on 11th Nov, 2019 (From: Ministry of Skill Development and Entrepreneurship)
#> 883                                                                                                              State/UT/Agency-wise Funds Released under the Aforementioned scheme during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 884                             State/UT-wise Fund Allocated, Released and Expenditure under Schemes being Implemented by Department of Agriculture, Cooperation and farmers Welfare during 2018-19 and 2019-20 (From: Ministry of Agriculture and Farmers Welfare)
#> 885                                                                                                                                           Value of Output from Apple Farming in J&K from 2004-05 to 2010-11 (From: Ministry of Agriculture and Farmers Welfare)
#> 886                                                                              District-wise beneficiaries detail for registration period in Maharashtra under PM-KISAN 1st August 2019 to 30th November 2019 (From: Ministry of Agriculture and Farmers Welfare)
#> 887                                                                                                                                     State/UT-wise Details of Suicide Committed by Farmers from 2014 to 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 888                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Samastipur District of Bihar, 1991
#> 889                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kolar District of Karnataka, 1991
#> 890                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kendujhar District of Orissa, 1991
#> 891                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rajnandgaon District of Madhya Pradesh, 1991
#> 892                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bahraich District of Uttar Pradesh, 1991
#> 893                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Salem District of Tamil Nadu, 1991
#> 894                                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - India (Excluding J&K)
#> 895                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kinnaur District of Himachal Pradesh, 1991
#> 896                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Mizoram
#> 897                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Vidisha District of Madhya Pradesh, 1991
#> 898                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Unnao District of Uttar Pradesh, 1991
#> 899                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bundi District of Rajasthan, 1991
#> 900                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lakshadweep District of Lakshadweep, 1991
#> 901                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhemaji District of Assam, 1991
#> 902                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Amreli District of Gujarat, 1991
#> 903                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhiwani District of Haryana, 1991
#> 904                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gadchiroli District of Maharashtra, 1991
#> 905                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Damoh District of Madhya Pradesh, 1991
#> 906                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Meerut District of Uttar Pradesh, 1991
#> 907                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jaipur District of Rajasthan, 1991
#> 908                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Puruliya District of West Bengal, 1991
#> 909                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Siang District of Arunachal Pradesh, 1991
#> 910                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Palamu District of Bihar, 1991
#> 911                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kolhapur District of Maharashtra, 1991
#> 912                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kottayam District of Kerala, 1991
#> 913                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for South Tripura District of Tripura, 1991
#> 914                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kapurthala District of Punjab, 1991
#> 915                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sonbhadra District of Uttar Pradesh, 1991
#> 916                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rangareddi District of Andhra Pradesh, 1991
#> 917                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Darbhanga District of Bihar, 1991
#> 918                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mandya District of Karnataka, 1991
#> 919                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mayurbhanj District of Orissa, 1991
#> 920                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Durg District of Madhya Pradesh, 1991
#> 921                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gonda District of Uttar Pradesh, 1991
#> 922                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Periyar District of Tamil Nadu, 1991
#> 923                                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Andhra Pradesh
#> 924                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rohtas District of Bihar, 1991
#> 925                                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Karnataka
#> 926                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Aizawl District of Mizoram, 1991
#> 927                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhopal District of Madhya Pradesh, 1991
#> 928                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lucknow District of Uttar Pradesh, 1991
#> 929                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kota District of Rajasthan, 1991
#> 930                                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Pondicherry
#> 931                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Marigaon District of Assam, 1991
#> 932                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Junagadh District of Gujarat, 1991
#> 933                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jind District of Haryana, 1991
#> 934                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Manipur
#> 935                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Satna District of Madhya Pradesh, 1991
#> 936                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ghaziabad District of Uttar Pradesh, 1991
#> 937                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sikar District of Rajasthan, 1991
#> 938                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Barddhaman District of West Bengal, 1991
#> 939                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dibang Valley District of Arunachal Pradesh, 1991
#> 940                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lohardaga District of Bihar, 1991
#> 941                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Aurangabad District of Maharashtra, 1991
#> 942                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Alappuzha District of Kerala, 1991
#> 943                                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Uttar Pradesh
#> 944                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hyderabad District of Andhra Pradesh, 1991
#> 945                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Madhubani District of Bihar, 1991
#> 946                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mysore District of Karnataka, 1991
#> 947                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Baleshwar District of Orissa, 1991
#> 948                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Raipur District of Madhya Pradesh, 1991
#> 949                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Barabanki District of Uttar Pradesh, 1991
#> 950                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nilgiri District of Tamil Nadu, 1991
#> 951                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Srikakulam District of Andhra Pradesh, 1991
#> 952                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bangalore District of Karnataka, 1991
#> 953                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lunglei District of Mizoram, 1991
#> 954                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sehore District of Madhya Pradesh, 1991
#> 955                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rae Bareli District of Uttar Pradesh, 1991
#> 956                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jhalawar District of Rajasthan, 1991
#> 957                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pondicherry District of Pondicherry, 1991
#> 958                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nagaon District of Assam, 1991
#> 959                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kachchh District of Gujarat, 1991
#> 960                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hisar District of Haryana, 1991
#> 961                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Senapati District of Manipur, 1991
#> 962                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rewa District of Madhya Pradesh, 1991
#> 963                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bulandshahr District of Uttar Pradesh, 1991
#> 964                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ajmer District of Rajasthan, 1991
#> 965                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Birbhum District of West Bengal, 1991
#> 966                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lohit District of Arunachal Pradesh, 1991
#> 967                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pathanamthitta District of Kerala, 1991
#> 968                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Uttarkashi District of Uttar Pradesh, 1991
#> 969                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rupnagar District of Punjab, 1991
#> 970                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Koch Bihar District of West Bengal, 1991
#> 971                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Medak District of Andhra Pradesh, 1991
#> 972                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Saharsa District of Bihar, 1991
#> 973                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Raichur District of Karnataka, 1991
#> 974                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Cuttack District of Orissa, 1991
#> 975                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bastar District of Madhya Pradesh, 1991
#> 976                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Faizabad District of Uttar Pradesh, 1991
#> 977                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jehanabad District of Bihar, 1991
#> 978                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bangalore Rural District of Karnataka, 1991
#> 979                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chhimtuipui District of Mizoram, 1991
#> 980                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Raisen District of Madhya Pradesh, 1991
#> 981                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Farrukhabad District of Uttar Pradesh, 1991
#> 982                                                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Sikkim
#> 983                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Karaikal District of Pondicherry, 1991
#> 984                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Golaghat District of Assam, 1991
#> 985                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Banas Kantha District of Gujarat, 1991
#> 986                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sirsa District of Haryana, 1991
#> 987                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tamenglong District of Manipur, 1991
#> 988                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shahdol District of Madhya Pradesh, 1991
#> 989                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Aligarh District of Uttar Pradesh, 1991
#> 990                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tonk District of Rajasthan, 1991
#> 991                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Andaman and Nicobar Islands
#> 992                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Changlang District of Arunachal Pradesh, 1991
#> 993                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ranchi District of Bihar, 1991
#> 994                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Haryana
#> 995                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Parbhani District of Maharashtra, 1991
#> 996                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kollam District of Kerala, 1991
#> 997                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chamoli District of Uttar Pradesh, 1991
#> 998                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Patiala District of Punjab, 1991
#> 999                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalpaiguri District of West Bengal, 1991
#> 1000                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nizamabad District of Andhra Pradesh, 1991
#> 1001                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Madhepura District of Bihar, 1991
#> 1002                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shimoga District of Karnataka, 1991
#> 1003                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhenkanal District of Orissa, 1991
#> 1004                                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Maharashtra
#> 1005                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sultanpur District of Uttar Pradesh, 1991
#> 1006                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dindigul Quaid E Milleth District of Tamil Nadu, 1991
#> 1007                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Vizianagaram District of Andhra Pradesh, 1991
#> 1008                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Belgaum District of Karnataka, 1991
#> 1009                                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Nagaland
#> 1010                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Betul District of Madhya Pradesh, 1991
#> 1011                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Etawah District of Uttar Pradesh, 1991
#> 1012                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for North District of Sikkim, 1991
#> 1013                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mahe District of Pondicherry, 1991
#> 1014                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jorhat District of Assam, 1991
#> 1015                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sabar Kantha District of Gujarat, 1991
#> 1016                                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Himachal Pradesh
#> 1017                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Churachandpur District of Manipur, 1991
#> 1018                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sidhi District of Madhya Pradesh, 1991
#> 1019                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mathura District of Uttar Pradesh, 1991
#> 1020                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jaisalmer District of Rajasthan, 1991
#> 1021                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Andamans District of Andaman and Nicobar Islands, 1991
#> 1022                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tirap District of Arunachal Pradesh, 1991
#> 1023                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Purbi Singhbhum District of Bihar, 1991
#> 1024                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ambala District of Haryana, 1991
#> 1025                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bid District of Maharashtra, 1991
#> 1026                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Trivandrum District of Kerala, 1991
#> 1027                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sangrur District of Punjab, 1991
#> 1028                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Darjiling District of West Bengal, 1991
#> 1029                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Adilabad District of Andhra Pradesh, 1991
#> 1030                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Purnia District of Bihar, 1991
#> 1031                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tumkur District of Karnataka, 1991
#> 1032                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Phulabani District of Orissa, 1991
#> 1033                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Greater Bombay District of Maharashtra, 1991
#> 1034                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Siddharthnagar District of Uttar Pradesh, 1991
#> 1035                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tiruchchirappalli District of Tamil Nadu, 1991
#> 1036                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Visakhapatnam District of Andhra Pradesh, 1991
#> 1037                                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gaya District of Bihar, 1991
#> 1038                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bellary District of Karnataka, 1991
#> 1039                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kohima District of Nagaland, 1991
#> 1040                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hoshangabad District of Madhya Pradesh, 1991
#> 1041                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kanpur (Dehat) District of Uttar Pradesh, 1991
#> 1042                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East District of Sikkim, 1991
#> 1043                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Yanam District of Pondicherry, 1991
#> 1044                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sibsagar District of Assam, 1991
#> 1045                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mahesana District of Gujarat, 1991
#> 1046                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chamba District of Himachal Pradesh, 1991
#> 1047                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chandel District of Manipur, 1991
#> 1048                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mandsaur District of Madhya Pradesh, 1991
#> 1049                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Agra District of Uttar Pradesh, 1991
#> 1050                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jodhpur District of Rajasthan, 1991
#> 1051                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nicobars District of Andaman and Nicobar Islands, 1991
#> 1052                                                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Assam
#> 1053                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pashchimi Singhbhum District of Bihar, 1991
#> 1054                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Yamunanagar District of Haryana, 1991
#> 1055                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nanded District of Maharashtra, 1991
#> 1056                                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Madhya Pradesh
#> 1057                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dehradun District of Uttar Pradesh, 1991
#> 1058                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bathinda District of Punjab, 1991
#> 1059                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Dinajpur District of West Bengal, 1991
#> 1060                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Karimnagar District of Andhra Pradesh, 1991
#> 1061                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Katihar District of Bihar, 1991
#> 1062                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Uttar Kannad District of Karnataka, 1991
#> 1063                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Balangir District of Orissa, 1991
#> 1064                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Thane District of Maharashtra, 1991
#> 1065                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Maharajganj District of Uttar Pradesh, 1991
#> 1066                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Thanjavur District of Tamil Nadu, 1991
#> 1067                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Godavari District of Andhra Pradesh, 1991
#> 1068                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nawada District of Bihar, 1991
#> 1069                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Phek District of Nagaland, 1991
#> 1070                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jabalpur District of Madhya Pradesh, 1991
#> 1071                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for South District of Sikkim, 1991
#> 1072                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dibrugarh District of Assam, 1991
#> 1073                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gandhinagar District of Gujarat, 1991
#> 1074                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kangra District of Himachal Pradesh, 1991
#> 1075                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Thoubal District of Manipur, 1991
#> 1076                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ratlam District of Madhya Pradesh, 1991
#> 1077                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Firozabad District of Uttar Pradesh, 1991
#> 1078                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nagaur District of Rajasthan, 1991
#> 1079                                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Chandigarh
#> 1080                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhubri District of Assam, 1991
#> 1081                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Araria District of Bihar, 1991
#> 1082                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kurukshetra District of Haryana, 1991
#> 1083                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Osmanabad District of Maharashtra, 1991
#> 1084                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Morena District of Madhya Pradesh, 1991
#> 1085                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Garhwal District of Uttar Pradesh, 1991
#> 1086                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Faridkot District of Punjab, 1991
#> 1087                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Maldah District of West Bengal, 1991
#> 1088                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Warangal District of Andhra Pradesh, 1991
#> 1089                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Khagaria District of Bihar, 1991
#> 1090                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Kerala
#> 1091                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kalahandi District of Orissa, 1991
#> 1092                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Raigarh District of Maharashtra, 1991
#> 1093                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Basti District of Uttar Pradesh, 1991
#> 1094                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pudukkottai District of Tamil Nadu, 1991
#> 1095                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Godavari District of Andhra Pradesh, 1991
#> 1096                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Saran District of Bihar, 1991
#> 1097                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bidar District of Karnataka, 1991
#> 1098                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalaun District of Uttar Pradesh, 1991
#> 1099                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West District of Sikkim, 1991
#> 1100                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tinsukia District of Assam, 1991
#> 1101                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ahmadabad District of Gujarat, 1991
#> 1102                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hamirpur District of Himachal Pradesh, 1991
#> 1103                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bishnupur District of Manipur, 1991
#> 1104                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ujjain District of Madhya Pradesh, 1991
#> 1105                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Etah District of Uttar Pradesh, 1991
#> 1106                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pali District of Rajasthan, 1991
#> 1107                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chandigarh District of Chandigarh, 1991
#> 1108                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kokrajhar District of Assam, 1991
#> 1109                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kishanganj District of Bihar, 1991
#> 1110                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kaithal District of Haryana, 1991
#> 1111                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Latur District of Maharashtra, 1991
#> 1112                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhind District of Madhya Pradesh, 1991
#> 1113                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pithoragarh District of Uttar Pradesh, 1991
#> 1114                                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Rajasthan
#> 1115                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Murshidabad District of West Bengal, 1991
#> 1116                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Khammam District of Andhra Pradesh, 1991
#> 1117                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Munger District of Bihar, 1991
#> 1118                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kasaragod District of Kerala, 1991
#> 1119                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Koraput District of Orissa, 1991
#> 1120                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gorakhpur District of Uttar Pradesh, 1991
#> 1121                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pasumpon Thevar Thirumagan District of Tamil Nadu, 1991
#> 1122                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Krishna District of Andhra Pradesh, 1991
#> 1123                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Siwan District of Bihar, 1991
#> 1124                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bijapur District of Karnataka, 1991
#> 1125                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Zunheboto District of Nagaland, 1991
#> 1126                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Narsimhapur District of Madhya Pradesh, 1991
#> 1127                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Karbi Anglong District of Assam, 1991
#> 1128                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kheda District of Gujarat, 1991
#> 1129                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Una District of Himachal Pradesh, 1991
#> 1130                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Imphal District of Manipur, 1991
#> 1131                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shajapur District of Madhya Pradesh, 1991
#> 1132                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mainpuri District of Uttar Pradesh, 1991
#> 1133                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Barmer District of Rajasthan, 1991
#> 1134                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Dadra and Nagar Haveli
#> 1135                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bongaigaon District of Assam, 1991
#> 1136                                                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Goa
#> 1137                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Karnal District of Haryana, 1991
#> 1138                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Buldana District of Maharashtra, 1991
#> 1139                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gwalior District of Madhya Pradesh, 1991
#> 1140                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Almora District of Uttar Pradesh, 1991
#> 1141                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ganganagar District of Rajasthan, 1991
#> 1142                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nadia District of West Bengal, 1991
#> 1143                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nalgonda District of Andhra Pradesh, 1991
#> 1144                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhagalpur District of Bihar, 1991
#> 1145                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kannur District of Kerala, 1991
#> 1146                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ganjam District of Orissa, 1991
#> 1147                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sindhudurg District of Maharashtra, 1991
#> 1148                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Deoria District of Uttar Pradesh, 1991
#> 1149                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Madurai District of Tamil Nadu, 1991
#> 1150                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Guntur District of Andhra Pradesh, 1991
#> 1151                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gopalganj District of Bihar, 1991
#> 1152                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chikmagalur District of Karnataka, 1991
#> 1153                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Wokha District of Nagaland, 1991
#> 1154                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mandla District of Madhya Pradesh, 1991
#> 1155                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jhansi District of Uttar Pradesh, 1991
#> 1156                                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Tamil Nadu
#> 1157                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for North Cachar Hills District of Assam, 1991
#> 1158                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Panch Mahals District of Gujarat, 1991
#> 1159                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bilaspur District of Himachal Pradesh, 1991
#> 1160                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ukhrul District of Manipur, 1991
#> 1161                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dewas District of Madhya Pradesh, 1991
#> 1162                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Budaun District of Uttar Pradesh, 1991
#> 1163                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalor District of Rajasthan, 1991
#> 1164                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dadra and Nagar Haveli District of Dadra and Nagar Haveli, 1991
#> 1165                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Goalpara District of Assam, 1991
#> 1166                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for North Goa District of Goa, 1991
#> 1167                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Panipat District of Haryana, 1991
#> 1168                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Akola District of Maharashtra, 1991
#> 1169                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Datia District of Madhya Pradesh, 1991
#> 1170                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nainital District of Uttar Pradesh, 1991
#> 1171                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bikaner District of Rajasthan, 1991
#> 1172                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for North Twenty Four Parganas District of West Bengal, 1991
#> 1173                                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Arunachal Pradesh
#> 1174                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Godda District of Bihar, 1991
#> 1175                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Wayanad District of Kerala, 1991
#> 1176                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Puri District of Orissa, 1991
#> 1177                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nashik District of Maharashtra, 1991
#> 1178                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mau District of Uttar Pradesh, 1991
#> 1179                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kamarajar District of Tamil Nadu, 1991
#> 1180                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Prakasam District of Andhra Pradesh, 1991
#> 1181                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pashchim Champaran District of Bihar, 1991
#> 1182                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chitradurga District of Karnataka, 1991
#> 1183                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mokokchung District of Nagaland, 1991
#> 1184                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chhindwara District of Madhya Pradesh, 1991
#> 1185                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lalitpur District of Uttar Pradesh, 1991
#> 1186                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Madras District of Tamil Nadu, 1991
#> 1187                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Karimganj District of Assam, 1991
#> 1188                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Vadodara District of Gujarat, 1991
#> 1189                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mandi District of Himachal Pradesh, 1991
#> 1190                                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Meghalaya
#> 1191                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jhabua District of Madhya Pradesh, 1991
#> 1192                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bareilly District of Uttar Pradesh, 1991
#> 1193                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sirohi District of Rajasthan, 1991
#> 1194                                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Daman and Diu
#> 1195                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Barpeta District of Assam, 1991
#> 1196                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for South Goa District of Goa, 1991
#> 1197                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sonipat District of Haryana, 1991
#> 1198                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Amravati District of Maharashtra, 1991
#> 1199                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shivpuri District of Madhya Pradesh, 1991
#> 1200                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bijnor District of Uttar Pradesh, 1991
#> 1201                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Churu District of Rajasthan, 1991
#> 1202                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for South Twenty Four Parganas District of West Bengal, 1991
#> 1203                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tawang District of Arunachal Pradesh, 1991
#> 1204                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sahibganj District of Bihar, 1991
#> 1205                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kozhikode District of Kerala, 1991
#> 1206                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Punjab
#> 1207                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhule District of Maharashtra, 1991
#> 1208                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Azamgarh District of Uttar Pradesh, 1991
#> 1209                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ramanathapuram District of Tamil Nadu, 1991
#> 1210                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nellore District of Andhra Pradesh, 1991
#> 1211                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Purba Champaran District of Bihar, 1991
#> 1212                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dakshin Kannad District of Karnataka, 1991
#> 1213                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tuensang District of Nagaland, 1991
#> 1214                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Seoni District of Madhya Pradesh, 1991
#> 1215                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hamirpur District of Uttar Pradesh, 1991
#> 1216                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chengai Anna District of Tamil Nadu, 1991
#> 1217                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hailakandi District of Assam, 1991
#> 1218                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bharuch District of Gujarat, 1991
#> 1219                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kullu District of Himachal Pradesh, 1991
#> 1220                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jaintia Hills District of Meghalaya, 1991
#> 1221                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhar District of Madhya Pradesh, 1991
#> 1222                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pilibhit District of Uttar Pradesh, 1991
#> 1223                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhilwara District of Rajasthan, 1991
#> 1224                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Daman District of Daman and Diu, 1991
#> 1225                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nalbari District of Assam, 1991
#> 1226                                                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Gujarat
#> 1227                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rohtak District of Haryana, 1991
#> 1228                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Yavatmal District of Maharashtra, 1991
#> 1229                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Guna District of Madhya Pradesh, 1991
#> 1230                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Moradabad District of Uttar Pradesh, 1991
#> 1231                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jhunjhunun District of Rajasthan, 1991
#> 1232                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Calcutta District of West Bengal, 1991
#> 1233                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Kameng District of Arunachal Pradesh, 1991
#> 1234                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dumka District of Bihar, 1991
#> 1235                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Malappuram District of Kerala, 1991
#> 1236                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gurdaspur District of Punjab, 1991
#> 1237                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalgaon District of Maharashtra, 1991
#> 1238                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jaunpur District of Uttar Pradesh, 1991
#> 1239                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chidambaranar District of Tamil Nadu, 1991
#> 1240                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chittoor District of Andhra Pradesh, 1991
#> 1241                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sitamarhi District of Bihar, 1991
#> 1242                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dharwad District of Karnataka, 1991
#> 1243                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mon District of Nagaland, 1991
#> 1244                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Balaghat District of Madhya Pradesh, 1991
#> 1245                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Banda District of Uttar Pradesh, 1991
#> 1246                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Cachar District of Assam, 1991
#> 1247                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Surat District of Gujarat, 1991
#> 1248                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lahul and Spiti District of Himachal Pradesh, 1991
#> 1249                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Khasi Hills District of Meghalaya, 1991
#> 1250                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Indore District of Madhya Pradesh, 1991
#> 1251                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shahjahanpur District of Uttar Pradesh, 1991
#> 1252                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Udaipur District of Rajasthan, 1991
#> 1253                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Diu District of Daman and Diu, 1991
#> 1254                                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kamrup District of Assam, 1991
#> 1255                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jamnagar District of Gujarat, 1991
#> 1256                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Faridabad District of Haryana, 1991
#> 1257                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Wardha District of Maharashtra, 1991
#> 1258                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tikamgarh District of Madhya Pradesh, 1991
#> 1259                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rampur District of Uttar Pradesh, 1991
#> 1260                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Alwar District of Rajasthan, 1991
#> 1261                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Haora District of West Bengal, 1991
#> 1262                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Kameng District of Arunachal Pradesh, 1991
#> 1263                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Deoghar District of Bihar, 1991
#> 1264                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Palakkad District of Kerala, 1991
#> 1265                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kanniyakumari District of Tamil Nadu, 1991
#> 1266                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Amritsar District of Punjab, 1991
#> 1267                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ahmadnagar District of Maharashtra, 1991
#> 1268                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ballia District of Uttar Pradesh, 1991
#> 1269                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tirunelveli Kattabomman District of Tamil Nadu, 1991
#> 1270                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Cuddapah District of Andhra Pradesh, 1991
#> 1271                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Muzaffarpur District of Bihar, 1991
#> 1272                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gulbarga District of Karnataka, 1991
#> 1273                                                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Orissa
#> 1274                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Surguja District of Madhya Pradesh, 1991
#> 1275                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Fatehpur District of Uttar Pradesh, 1991
#> 1276                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dharmapuri District of Tamil Nadu, 1991
#> 1277                                                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Bihar
#> 1278                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Valsad District of Gujarat, 1991
#> 1279                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Shimla District of Himachal Pradesh, 1991
#> 1280                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Khasi Hills District of Meghalaya, 1991
#> 1281                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Nimar District of Madhya Pradesh, 1991
#> 1282                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kheri District of Uttar Pradesh, 1991
#> 1283                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chittaurgarh District of Rajasthan, 1991
#> 1284                                                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Delhi
#> 1285                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Darrang District of Assam, 1991
#> 1286                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rajkot District of Gujarat, 1991
#> 1287                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gurgaon District of Haryana, 1991
#> 1288                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nagpur District of Maharashtra, 1991
#> 1289                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chhatarpur District of Madhya Pradesh, 1991
#> 1290                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Saharanpur District of Uttar Pradesh, 1991
#> 1291                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bharatpur District of Rajasthan, 1991
#> 1292                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hugli District of West Bengal, 1991
#> 1293                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lower Subansiri District of Arunachal Pradesh, 1991
#> 1294                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dhanbad District of Bihar, 1991
#> 1295                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Thrissur District of Kerala, 1991
#> 1296                                                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Tripura
#> 1297                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Firozpur District of Punjab, 1991
#> 1298                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pune District of Maharashtra, 1991
#> 1299                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ghazipur District of Uttar Pradesh, 1991
#> 1300                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Anantapur District of Andhra Pradesh, 1991
#> 1301                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Vaishali District of Bihar, 1991
#> 1302                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hassan District of Karnataka, 1991
#> 1303                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sambalpur District of Orissa, 1991
#> 1304                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bilaspur District of Madhya Pradesh, 1991
#> 1305                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Pratapgarh District of Uttar Pradesh, 1991
#> 1306                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tiruvannamalai Sambuvarayar District of Tamil Nadu, 1991
#> 1307                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Patna District of Bihar, 1991
#> 1308                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Solan District of Himachal Pradesh, 1991
#> 1309                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Garo Hills District of Meghalaya, 1991
#> 1310                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for East Nimar District of Madhya Pradesh, 1991
#> 1311                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sitapur District of Uttar Pradesh, 1991
#> 1312                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dungarpur District of Rajasthan, 1991
#> 1313                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Delhi District of Delhi, 1991
#> 1314                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sonitpur District of Assam, 1991
#> 1315                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Surendranagar District of Gujarat, 1991
#> 1316                                                                                                             Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rewari District of Haryana, 1991
#> 1317                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhandara District of Maharashtra, 1991
#> 1318                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Panna District of Madhya Pradesh, 1991
#> 1319                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hardwar District of Uttar Pradesh, 1991
#> 1320                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Dholpur District of Rajasthan, 1991
#> 1321                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Medinipur District of West Bengal, 1991
#> 1322                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Upper Subansiri District of Arunachal Pradesh, 1991
#> 1323                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Giridih District of Bihar, 1991
#> 1324                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ernakulam District of Kerala, 1991
#> 1325                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Tripura District of Tripura, 1991
#> 1326                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ludhiana District of Punjab, 1991
#> 1327                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Satara District of Maharashtra, 1991
#> 1328                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Varanasi District of Uttar Pradesh, 1991
#> 1329                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kurnool District of Andhra Pradesh, 1991
#> 1330                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Begusarai District of Bihar, 1991
#> 1331                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kodagu District of Karnataka, 1991
#> 1332                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sundargarh District of Orissa, 1991
#> 1333                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Raigarh District of Madhya Pradesh, 1991
#> 1334                                                                                                    Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Allahabad District of Uttar Pradesh, 1991
#> 1335                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for South Arcot District of Tamil Nadu, 1991
#> 1336                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Nalanda District of Bihar, 1991
#> 1337                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sirmaur District of Himachal Pradesh, 1991
#> 1338                                                                                                  Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Garo Hills District of Meghalaya, 1991
#> 1339                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Rajgarh District of Madhya Pradesh, 1991
#> 1340                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hardoi District of Uttar Pradesh, 1991
#> 1341                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Banswara District of Rajasthan, 1991
#> 1342                                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - Lakshadweep
#> 1343                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Lakhimpur District of Assam, 1991
#> 1344                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhavnagar District of Gujarat, 1991
#> 1345                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mahendragarh District of Haryana, 1991
#> 1346                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Chandrapur District of Maharashtra, 1991
#> 1347                                                                                                       Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sagar District of Madhya Pradesh, 1991
#> 1348                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Muzaffarnagar District of Uttar Pradesh, 1991
#> 1349                                                                                                   Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sawai Madhopur District of Rajasthan, 1991
#> 1350                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bankura District of West Bengal, 1991
#> 1351                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for West Siang District of Arunachal Pradesh, 1991
#> 1352                                                                                                            Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hazaribag District of Bihar, 1991
#> 1353                                                                                                        Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Solapur District of Maharashtra, 1991
#> 1354                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Idukki District of Kerala, 1991
#> 1355                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for North Tripura District of Tripura, 1991
#> 1356                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalandhar District of Punjab, 1991
#> 1357                                                                                                         Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Sangli District of Maharashtra, 1991
#> 1358                                                                                                     Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mirzapur District of Uttar Pradesh, 1991
#> 1359                                                                                                 Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Mahbubnagar District of Andhra Pradesh, 1991
#> 1360                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Bhojpur District of Bihar, 1991
#> 1361                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Hoshiarpur District of Punjab, 1991
#> 1362                                                                                                                              Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex, 1991 - West Bengal
#> 1363                                                                                                           Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Aurangabad District of Bihar, 1991
#> 1364                                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Gumla District of Bihar, 1991
#> 1365                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for The Dangs District of Gujarat, 1991
#> 1366                                                                                                          Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Jalna District of Maharashtra, 1991
#> 1367                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Coimbatore District of Tamil Nadu, 1991
#> 1368                                                                                                Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Tehri Garhwal District of Uttar Pradesh, 1991
#> 1369                                                                                               Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Kanpur (Nagar) District of Uttar Pradesh, 1991
#> 1370                                                                                                      Main Workers other than Cultivators and Agricultural Labourers Classified by Industrial Category, Age and Sex for Ratnagiri District of Maharashtra, 1991
#> 1371                                                                                                              Bank-wise Achievement under Priority Sector, Agriculture and Weaker Section in State of Maharashtra from 2016 to 2018 (From: Ministry of Finance)
#> 1372                                                                                                     State/UT-wise Number of Suicides by Self Employed persons in Farming/Agriculture during 2014 and 2015 (From : Ministry of Agriculture and Farmers Welfare)
#> 1373                                                      State/UT-wise Details of Amount of Premium Charged from Farmers/Gross Premium and Claim amount paid to Farmers under PMFBY during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1374                                                                         State/UT-wise Statement showing Districts covered under Mission for Integrated Development of Horticulture (MIDH) As on 06.04.2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 1375                                                                                         Marketing Season-wise number of Farmers Benefited to MSP under Procurement of Paddy and Wheat as on 03 July, 2019 (From : Ministry of Agriculture and Farmers Welfare)
#> 1376                                                     Details of Farmers Benefited for Procurement of Pulses at MSP under Price Support Scheme (PSS)/Price Stabilization Fund (PSF) from 2014-15 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1377                                                                                    Details of Cost, MSP and percentage Return weighted average cost of production for Kharif Crop from 2017-18 to 2019-20 (From : Ministry of Agriculture and Farmers Welfare)
#> 1378                                                                                                                                  Year-wise cultivated land/area under cultivation from 2012-13 to 2014-15 (From : Ministry of Agriculture and Farmers Welfare)
#> 1379                                                                                                         Availability of Certified/Quality Seeds including Native Seeds in Country from 2016-17 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1380                                                                                            Year-wise Details of procurement centres for procurement of Pulses, Oilseeds and Copra from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1381                              State/UT-wise Average Monthly Income (Rs.) per Agricultural Household as per the results of the SAS of Agricultural Households, NSS 70th Round during July 2012 to June 2013 (From : Ministry of Agriculture and Farmers Welfare)
#> 1382                                                                                                                                  State/UT-wise Details of Procurement of Wheat during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1383                                                  State-wise Production of cotton as per Cotton Advisory Board (CAB) and its' Procurement under Minimum Support Price (MSP) by CCI from 2014-15 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1384          Allocation of Funds (Central Share) to the state of Jammu & Kashmir to increase production and productivity of agricultural produce under Centrally Sponsored Schemes during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1385                                                                                                                Cost of production, MSP and return over cost of major Kharif and Rabi crops during 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1386                 State/UT-wise Details of percentage of Expenditure on Agriculture and allied Activities under the Mahatma Gandhi National Rural Employment Guarantee Scheme (MGNREGS) during the Financial Year 2017-18 (From : Ministry of Rural Development)
#> 1387                                                                                       District-wise cold storages assisted by Gujarat State Horticulture Mission under NHM (MIDH) from 2015-16 to 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1388                                                                                All India Average Monthly Wholesale Price and Minimum Support Price (MSP) of major Kharif crops during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1389                                                                                                    Details of the premium collected and payout made under PMFBY and RWBCIS during 2016-17 and Kharif 2017 (From : Ministry of Agriculture and Farmers Welfare)
#> 1390                                                                                                                                        Cost and purchase price (MSP) of pulses during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1391                                                                                                                              Details of MSP, Cost and percent return over Cost during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1392                                                                                  All India Average Monthly Wholesale Price and Minimum Support Price (MSP) of major Rabi crops during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1393                                                                                                                Details of Minimum Support Prices (MSP) of pulses, including bonus from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1394                                                                                                                                   State/UT-wise Production of Vegetables Crops during 2016-17 and 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1395                                                                                                                                                        State/UT-wise Net Un-Irrigated Area during 2014-15 (From : Ministry of Agriculture and Farmers Welfare)
#> 1396                                                                                                                                    State/UT-wise farmers benefitted from m-Kisan Portal from 2014 to 2018 (From : Ministry of Agriculture and Farmers Welfare)
#> 1397                                                                                                                                               State/UT-wise milk production in the country during 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1398                                                                                                                                  Absolute increase in Minimum Support Price (MSP) from 2008-09 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1399                                                                                                                                         Country wise Import figures of Asafoetida from 2015-16 to 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1400                                                                                                                                     MSP, cost of production and wholesale prices of pulses during 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1401          Scheme-wise Funds Allocated and Released under various Schemes Implemented by Department of Agriculture, Cooperation and Farmers Welfare for the state of Andhra Pradesh from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1402                                                                                                                                                               Cost of cultivation of wheat during 2016-17 (From : Ministry of Agriculture and Farmers Welfare)
#> 1403                                                                                                                                                               Cost of cultivation of Paddy during 2015-16 (From : Ministry of Agriculture and Farmers Welfare)
#> 1404                                                Scheme-wise Details of Funds Allocated in Tamil Nadu for the development of Agriculture and allied Sector under various schemes during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1405                                                                            State/UT-wise Agriculture Credit Disbursement Data as reported by National Bank for Agriculture and Rural Development (NABARD) from 2015-16 to 2017-18 (From : Ministry of Finance)
#> 1406                                                                                    State/UT-wise number of beneficiaries benefitted under National Scheme of Welfare of Fishermen from 2014-15 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1407                                                                                                                     State/UT-wise farmers benefitted from Soil Health Card Scheme from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1408                                                                                                                                 The Minimum Support Prices (MSPs) of rabi crops during 2014-15 and 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1409                                                                                                State-wise Central Assistance Approved under National Disaster Response Fund (NDRF) from 2012-13 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1410                                                                                                                       Business Statistics of Crop Insurance Schemes in Maharashtra from 2013-14 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1411                                                                                                    Agriculture related projects assisted by Ministry of Food Processing Industries during 11th & 12th Plan (From: Ministry of Agriculture and Farmers Welfare)
#> 1412                                                                                                                                          State/UT-wise Suicides by Farmers and Labourers from 2012 to 2015 (From: Ministry of Agriculture and Farmers Welfare)
#> 1413                                                                                       State-wise Details of Procurement of Pulses Made by FCI, NAFED and SFAC at MSP under PSF during KHARIF 2016 and 2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1414                                                               State/UT-wise Details of Average Premium as Against Sum Insured Charged by Insurance Companies under (PMFBY) & (RWBCIS) during 2016 and 2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1415                                                                                                                                            Monthly Average Price of Coconut in Kerala Markets during 2018 (From : Ministry of Agriculture and Farmers Welfare)
#> 1416                                               Commodity-wise Cost, Minimum Support Price (MSP) and Percent Return Over Cost under Pradhan Mantri Krishi Sinchai Yojana (PMKSY) during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1417                                                                                  Allocation, Release and Expenditure under Crop Diversification Programme (CDP) during 2013-14 to 2016-17 as on 28-02-2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1418                                                                                                    Year-wise Details of Funds Released under National Food Security Mission (NFSM) from 2007-08 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1419                                                                State-wise Financial Assistance Provided by the Government to under National E-Governance Plan Agriculture (NEGP-A) from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1420                                                   State-wise Financial Assistance Provided by the Government to under Sub Mission on Agricultural Mechanization under NMAET (SMAM) from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1421                                                                                                                                     State-wise Details of Classification of Cultivators as per Census 2011 (From: Ministry of Agriculture and Farmers Welfare)
#> 1422                                                                                            State and Scheme-wise details of Funds Released under the different Crop Development Programmes during 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1423                                                                                                                               State/ UT-wise Area Covered under Micro Irrigation during 2014-15 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1424                                                                                                                      State/ UT-wise Marine Fish Production Decline in sea catch during 2013-14 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare )
#> 1425                                                                                                                                                Month-wise Export of Top 5 Agricultural Commodities from 2013 to 2017 (From: Ministry of Commerce and Industry)
#> 1426                                                                                                  Statement Indicating Share of Import of Agriculture and Allied Products of the Total Imports from 2014-15 to 2017-18 (From : Ministry of Commerce & Industry)
#> 1427                                                                                                                                  Commodity-wise Import of Agricultural Commodities from Apr-Mar 2014 to Apr-Mar 2017 (From: Ministry of Commerce and Industry)
#> 1428                                                                                                                                  Commodity-wise Export of Agricultural Commodities from Apr-Mar 2014 to Apr-Mar 2017 (From: Ministry of Commerce and Industry)
#> 1429                                                                                                                                      State/Sector-wise Number of Projects under RKVY  during 2015 and 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 1430                                                                                                                                       Crops-wise Area Coverage under Rabi crops during 2016-17 and 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1431                                                                                                                      Office-wise Vacancies in Ministry of Agriculture and Farmers Welfare As on 06.04.2018 (From: Ministry of Agriculture and Farmers Welfare)
#> 1432                                                                                               Crop-wise Increase/Decrease in All-India Weighted Average Cost of Production (A2+FL) from 2013-14 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1433                                                                                                        State/UT-wise Details of Fund Released under Extension Reforms(ATMA) Scheme from 2015-16 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1434                                                                                                   Crop-wise Increase/Decrease in Minimum Support Prices (MSPs) and Wholesale Price from 2013-14 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1435                                                                                     Category-wise Export of Organic Products under National Programme of Organic Production (NPOP) from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1436                                                          Crop-wise Difference Between Market Price and Cost of Production and Minimum Support Prices (MSPs) and Cost of production from 2014-15 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1437                                                                                     State/UT-wise Statement showing Number of Farmers benefitted under Minimum Support Price (MSP) from 2015-16 to 2018-19 (From: Ministry of Agriculture and Farmers Welfare)
#> 1438                                                                                                                                                  Commodity-wise Export of Agricultural Commodities from 2014 to 2017 (From: Ministry of Commerce and Industry)
#> 1439                                                                                                                                                  Commodity-wise Import of Agricultural Commodities from 2014 to 2017 (From: Ministry of Commerce and Industry)
#> 1440                                                                                   State-wise Financial Assistance Provided by the Government to under Soil Health Management (SHM) from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1441                                                                           State/UT-wise Details of Agricultural Land, Net Area Sown and Net Irrigated Area during 2014 to 2015 (From: Ministry of Water Resources, River Development and Ganga Rejuvenation\n)
#> 1442                                                                                           State/UT-wise Number of Operational Holdings, Operated Area, Net Sown Area and Net Irrigated Area of Agriculture Census 2010-11 (From : Ministry of Water Resources)
#> 1443                                                                                                                                    State/ UT wise Estimates of Area of Sugarcane during 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1444                                                                                                               State/UT-wise Details of Farmers Covered and Claims under PMFBY during 2016-17 and 2017-18  (From : Ministry of Agriculture and Farmers Welfare)
#> 1445                                                                                                                 State-wise details of Seeds Reserved in the National Seed Reserve from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1446                                                                 Year-wise Amount Sanctioned and Released for Expenditure for the National Animal Disease Reporting System (NADRS) from 2015-16 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1447                                                                                           All-India Weighted Average Projected Cost of Production of Mandated Kharif & Rabi Crops from 2013-14 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1448                                                                                                               Year-wise Fund Allocated and Released under Soil Health Card Scheme from 2014-15 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1449                                                                                                                                      State-wise Area Coverage of Kharif Season during 2017-18 and 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1450                                                                                                                                                  State-wise Return Over Cost of Production during 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1451                                                                                Number of clusters approved for implementation under Paramparagat Krishi Vikas Yojana(PKVY) during 2015-16 (till 5.11.2015) (From: Ministry of Agriculture and Farmers Welfare)
#> 1452                                                                                                                                                    Wheat and Rice Projected Demand from 2015-16 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1453                                                                                                                         State-wise Funds under State Disaster Response Fund (SDRF) from 2012-13 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1454                                                                                                    State wise funds allocated released under Pradhan Mantri Krishi Sinchayee Yojana (PMKSY) during 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1455                                                                                                             State/ UT-wise Area coverage under Integrated Farming System (in ha) during 2014-15 to 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1456                      State/ UT-wise Tentative Coverage of Farmers under Pradhan Mantri Fasal Bima Yojana (PMFBY)/ Restructured Weather Based Crop Insurance Scheme (RWBCIS) during Kharif and Rabi 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1457                                                                                                                                                                Agriculture Loans Disbursed by SCBs in 2016-17 (till December 2016) (From: Ministry of Finance)
#> 1458                                                                      State/ UT-wise Agriculture Loan outstanding data for all agencies (Commercial, Cooperative and Regional Rural Banks) as on 31-03-2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1459                                                                   State/ UT-wise details of Budget Allocation, Releases and Utilization under Organic Farming in North-East Region from 2015-16 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1460                                         District-wise Cold Storage Projects Sanctioned in Maharashtra under Mission for Integrated Development of Horticulture (MIDH)(NHM & NHB)from 2014-15 to 2016-2017  (From: Ministry of Agriculture and Farmers Welfare)
#> 1461                                                                                                State/ UT-wise Release of Funds under National Livestock Mission during 2014-15 to 2017-18 as on 07-08-2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1462                                                                                Expenditure under various schemes of the Department of Agriculture, Cooperation and Farmers Welfare from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1463                                                           State/ UT-wise Details of Funds Allocated, Released and Expenditure under Paramparagat Krishi Vikas Yojana (PKVY) scheme from 2015-16 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1464               Details of Funds allocated and released to the State Governments under Schemes being implemented by the Department of Agriculture, Cooperation and Farmers Welfare during 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1465                                                                                                  State/ UT-wise Number of Accounts and Loan Amount outstanding in respect of all Agencies as on 31-03-2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1466                  Details of Farmer deriving Benefits and Amount allocated by Uttar Pradesh Government under Soil Health Card Scheme for Bundelkhand Region (in reply to Unstarred Question for 04-08-2017) (From: Ministry of Agriculture and Farmers Welfare)
#> 1467                                                                                                                               State/ UT-wise Operated Area (in hectare) as per Agriculture Census during 2010-11 (Ministry of Agriculture and Farmers Welfare)
#> 1468                                                                                            Year-wise details of premium and claims in Madhya Pradesh and Rajasthan under PMFBY during 2016-17 and 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1469                                                    Statement Indicating Share of Import of Agriculture and Allied Products Including Vegetables, Oil, Pulses, Freash Fruits, Spices and Sugar from 2014-15 to 2017-18 (From : Ministry of Commerce & Industry)
#> 1470                                                   State/UT-wise Details of Farmer Applicats Insured, Premium Collected and Claims Settled under Pradhan Mantri Fasal Bima Yojana (PMFBY) for Rabi 2017-18 (From : Ministry of Agriculture and Farmers Welfare)
#> 1471                                                    State/UT-wise Details of Area under Organic Cultivation under the Schemes Paramparagat Krishi Vikas Yojana (PKVY), MOVCDNER and NPOP from 2014 to 2018 (From : Ministry of Agriculture and Farmers Welfare)
#> 1472                                                                 State/UT-wise Average Monthly Income per Agricultural Household as per Situation Assessment Survey of Agricultural Households during 2013 (From : Ministry of Agriculture and Farmers Welfare)
#> 1473                                                                                                                                                     State/UT-wise Milk Production from 2013-14 to 2016-17 (From : Ministry of Agriculture and Farmers Welfare)
#> 1474                                                                                                               State/UT-wise number of suicides committed by persons engaged in farming sector during 2016 (From : Ministry of Agriculture and Farmers Welfare)
#> 1475                                                                                                                                  State/UT-wise Bio-Fertilizer Production in India from 2011-12 to 2016-17 (From : Ministry of Agriculture and Farmers Welfare)
#> 1476                                                                           State/UT-wise Commercial production units of organic inputs under National Project on Organic Farming progress till August 2017 (From : Ministry of Agriculture and Farmers Welfare)
#> 1477                                                     State/UT-wise Commercial Production units of Organic inputs under National Project on Organic Farming Progress till August 2017 (According to NABARD) (From : Ministry of Agriculture and Farmers Welfare)
#> 1478                                                                                                                            Number Total Holdings and Farmers Covered under Crop Insurance Schemes during 2015-16 (Ministry of Agriculture and Farmers Welfare)
#> 1479                                                                                                                                   State-wise Details of Net Irrigated and Un-Irrigated Area for the year 2013-14 (Ministry of Agriculture and Farmers Welfare)
#> 1480                                                                                                         Assistance Approved from National Disaster Response Fund (NDRF) for Drought from 2013-14 to 2015-16 (From:Ministry of Agriculture and Farmers Welfare)
#> 1481                                                                                                                                         Total Production of Major Crops/Commodities from 2009-10 to 2015-16 (From:Ministry of Agriculture and Farmers Welfare)
#> 1482                          State Wise Performance and Status of the Major Activities of Existing Krishi Vigyan Kendras (KVKS) in the Country (Including those in andhra Pradesh and Telangana) during 2015-16 (From:Ministry of Agriculture and Farmers Welfare)
#> 1483                                 State Wise Number of Units and Subsidy Under Capital Investment Subsidy Scheme for Fruit/Vegetable Compost Unit (according to NABARD Communication) from 2013-14 to 2015-16 (From:Ministry of Agriculture and Farmers Welfare)
#> 1484                                                                                                                                                      State/UT-wise Suicides by Farmers During 2015 and 2016 (From:Ministry of Agriculture and Farmers Welfare)
#> 1485            State/UT-wise Funds Released by the National Horticulture Board (NHB) under Development of Commercial Horticulture Through Production and Post Harvest Management Scheme from 2013-14 to 2016-17 (From:Ministry of Agriculture and Farmers Welfare)
#> 1486                                                                                                                              State/UT-wise 1st Advance Estimates of Production of Foodgrains during 2016-17 (From:Ministry of Agriculture and Farmers Welfare)
#> 1487                                                                                                         State-wise Number of Soil Testing Laboratories under Soil Health Management Scheme during 2015-16 (From : Ministry of Agriculture and Farmers Welfare)
#> 1488                                                         State/ UT-wise Details of Cropped Area Insured and sum Insured under Different Crop Insurance Schemes since Kharif and Rabi season 2014 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1489                                                                                                                    State/ UT-wise Release of Funds under Micro Irrigation during 2016-17 (upto 14-03-2017) (From: Ministry of Agriculture and Farmers Welfare)
#> 1490                                                                                                                                                      Agriculture Loans Disbursed by Scheduled Commercial Banks during 2014 to 2016 (From: Ministry of Finance)
#> 1491                                                                                                                                   State/UT-wise Various Organic Manures Produced/ Available during 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1492                                                                      State-wise Details of Procurement of Rice at the Minimum Support Price (MSP) under Price Support Scheme (PSS) from 2014-15 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1493                                                                       State/ UT and NGO-wise details of Financial Assistance Provided for Krishi Vigyan Kendra (KVK) Activities during 2014-15 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare )
#> 1494                                                                                                                                       State/Sector-wise Number of Projects under RKVY during 2015 and 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 1495                                                                                               Commodity-wise Number of Purchase Centers Operated by NAFED for Procurement of Oilseeds during 2016 and 2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1496                       State/UT-wise Details of Funds Released by Department of Animal Husbandry, Dairying and Fisheries (DADF) under Various Components of the Scheme to Fishermen from 2014-15 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1497                                                                                                                                             Programme-wise Agricultural Development for Bihar during 2015 (From : Ministry of Agriculture and Farmers Welfare)
#> 1498                                                                                            Year and Crop-wise Increase in All India Weighted Average Cost of Production of Kharif Crops from 2014 to 2018 (From : Ministry of Agriculture and Farmers Welfare)
#> 1499                                                                   State/UT-wise Details of Mini Soil Testing Labs Set-up in Krishi Vigyan Kendras (KVKs) (in reply to Starred question on 03 August 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1500               State/UT-wise Details of Number of Soil Health Cards Distributed and Number of Farmers Benefited with advisories on Soil Health Management (in reply to Starred question on 03 August 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1501                                                                           Details of the Drought-Affected District (including Mandals) in Andhra Pradesh (in reply to Unstarred Question on 27 July 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1502                                           State/UT-wise List of Wholesale Regulated Markets Integrated with National Agriculture Market (e-NAM) Platform (in reply to Unstarred Question on 27 July 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1503                                                  State/UT-wise Details of Farmer Applicants Insured, Premium Collected and Claims Settled under Pradhan Mantri Fasal Bima Yojana (PMFBY) for Rabi 2016-17 (From : Ministry of Agriculture and Farmers Welfare)
#> 1504                                       State-wise Soil Testing Laboratories (STLs) and its Analysing Capacity Sanctioned under the Soil Health Management (in reply to Unstarred question on 27 July 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1505                                                                                                   State/UT-wise Number of Soil Samples Tested under Soil Health Card (SHC) Scheme from 2015-17 to 2017-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1506                                                       State-wise Details of Farmer Applicats Insured, Premium Collected and Claims Settled under Pradhan Mantri Fasal Bima Yojana (PMFBY) for Kharif 2017 (From : Ministry of Agriculture and Farmers Welfare)
#> 1507                                                                                    State/UT-wise Number of Soil Health Cards Distributed to Farmers under Soil Health Card Scheme from 2015-17 to 2017-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1508                                                                                                                             State/UT-wise Agriculture Credit Disbursement Data during 2015-16 and 2016-17 (From : Ministry of Agriculture and Farmers Welfare)
#> 1509                                                                                                        State-wise Damage of Major Crops Area due to Rain (in reply to Unstarred question on 27 July 2018) (From : Ministry of Agriculture and Farmers Welfare)
#> 1510                                                                                                                Details of Sanction Accorded under Market Intervention Price (MIS) from 2010-11 to 2018-19 (From : Ministry of Agriculture and Farmers Welfare)
#> 1511                                                                                                                                            Item-wise India's Import of Agricultural Products from 2014-15 to 2016-17 (From: Ministry of Commerce and Industry)
#> 1512                                                                               State/UT-wise Number of Extension Programmes Organized by Krishi Vigyan Kendras (KVKs) and Farmers Benefitted during 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1513                                                                                       Scheme/Mission under Umbrella Scheme Green Revolution - Krishonnati Yojana as Central Share from 2017-18 to 2019-20 (From : Ministry of Agriculture and Farmers Welfare)
#> 1514                                                                                                State/UT-wise Agriculture Credit Target as reported by National Bank for Agriculture and Rural Development (NABARD) during 2018-19 (From : Ministry of Finance)
#> 1515                                                                                                                                   Modified National Agricultural Insurance Scheme-Kharif Season (Cuddalore, Namakkal and Sivagangai Districts Only) : SHB 2017
#> 1516                                                                                                                                                                Procurement and Distribution of Breeder Seeds from Tamilnadu Agricultural University : SHB 2017
#> 1517                                                                                                                                                   Modified National Agricultural Insurance Scheme- Rabi (Cuddalore,Nammakal,Sivakangai Districts only) 2013-14
#> 1518                                                                                                                                                                                                Modified National Agricultural Insurance Scheme- Kharif 2014-15
#> 1519                                                                                                                                                                                   Index Numbers of Agricultural Production and Productivity 2015-16 : SHB 2017
#> 1520                                                                                                       State/UT-wise Number of Participants in Farmers Oriented Extension Activities by ATMA during 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1521                                                                       State/UT-wise Funds Allocated, Release and Expenditure under Paramparagat Krishi Vikas Yojana (PKVY) Schemes from 2015-16 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1522                                                                                                                                        State/UT-wise Distribution of Cold Storages from 2014-15 to 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1523                                                                     Region-wise Number of Purchase Centers Operated for Wheat Procurement by FCI and State Govt/Agencies during Rabi Market Season 2017-18 (From: Ministry of Agriculture and Farmers Welfare)
#> 1524                                       State/UT & Region-wise Agricultural Credit/Loans Disbursement to the Farmers by commercial banks, regional rural banks and cooperative banks from 2014-15 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1525                                                                                                                                   Agricultural Inputs handled by the Tamil Nadu Co-operative Marketing Federation and Other Marketing Institutions 2013 - 2015
#> 1526                                                                                                                                                                                                          National Agricultural Insurance Scheme - Rabi 2013-14
#> 1527                                                                                                                                  Statement of amount of funds released to the states under PKVY during 2015-16(From:Ministry of Agriculture & Farmers Welfare)
#> 1528                                                                                                                                         Pilot Mandis in National Agriculture Market (NAM) as on 06/05/2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 1529                                                                                                                                                      State-wise Production of Rice from 2010-11 to 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#> 1530                                                                                                                                                                                                            Annual Wholesale Price Index of Agriculture Produce
#> 1531                                                                       State-wise details of cropped areas affected due to cyclone/flash flood/floods/landslides/cloudburst etc. during 2014-15 and 2015-16(From : Ministry of Agriculture and Farmers Welfare)
#> 1532                                                             State-wise details of cropped areas affected due to cyclonic storms/ flash flood/floods/landslides/ cloudburst and drought etc. during 2015-16 (From: Ministry of Agriculture and Farmers Welfare)
#> 1533                                                                                                                                           State-wise status of Soil Health Card (SHC) Scheme as on 15.11.2016 (From:Ministry of Agriculture & Farmers Welfare)
#> 1534                                                                                                                                                                                                                                                           <NA>
#> 1535                                                                                                                                                                                                                                                           <NA>
#> 1536                                                                                                                                                                                                                                                           <NA>
#> 1537                                                                                                                                                     Average Daily Wage Rate in Rural in Agricultural - Major Category of Men, Women and Children till Feb 2014
#> 1538                                                                                                                                      Position of the outbreaks of avian influenza in India during 2013 to 2016(From:Ministry of Agriculture & Farmers Welfare)
#> 1539                                                                                                                                                                                                                                                           <NA>
#> 1540                                                                                                                               State-wise Average Daily Wage Rate in Rural in Agricultural: Animal Husbandry includes Poultry, Dairy and Herdsman till Feb-2014
#> 1541                                                                                                                                                              Import tariffs on edible oils during 2007 to 2016(From:Ministry of Agriculture & Farmers Welfare)
#> 1542                                                                                                   State/UT-wise Farming Area (including in conversion) under Organic Certification from 2011-12 to 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1543                                                                                                State-wise details of loanee and non-loanee farmers covered under PMFBY and WBCIS (combined) during kharif 2016(From:Ministry of Agriculture & Farmers Welfare)
#> 1544                          Assistance sought by the State Government and assistance approved from the National Disaster Response Fund (NDRF) for drought, hailstorm, cold wave/frost from 2012-13 to 2014-15 (From: Ministry of Agriculture and Farmers Welfare)
#> 1545                              State-wise details of farmers covered under Pradhan Mantri Fasal Bima Yojana (PMFBY) and Restructured Weather Based Crop Insurance Scheme (RWBCIS) (combined) during Kharif 2016 (From:Ministry of Agriculture & Farmers Welfare)
#> 1546                                                                                                                             State/UT-wise Production of Organic Fertilizer in India from 2012-13 to 2015-2016 (From:Ministry of Agriculture & Farmers Welfare)
#> 1547                                                                                                                                                                                                                                                           <NA>
#> 1548                                                                                       State-wise number of soil samples collected, tested and Soil Health Cards issued under Soil Health Card Scheme in 2015 (From :Ministry of Agriculture & Farmers Welfare)
#> 1549                                                                                                                                State-wise Average Daily Wage Rate in Rural in Agricultural: General Agricultural icludes Watering and Irrigation till Feb 2014
#> 1550                                                                                                                                                                                                                                                           <NA>
#> 1551                                                                                              Status and Implementation of Support Extended from Prime Minister Fasal Bima Yojana PMFBY during  Kharif 2016 (From: Ministry of Agriculture and Farmers Welfare)
#> 1552                                                                                           Status and Implementation of Support Extended from Prime Minister Fasal Bima Yojana (PMFBY) during  Rabi 2016-17 (From: Ministry of Agriculture and Farmers Welfare)
#> 1553                                                                                                       Prime Activities and Village level Agricultural Co-operative Credit Societies and Land Development Banks Co-operative Societies/ Urban Banks 2013 - 2015
#> 1554                                                                                                                                                  Modified National Agricultural Insurance Scheme-Kharif (Cuddalore,Nammakal,Sivakangai Districts only) 2014-15
#> 1555                                                                                                                            State/ UT-wise Number of Operational Holders as per Agriculture Census during 2010-11 (Ministry of Agriculture and Farmers Welfare)
#> 1556                         State/ UT-wise Percentage of Farmers Covered under Crop Insurance Schemes to the Number of households and Farmers Benefitted under National Agricultural Insurance Scheme during 2015-16 (Ministry of Agriculture and Farmers Welfare)
#> 1557                                                                                                                                                                                                Total budget and expenditure of State Agricultural Universities
#> 1558                                                                                                                                      Sector wise FDI inflows in agriculture from 2013-14 to 2016-17 (Apr- Sep)(From:Ministry of Agriculture & Farmers Welfare)
#> 1559                                                                                                                      State-wise number of Soil Health Cards issued during 2015-16 to 2016-17 as on 15.11.2016 (From:Ministry of Agriculture & Farmers Welfare)
#> 1560                                                                                                                                     Total FDI inflows in agriculture sector from 2013-14 to 2016-17 (Apr- Sep)(From:Ministry of Agriculture & Farmers Welfare)
#> 1561                                                                                                                                                                                                                                                           <NA>
#> 1562                                                                                                                                                                                                                    Karnataka Agricultural Market Data for 2012
#> 1563                                                                                                                                                                                                                       Value of Output from Agriculture 2011-15
#> 1564                                                                                                                                                                                                        National Agricultural Insurance Scheme - Kharif 2013-14
#> 1565                                                                                                                                   State-wise details of districts declared drought affected during 2015-16(From : Ministry of Agriculture and Farmers Welfare)
#> 1566                                    State/UT wise details of back ended capital subsidy disbursed to establish dairy units through NABARD under Dairy Entrepreneurship Development Scheme during 2012 to 2016 (From :Ministry of Agriculture & Farmers Welfare)
#> 1567                                                                                                  Sate/Ut-wise Number of districts affected by deficit and scanty rainfall during South-West Monsoon - 2015 (From: Ministry of Agriculture and Farmers Welfare)
#> 1568                                                                                      Details of Claims Paid and Outstanding under various Crop Insurance Schemes from 2014-15 to 2016-17  as on 19-07-2017 (From: Ministry of Agriculture and Farmers Welfare)
#> 1569                                                                                                                                                                                                                                                           <NA>
#>      org_type
#> 1     Central
#> 2     Central
#> 3     Central
#> 4     Central
#> 5     Central
#> 6     Central
#> 7     Central
#> 8     Central
#> 9     Central
#> 10    Central
#> 11    Central
#> 12    Central
#> 13    Central
#> 14    Central
#> 15    Central
#> 16    Central
#> 17    Central
#> 18    Central
#> 19    Central
#> 20    Central
#> 21    Central
#> 22    Central
#> 23    Central
#> 24    Central
#> 25    Central
#> 26    Central
#> 27    Central
#> 28    Central
#> 29    Central
#> 30    Central
#> 31    Central
#> 32    Central
#> 33    Central
#> 34    Central
#> 35    Central
#> 36    Central
#> 37    Central
#> 38    Central
#> 39    Central
#> 40    Central
#> 41    Central
#> 42    Central
#> 43    Central
#> 44    Central
#> 45    Central
#> 46    Central
#> 47    Central
#> 48    Central
#> 49    Central
#> 50    Central
#> 51    Central
#> 52    Central
#> 53    Central
#> 54    Central
#> 55    Central
#> 56    Central
#> 57    Central
#> 58    Central
#> 59    Central
#> 60    Central
#> 61    Central
#> 62    Central
#> 63    Central
#> 64    Central
#> 65    Central
#> 66    Central
#> 67    Central
#> 68    Central
#> 69    Central
#> 70    Central
#> 71    Central
#> 72    Central
#> 73    Central
#> 74    Central
#> 75    Central
#> 76    Central
#> 77    Central
#> 78    Central
#> 79    Central
#> 80    Central
#> 81    Central
#> 82    Central
#> 83    Central
#> 84    Central
#> 85    Central
#> 86    Central
#> 87    Central
#> 88    Central
#> 89    Central
#> 90    Central
#> 91    Central
#> 92    Central
#> 93    Central
#> 94    Central
#> 95    Central
#> 96    Central
#> 97    Central
#> 98    Central
#> 99    Central
#> 100   Central
#> 101   Central
#> 102   Central
#> 103   Central
#> 104   Central
#> 105   Central
#> 106   Central
#> 107   Central
#> 108   Central
#> 109   Central
#> 110   Central
#> 111   Central
#> 112   Central
#> 113   Central
#> 114   Central
#> 115   Central
#> 116   Central
#> 117   Central
#> 118   Central
#> 119   Central
#> 120   Central
#> 121   Central
#> 122   Central
#> 123   Central
#> 124   Central
#> 125   Central
#> 126   Central
#> 127   Central
#> 128   Central
#> 129   Central
#> 130   Central
#> 131   Central
#> 132   Central
#> 133   Central
#> 134   Central
#> 135   Central
#> 136   Central
#> 137   Central
#> 138   Central
#> 139   Central
#> 140   Central
#> 141   Central
#> 142   Central
#> 143   Central
#> 144   Central
#> 145   Central
#> 146   Central
#> 147   Central
#> 148   Central
#> 149   Central
#> 150   Central
#> 151   Central
#> 152   Central
#> 153   Central
#> 154   Central
#> 155   Central
#> 156   Central
#> 157   Central
#> 158   Central
#> 159   Central
#> 160   Central
#> 161   Central
#> 162   Central
#> 163   Central
#> 164   Central
#> 165   Central
#> 166   Central
#> 167   Central
#> 168   Central
#> 169   Central
#> 170   Central
#> 171   Central
#> 172   Central
#> 173   Central
#> 174   Central
#> 175   Central
#> 176   Central
#> 177   Central
#> 178   Central
#> 179   Central
#> 180   Central
#> 181   Central
#> 182   Central
#> 183   Central
#> 184   Central
#> 185   Central
#> 186   Central
#> 187   Central
#> 188   Central
#> 189   Central
#> 190   Central
#> 191   Central
#> 192   Central
#> 193   Central
#> 194   Central
#> 195   Central
#> 196   Central
#> 197   Central
#> 198   Central
#> 199   Central
#> 200   Central
#> 201   Central
#> 202   Central
#> 203   Central
#> 204   Central
#> 205   Central
#> 206   Central
#> 207   Central
#> 208   Central
#> 209   Central
#> 210   Central
#> 211   Central
#> 212   Central
#> 213   Central
#> 214   Central
#> 215   Central
#> 216   Central
#> 217   Central
#> 218   Central
#> 219   Central
#> 220   Central
#> 221   Central
#> 222   Central
#> 223   Central
#> 224   Central
#> 225   Central
#> 226   Central
#> 227   Central
#> 228   Central
#> 229   Central
#> 230   Central
#> 231   Central
#> 232   Central
#> 233   Central
#> 234   Central
#> 235   Central
#> 236   Central
#> 237   Central
#> 238   Central
#> 239   Central
#> 240   Central
#> 241   Central
#> 242   Central
#> 243   Central
#> 244   Central
#> 245   Central
#> 246   Central
#> 247   Central
#> 248   Central
#> 249   Central
#> 250   Central
#> 251   Central
#> 252   Central
#> 253   Central
#> 254   Central
#> 255   Central
#> 256   Central
#> 257   Central
#> 258   Central
#> 259   Central
#> 260   Central
#> 261   Central
#> 262   Central
#> 263   Central
#> 264   Central
#> 265   Central
#> 266   Central
#> 267   Central
#> 268   Central
#> 269   Central
#> 270   Central
#> 271   Central
#> 272   Central
#> 273   Central
#> 274   Central
#> 275   Central
#> 276   Central
#> 277   Central
#> 278   Central
#> 279   Central
#> 280   Central
#> 281   Central
#> 282   Central
#> 283   Central
#> 284   Central
#> 285   Central
#> 286   Central
#> 287   Central
#> 288   Central
#> 289   Central
#> 290   Central
#> 291   Central
#> 292   Central
#> 293   Central
#> 294   Central
#> 295   Central
#> 296   Central
#> 297   Central
#> 298   Central
#> 299   Central
#> 300   Central
#> 301   Central
#> 302   Central
#> 303   Central
#> 304   Central
#> 305   Central
#> 306   Central
#> 307   Central
#> 308   Central
#> 309   Central
#> 310   Central
#> 311   Central
#> 312   Central
#> 313   Central
#> 314   Central
#> 315   Central
#> 316   Central
#> 317   Central
#> 318   Central
#> 319   Central
#> 320   Central
#> 321   Central
#> 322   Central
#> 323   Central
#> 324   Central
#> 325   Central
#> 326   Central
#> 327   Central
#> 328   Central
#> 329   Central
#> 330   Central
#> 331   Central
#> 332   Central
#> 333   Central
#> 334   Central
#> 335   Central
#> 336   Central
#> 337   Central
#> 338   Central
#> 339   Central
#> 340   Central
#> 341   Central
#> 342   Central
#> 343   Central
#> 344   Central
#> 345   Central
#> 346   Central
#> 347   Central
#> 348   Central
#> 349   Central
#> 350   Central
#> 351   Central
#> 352   Central
#> 353   Central
#> 354   Central
#> 355   Central
#> 356   Central
#> 357   Central
#> 358   Central
#> 359   Central
#> 360   Central
#> 361   Central
#> 362   Central
#> 363   Central
#> 364   Central
#> 365   Central
#> 366   Central
#> 367   Central
#> 368   Central
#> 369   Central
#> 370   Central
#> 371   Central
#> 372   Central
#> 373   Central
#> 374   Central
#> 375   Central
#> 376   Central
#> 377   Central
#> 378   Central
#> 379   Central
#> 380   Central
#> 381   Central
#> 382   Central
#> 383   Central
#> 384   Central
#> 385   Central
#> 386   Central
#> 387   Central
#> 388   Central
#> 389   Central
#> 390   Central
#> 391   Central
#> 392   Central
#> 393   Central
#> 394   Central
#> 395   Central
#> 396   Central
#> 397   Central
#> 398   Central
#> 399   Central
#> 400   Central
#> 401   Central
#> 402   Central
#> 403   Central
#> 404   Central
#> 405   Central
#> 406   Central
#> 407   Central
#> 408   Central
#> 409   Central
#> 410   Central
#> 411   Central
#> 412   Central
#> 413   Central
#> 414   Central
#> 415   Central
#> 416   Central
#> 417   Central
#> 418   Central
#> 419   Central
#> 420   Central
#> 421   Central
#> 422   Central
#> 423   Central
#> 424   Central
#> 425   Central
#> 426   Central
#> 427   Central
#> 428   Central
#> 429   Central
#> 430   Central
#> 431   Central
#> 432   Central
#> 433   Central
#> 434   Central
#> 435   Central
#> 436   Central
#> 437   Central
#> 438   Central
#> 439   Central
#> 440   Central
#> 441   Central
#> 442   Central
#> 443   Central
#> 444   Central
#> 445   Central
#> 446   Central
#> 447   Central
#> 448   Central
#> 449   Central
#> 450   Central
#> 451   Central
#> 452   Central
#> 453   Central
#> 454   Central
#> 455   Central
#> 456   Central
#> 457   Central
#> 458   Central
#> 459   Central
#> 460   Central
#> 461   Central
#> 462   Central
#> 463   Central
#> 464   Central
#> 465   Central
#> 466   Central
#> 467   Central
#> 468   Central
#> 469   Central
#> 470   Central
#> 471   Central
#> 472   Central
#> 473   Central
#> 474   Central
#> 475   Central
#> 476   Central
#> 477   Central
#> 478   Central
#> 479   Central
#> 480   Central
#> 481   Central
#> 482   Central
#> 483   Central
#> 484   Central
#> 485   Central
#> 486   Central
#> 487   Central
#> 488   Central
#> 489   Central
#> 490   Central
#> 491   Central
#> 492   Central
#> 493   Central
#> 494   Central
#> 495   Central
#> 496   Central
#> 497   Central
#> 498   Central
#> 499   Central
#> 500   Central
#> 501   Central
#> 502   Central
#> 503   Central
#> 504   Central
#> 505   Central
#> 506   Central
#> 507   Central
#> 508   Central
#> 509   Central
#> 510   Central
#> 511   Central
#> 512   Central
#> 513   Central
#> 514   Central
#> 515   Central
#> 516   Central
#> 517   Central
#> 518   Central
#> 519   Central
#> 520   Central
#> 521   Central
#> 522   Central
#> 523   Central
#> 524   Central
#> 525   Central
#> 526   Central
#> 527   Central
#> 528   Central
#> 529   Central
#> 530   Central
#> 531   Central
#> 532   Central
#> 533   Central
#> 534   Central
#> 535   Central
#> 536   Central
#> 537   Central
#> 538   Central
#> 539   Central
#> 540   Central
#> 541   Central
#> 542   Central
#> 543   Central
#> 544   Central
#> 545   Central
#> 546   Central
#> 547   Central
#> 548   Central
#> 549   Central
#> 550   Central
#> 551   Central
#> 552   Central
#> 553   Central
#> 554   Central
#> 555   Central
#> 556   Central
#> 557   Central
#> 558   Central
#> 559   Central
#> 560   Central
#> 561   Central
#> 562   Central
#> 563   Central
#> 564   Central
#> 565   Central
#> 566   Central
#> 567   Central
#> 568   Central
#> 569   Central
#> 570   Central
#> 571   Central
#> 572   Central
#> 573   Central
#> 574   Central
#> 575   Central
#> 576   Central
#> 577   Central
#> 578   Central
#> 579   Central
#> 580   Central
#> 581   Central
#> 582   Central
#> 583   Central
#> 584   Central
#> 585   Central
#> 586   Central
#> 587   Central
#> 588   Central
#> 589   Central
#> 590   Central
#> 591   Central
#> 592   Central
#> 593   Central
#> 594   Central
#> 595   Central
#> 596   Central
#> 597   Central
#> 598   Central
#> 599   Central
#> 600   Central
#> 601   Central
#> 602   Central
#> 603   Central
#> 604   Central
#> 605   Central
#> 606   Central
#> 607   Central
#> 608   Central
#> 609   Central
#> 610   Central
#> 611   Central
#> 612   Central
#> 613   Central
#> 614   Central
#> 615   Central
#> 616   Central
#> 617   Central
#> 618   Central
#> 619   Central
#> 620   Central
#> 621   Central
#> 622   Central
#> 623   Central
#> 624   Central
#> 625   Central
#> 626   Central
#> 627   Central
#> 628   Central
#> 629   Central
#> 630   Central
#> 631   Central
#> 632   Central
#> 633   Central
#> 634   Central
#> 635   Central
#> 636   Central
#> 637   Central
#> 638   Central
#> 639   Central
#> 640   Central
#> 641   Central
#> 642   Central
#> 643   Central
#> 644   Central
#> 645   Central
#> 646   Central
#> 647   Central
#> 648   Central
#> 649   Central
#> 650   Central
#> 651   Central
#> 652   Central
#> 653   Central
#> 654   Central
#> 655   Central
#> 656   Central
#> 657   Central
#> 658   Central
#> 659   Central
#> 660   Central
#> 661   Central
#> 662   Central
#> 663   Central
#> 664   Central
#> 665   Central
#> 666   Central
#> 667   Central
#> 668   Central
#> 669   Central
#> 670   Central
#> 671   Central
#> 672   Central
#> 673   Central
#> 674   Central
#> 675   Central
#> 676   Central
#> 677   Central
#> 678   Central
#> 679   Central
#> 680   Central
#> 681   Central
#> 682   Central
#> 683   Central
#> 684   Central
#> 685   Central
#> 686   Central
#> 687   Central
#> 688   Central
#> 689   Central
#> 690   Central
#> 691   Central
#> 692   Central
#> 693   Central
#> 694   Central
#> 695   Central
#> 696   Central
#> 697   Central
#> 698   Central
#> 699   Central
#> 700   Central
#> 701   Central
#> 702   Central
#> 703   Central
#> 704   Central
#> 705   Central
#> 706   Central
#> 707   Central
#> 708   Central
#> 709   Central
#> 710   Central
#> 711   Central
#> 712   Central
#> 713   Central
#> 714   Central
#> 715   Central
#> 716   Central
#> 717   Central
#> 718   Central
#> 719   Central
#> 720   Central
#> 721   Central
#> 722   Central
#> 723   Central
#> 724   Central
#> 725   Central
#> 726   Central
#> 727   Central
#> 728   Central
#> 729   Central
#> 730   Central
#> 731   Central
#> 732   Central
#> 733   Central
#> 734   Central
#> 735   Central
#> 736   Central
#> 737   Central
#> 738   Central
#> 739   Central
#> 740   Central
#> 741   Central
#> 742   Central
#> 743   Central
#> 744   Central
#> 745   Central
#> 746   Central
#> 747   Central
#> 748   Central
#> 749   Central
#> 750   Central
#> 751   Central
#> 752   Central
#> 753   Central
#> 754   Central
#> 755   Central
#> 756   Central
#> 757   Central
#> 758   Central
#> 759   Central
#> 760   Central
#> 761   Central
#> 762   Central
#> 763   Central
#> 764   Central
#> 765   Central
#> 766   Central
#> 767   Central
#> 768   Central
#> 769   Central
#> 770   Central
#> 771   Central
#> 772   Central
#> 773   Central
#> 774   Central
#> 775   Central
#> 776   Central
#> 777   Central
#> 778   Central
#> 779   Central
#> 780   Central
#> 781   Central
#> 782   Central
#> 783   Central
#> 784   Central
#> 785   Central
#> 786   Central
#> 787   Central
#> 788   Central
#> 789   Central
#> 790   Central
#> 791   Central
#> 792   Central
#> 793   Central
#> 794   Central
#> 795   Central
#> 796   Central
#> 797   Central
#> 798   Central
#> 799   Central
#> 800   Central
#> 801   Central
#> 802   Central
#> 803   Central
#> 804   Central
#> 805   Central
#> 806   Central
#> 807   Central
#> 808   Central
#> 809   Central
#> 810   Central
#> 811   Central
#> 812   Central
#> 813   Central
#> 814   Central
#> 815   Central
#> 816   Central
#> 817   Central
#> 818   Central
#> 819   Central
#> 820   Central
#> 821   Central
#> 822   Central
#> 823   Central
#> 824   Central
#> 825   Central
#> 826   Central
#> 827   Central
#> 828   Central
#> 829   Central
#> 830   Central
#> 831   Central
#> 832   Central
#> 833   Central
#> 834   Central
#> 835   Central
#> 836   Central
#> 837   Central
#> 838   Central
#> 839   Central
#> 840   Central
#> 841   Central
#> 842   Central
#> 843   Central
#> 844   Central
#> 845   Central
#> 846   Central
#> 847   Central
#> 848   Central
#> 849   Central
#> 850   Central
#> 851   Central
#> 852   Central
#> 853   Central
#> 854   Central
#> 855   Central
#> 856   Central
#> 857   Central
#> 858   Central
#> 859   Central
#> 860   Central
#> 861   Central
#> 862   Central
#> 863   Central
#> 864   Central
#> 865   Central
#> 866   Central
#> 867   Central
#> 868   Central
#> 869   Central
#> 870   Central
#> 871   Central
#> 872   Central
#> 873   Central
#> 874   Central
#> 875   Central
#> 876   Central
#> 877   Central
#> 878   Central
#> 879   Central
#> 880   Central
#> 881   Central
#> 882   Central
#> 883   Central
#> 884   Central
#> 885   Central
#> 886   Central
#> 887   Central
#> 888   Central
#> 889   Central
#> 890   Central
#> 891   Central
#> 892   Central
#> 893   Central
#> 894   Central
#> 895   Central
#> 896   Central
#> 897   Central
#> 898   Central
#> 899   Central
#> 900   Central
#> 901   Central
#> 902   Central
#> 903   Central
#> 904   Central
#> 905   Central
#> 906   Central
#> 907   Central
#> 908   Central
#> 909   Central
#> 910   Central
#> 911   Central
#> 912   Central
#> 913   Central
#> 914   Central
#> 915   Central
#> 916   Central
#> 917   Central
#> 918   Central
#> 919   Central
#> 920   Central
#> 921   Central
#> 922   Central
#> 923   Central
#> 924   Central
#> 925   Central
#> 926   Central
#> 927   Central
#> 928   Central
#> 929   Central
#> 930   Central
#> 931   Central
#> 932   Central
#> 933   Central
#> 934   Central
#> 935   Central
#> 936   Central
#> 937   Central
#> 938   Central
#> 939   Central
#> 940   Central
#> 941   Central
#> 942   Central
#> 943   Central
#> 944   Central
#> 945   Central
#> 946   Central
#> 947   Central
#> 948   Central
#> 949   Central
#> 950   Central
#> 951   Central
#> 952   Central
#> 953   Central
#> 954   Central
#> 955   Central
#> 956   Central
#> 957   Central
#> 958   Central
#> 959   Central
#> 960   Central
#> 961   Central
#> 962   Central
#> 963   Central
#> 964   Central
#> 965   Central
#> 966   Central
#> 967   Central
#> 968   Central
#> 969   Central
#> 970   Central
#> 971   Central
#> 972   Central
#> 973   Central
#> 974   Central
#> 975   Central
#> 976   Central
#> 977   Central
#> 978   Central
#> 979   Central
#> 980   Central
#> 981   Central
#> 982   Central
#> 983   Central
#> 984   Central
#> 985   Central
#> 986   Central
#> 987   Central
#> 988   Central
#> 989   Central
#> 990   Central
#> 991   Central
#> 992   Central
#> 993   Central
#> 994   Central
#> 995   Central
#> 996   Central
#> 997   Central
#> 998   Central
#> 999   Central
#> 1000  Central
#> 1001  Central
#> 1002  Central
#> 1003  Central
#> 1004  Central
#> 1005  Central
#> 1006  Central
#> 1007  Central
#> 1008  Central
#> 1009  Central
#> 1010  Central
#> 1011  Central
#> 1012  Central
#> 1013  Central
#> 1014  Central
#> 1015  Central
#> 1016  Central
#> 1017  Central
#> 1018  Central
#> 1019  Central
#> 1020  Central
#> 1021  Central
#> 1022  Central
#> 1023  Central
#> 1024  Central
#> 1025  Central
#> 1026  Central
#> 1027  Central
#> 1028  Central
#> 1029  Central
#> 1030  Central
#> 1031  Central
#> 1032  Central
#> 1033  Central
#> 1034  Central
#> 1035  Central
#> 1036  Central
#> 1037  Central
#> 1038  Central
#> 1039  Central
#> 1040  Central
#> 1041  Central
#> 1042  Central
#> 1043  Central
#> 1044  Central
#> 1045  Central
#> 1046  Central
#> 1047  Central
#> 1048  Central
#> 1049  Central
#> 1050  Central
#> 1051  Central
#> 1052  Central
#> 1053  Central
#> 1054  Central
#> 1055  Central
#> 1056  Central
#> 1057  Central
#> 1058  Central
#> 1059  Central
#> 1060  Central
#> 1061  Central
#> 1062  Central
#> 1063  Central
#> 1064  Central
#> 1065  Central
#> 1066  Central
#> 1067  Central
#> 1068  Central
#> 1069  Central
#> 1070  Central
#> 1071  Central
#> 1072  Central
#> 1073  Central
#> 1074  Central
#> 1075  Central
#> 1076  Central
#> 1077  Central
#> 1078  Central
#> 1079  Central
#> 1080  Central
#> 1081  Central
#> 1082  Central
#> 1083  Central
#> 1084  Central
#> 1085  Central
#> 1086  Central
#> 1087  Central
#> 1088  Central
#> 1089  Central
#> 1090  Central
#> 1091  Central
#> 1092  Central
#> 1093  Central
#> 1094  Central
#> 1095  Central
#> 1096  Central
#> 1097  Central
#> 1098  Central
#> 1099  Central
#> 1100  Central
#> 1101  Central
#> 1102  Central
#> 1103  Central
#> 1104  Central
#> 1105  Central
#> 1106  Central
#> 1107  Central
#> 1108  Central
#> 1109  Central
#> 1110  Central
#> 1111  Central
#> 1112  Central
#> 1113  Central
#> 1114  Central
#> 1115  Central
#> 1116  Central
#> 1117  Central
#> 1118  Central
#> 1119  Central
#> 1120  Central
#> 1121  Central
#> 1122  Central
#> 1123  Central
#> 1124  Central
#> 1125  Central
#> 1126  Central
#> 1127  Central
#> 1128  Central
#> 1129  Central
#> 1130  Central
#> 1131  Central
#> 1132  Central
#> 1133  Central
#> 1134  Central
#> 1135  Central
#> 1136  Central
#> 1137  Central
#> 1138  Central
#> 1139  Central
#> 1140  Central
#> 1141  Central
#> 1142  Central
#> 1143  Central
#> 1144  Central
#> 1145  Central
#> 1146  Central
#> 1147  Central
#> 1148  Central
#> 1149  Central
#> 1150  Central
#> 1151  Central
#> 1152  Central
#> 1153  Central
#> 1154  Central
#> 1155  Central
#> 1156  Central
#> 1157  Central
#> 1158  Central
#> 1159  Central
#> 1160  Central
#> 1161  Central
#> 1162  Central
#> 1163  Central
#> 1164  Central
#> 1165  Central
#> 1166  Central
#> 1167  Central
#> 1168  Central
#> 1169  Central
#> 1170  Central
#> 1171  Central
#> 1172  Central
#> 1173  Central
#> 1174  Central
#> 1175  Central
#> 1176  Central
#> 1177  Central
#> 1178  Central
#> 1179  Central
#> 1180  Central
#> 1181  Central
#> 1182  Central
#> 1183  Central
#> 1184  Central
#> 1185  Central
#> 1186  Central
#> 1187  Central
#> 1188  Central
#> 1189  Central
#> 1190  Central
#> 1191  Central
#> 1192  Central
#> 1193  Central
#> 1194  Central
#> 1195  Central
#> 1196  Central
#> 1197  Central
#> 1198  Central
#> 1199  Central
#> 1200  Central
#> 1201  Central
#> 1202  Central
#> 1203  Central
#> 1204  Central
#> 1205  Central
#> 1206  Central
#> 1207  Central
#> 1208  Central
#> 1209  Central
#> 1210  Central
#> 1211  Central
#> 1212  Central
#> 1213  Central
#> 1214  Central
#> 1215  Central
#> 1216  Central
#> 1217  Central
#> 1218  Central
#> 1219  Central
#> 1220  Central
#> 1221  Central
#> 1222  Central
#> 1223  Central
#> 1224  Central
#> 1225  Central
#> 1226  Central
#> 1227  Central
#> 1228  Central
#> 1229  Central
#> 1230  Central
#> 1231  Central
#> 1232  Central
#> 1233  Central
#> 1234  Central
#> 1235  Central
#> 1236  Central
#> 1237  Central
#> 1238  Central
#> 1239  Central
#> 1240  Central
#> 1241  Central
#> 1242  Central
#> 1243  Central
#> 1244  Central
#> 1245  Central
#> 1246  Central
#> 1247  Central
#> 1248  Central
#> 1249  Central
#> 1250  Central
#> 1251  Central
#> 1252  Central
#> 1253  Central
#> 1254  Central
#> 1255  Central
#> 1256  Central
#> 1257  Central
#> 1258  Central
#> 1259  Central
#> 1260  Central
#> 1261  Central
#> 1262  Central
#> 1263  Central
#> 1264  Central
#> 1265  Central
#> 1266  Central
#> 1267  Central
#> 1268  Central
#> 1269  Central
#> 1270  Central
#> 1271  Central
#> 1272  Central
#> 1273  Central
#> 1274  Central
#> 1275  Central
#> 1276  Central
#> 1277  Central
#> 1278  Central
#> 1279  Central
#> 1280  Central
#> 1281  Central
#> 1282  Central
#> 1283  Central
#> 1284  Central
#> 1285  Central
#> 1286  Central
#> 1287  Central
#> 1288  Central
#> 1289  Central
#> 1290  Central
#> 1291  Central
#> 1292  Central
#> 1293  Central
#> 1294  Central
#> 1295  Central
#> 1296  Central
#> 1297  Central
#> 1298  Central
#> 1299  Central
#> 1300  Central
#> 1301  Central
#> 1302  Central
#> 1303  Central
#> 1304  Central
#> 1305  Central
#> 1306  Central
#> 1307  Central
#> 1308  Central
#> 1309  Central
#> 1310  Central
#> 1311  Central
#> 1312  Central
#> 1313  Central
#> 1314  Central
#> 1315  Central
#> 1316  Central
#> 1317  Central
#> 1318  Central
#> 1319  Central
#> 1320  Central
#> 1321  Central
#> 1322  Central
#> 1323  Central
#> 1324  Central
#> 1325  Central
#> 1326  Central
#> 1327  Central
#> 1328  Central
#> 1329  Central
#> 1330  Central
#> 1331  Central
#> 1332  Central
#> 1333  Central
#> 1334  Central
#> 1335  Central
#> 1336  Central
#> 1337  Central
#> 1338  Central
#> 1339  Central
#> 1340  Central
#> 1341  Central
#> 1342  Central
#> 1343  Central
#> 1344  Central
#> 1345  Central
#> 1346  Central
#> 1347  Central
#> 1348  Central
#> 1349  Central
#> 1350  Central
#> 1351  Central
#> 1352  Central
#> 1353  Central
#> 1354  Central
#> 1355  Central
#> 1356  Central
#> 1357  Central
#> 1358  Central
#> 1359  Central
#> 1360  Central
#> 1361  Central
#> 1362  Central
#> 1363  Central
#> 1364  Central
#> 1365  Central
#> 1366  Central
#> 1367  Central
#> 1368  Central
#> 1369  Central
#> 1370  Central
#> 1371  Central
#> 1372  Central
#> 1373  Central
#> 1374  Central
#> 1375  Central
#> 1376  Central
#> 1377  Central
#> 1378  Central
#> 1379  Central
#> 1380  Central
#> 1381  Central
#> 1382  Central
#> 1383  Central
#> 1384  Central
#> 1385  Central
#> 1386  Central
#> 1387  Central
#> 1388  Central
#> 1389  Central
#> 1390  Central
#> 1391  Central
#> 1392  Central
#> 1393  Central
#> 1394  Central
#> 1395  Central
#> 1396  Central
#> 1397  Central
#> 1398  Central
#> 1399  Central
#> 1400  Central
#> 1401  Central
#> 1402  Central
#> 1403  Central
#> 1404  Central
#> 1405  Central
#> 1406  Central
#> 1407  Central
#> 1408  Central
#> 1409  Central
#> 1410  Central
#> 1411  Central
#> 1412  Central
#> 1413  Central
#> 1414  Central
#> 1415  Central
#> 1416  Central
#> 1417  Central
#> 1418  Central
#> 1419  Central
#> 1420  Central
#> 1421  Central
#> 1422  Central
#> 1423  Central
#> 1424  Central
#> 1425  Central
#> 1426  Central
#> 1427  Central
#> 1428  Central
#> 1429  Central
#> 1430  Central
#> 1431  Central
#> 1432  Central
#> 1433  Central
#> 1434  Central
#> 1435  Central
#> 1436  Central
#> 1437  Central
#> 1438  Central
#> 1439  Central
#> 1440  Central
#> 1441  Central
#> 1442  Central
#> 1443  Central
#> 1444  Central
#> 1445  Central
#> 1446  Central
#> 1447  Central
#> 1448  Central
#> 1449  Central
#> 1450  Central
#> 1451  Central
#> 1452  Central
#> 1453  Central
#> 1454  Central
#> 1455  Central
#> 1456  Central
#> 1457  Central
#> 1458  Central
#> 1459  Central
#> 1460  Central
#> 1461  Central
#> 1462  Central
#> 1463  Central
#> 1464  Central
#> 1465  Central
#> 1466  Central
#> 1467  Central
#> 1468  Central
#> 1469  Central
#> 1470  Central
#> 1471  Central
#> 1472  Central
#> 1473  Central
#> 1474  Central
#> 1475  Central
#> 1476  Central
#> 1477  Central
#> 1478  Central
#> 1479  Central
#> 1480  Central
#> 1481  Central
#> 1482  Central
#> 1483  Central
#> 1484  Central
#> 1485  Central
#> 1486  Central
#> 1487  Central
#> 1488  Central
#> 1489  Central
#> 1490  Central
#> 1491  Central
#> 1492  Central
#> 1493  Central
#> 1494  Central
#> 1495  Central
#> 1496  Central
#> 1497  Central
#> 1498  Central
#> 1499  Central
#> 1500  Central
#> 1501  Central
#> 1502  Central
#> 1503  Central
#> 1504  Central
#> 1505  Central
#> 1506  Central
#> 1507  Central
#> 1508  Central
#> 1509  Central
#> 1510  Central
#> 1511  Central
#> 1512  Central
#> 1513  Central
#> 1514  Central
#> 1515    State
#> 1516    State
#> 1517    State
#> 1518    State
#> 1519    State
#> 1520  Central
#> 1521  Central
#> 1522  Central
#> 1523  Central
#> 1524  Central
#> 1525    State
#> 1526    State
#> 1527  Central
#> 1528  Central
#> 1529  Central
#> 1530  Central
#> 1531  Central
#> 1532  Central
#> 1533  Central
#> 1534  Central
#> 1535  Central
#> 1536  Central
#> 1537  Central
#> 1538  Central
#> 1539  Central
#> 1540  Central
#> 1541  Central
#> 1542  Central
#> 1543  Central
#> 1544  Central
#> 1545  Central
#> 1546  Central
#> 1547  Central
#> 1548  Central
#> 1549  Central
#> 1550  Central
#> 1551  Central
#> 1552  Central
#> 1553    State
#> 1554    State
#> 1555  Central
#> 1556  Central
#> 1557  Central
#> 1558  Central
#> 1559  Central
#> 1560  Central
#> 1561  Central
#> 1562    State
#> 1563    State
#> 1564    State
#> 1565  Central
#> 1566  Central
#> 1567  Central
#> 1568  Central
#> 1569  Central
#>                                                                                                                                                      org
#> 1                                                                                                                                            Rajya Sabha
#> 2                                                                                                                                            Rajya Sabha
#> 3                                                                                                                                            Rajya Sabha
#> 4                                                                                                                                            Rajya Sabha
#> 5                                                                                                                                            Rajya Sabha
#> 6                                                                                                                                            Rajya Sabha
#> 7                                                                                                                                            Rajya Sabha
#> 8                                                                                                                                            Rajya Sabha
#> 9                                                                                                                                            Rajya Sabha
#> 10                                                                                                                                           Rajya Sabha
#> 11                                                                                                                                           Rajya Sabha
#> 12                                                                                                                                           Rajya Sabha
#> 13                                                                                                                                           Rajya Sabha
#> 14                                                                                                                                           Rajya Sabha
#> 15                                                                                                                                           Rajya Sabha
#> 16                                                                                                                                           Rajya Sabha
#> 17                                                                                                                                           Rajya Sabha
#> 18                                                                                                                                           Rajya Sabha
#> 19                                                                                                                                           Rajya Sabha
#> 20                                                                                                                                           Rajya Sabha
#> 21                                                                                                                                           Rajya Sabha
#> 22                                                                                                                                           Rajya Sabha
#> 23                                                                                                                                           Rajya Sabha
#> 24                                                                                                                                           Rajya Sabha
#> 25                                                                                                                                           Rajya Sabha
#> 26                                                                                                                                           Rajya Sabha
#> 27                                                                                                                                           Rajya Sabha
#> 28                                                                                                                                           Rajya Sabha
#> 29                                                                                                                                           Rajya Sabha
#> 30                                                                                                                                           Rajya Sabha
#> 31                                                                                                                                           Rajya Sabha
#> 32                                                                                                                                           Rajya Sabha
#> 33                                                                                                                                           Rajya Sabha
#> 34                                                                                                                                           Rajya Sabha
#> 35                                                                                                                                           Rajya Sabha
#> 36                                                                                                                                           Rajya Sabha
#> 37                                                                                                                                           Rajya Sabha
#> 38                                                                                                                                           Rajya Sabha
#> 39                                                                                                                                           Rajya Sabha
#> 40                                                                                                                                           Rajya Sabha
#> 41                                                                                                                                           Rajya Sabha
#> 42                                                                                                                                           Rajya Sabha
#> 43                                                                                                                                           Rajya Sabha
#> 44                                                                                                                                           Rajya Sabha
#> 45                                                                                                                                           Rajya Sabha
#> 46                                                                                                                                           Rajya Sabha
#> 47                                                                                                                                           Rajya Sabha
#> 48                                                                                                                                           Rajya Sabha
#> 49                                                                                                                                           Rajya Sabha
#> 50                                                                                                                                           Rajya Sabha
#> 51                                                                                                                                           Rajya Sabha
#> 52                                                                                                                                           Rajya Sabha
#> 53                                                                                                                                           Rajya Sabha
#> 54                                                                                                                                           Rajya Sabha
#> 55                                                                                                                                           Rajya Sabha
#> 56                                                                                                                                           Rajya Sabha
#> 57                                                                                                                                           Rajya Sabha
#> 58                                                                                                                                           Rajya Sabha
#> 59                                                                                                                                           Rajya Sabha
#> 60                                                                                                                                           Rajya Sabha
#> 61                                                                                                                                           Rajya Sabha
#> 62                                                                                                                                           Rajya Sabha
#> 63                                                                                                                                           Rajya Sabha
#> 64                                                                                                                                           Rajya Sabha
#> 65                                                                                                                                           Rajya Sabha
#> 66                                                                                                                                           Rajya Sabha
#> 67                                                                                                                                           Rajya Sabha
#> 68                                                                                                                                           Rajya Sabha
#> 69                                                                                                                                           Rajya Sabha
#> 70                                                                                                                                           Rajya Sabha
#> 71                                                                                                                                           Rajya Sabha
#> 72                                                                                                                                           Rajya Sabha
#> 73                                                                                                                                           Rajya Sabha
#> 74                                                                                                                                           Rajya Sabha
#> 75                                                                                                                                           Rajya Sabha
#> 76                                                                                                                                           Rajya Sabha
#> 77                                                                                                                                           Rajya Sabha
#> 78                                                                                                                                           Rajya Sabha
#> 79                                                                                                                                           Rajya Sabha
#> 80                                                                                                                                           Rajya Sabha
#> 81                                                                                                                                           Rajya Sabha
#> 82                                                                                                                                           Rajya Sabha
#> 83                                                                                                                                           Rajya Sabha
#> 84                                                                                                                                           Rajya Sabha
#> 85                                                                                                                                           Rajya Sabha
#> 86                                                                                                                                           Rajya Sabha
#> 87                                                                                                                                           Rajya Sabha
#> 88                                                                                                                                           Rajya Sabha
#> 89                                                                                                                                           Rajya Sabha
#> 90                                                                                                                                           Rajya Sabha
#> 91                                                                                                                                           Rajya Sabha
#> 92                                                                                                                                           Rajya Sabha
#> 93                                                                                                                                           Rajya Sabha
#> 94                                                                                                                                           Rajya Sabha
#> 95                                                                                                                                           Rajya Sabha
#> 96                                                                                                                                           Rajya Sabha
#> 97                                                                                                                                           Rajya Sabha
#> 98                                                                                                                                           Rajya Sabha
#> 99                                                                                                                                           Rajya Sabha
#> 100                                                                                                                                          Rajya Sabha
#> 101                                                                                                                                          Rajya Sabha
#> 102                                                                                                                                          Rajya Sabha
#> 103                                                                                                                                          Rajya Sabha
#> 104                                                                                                                                          Rajya Sabha
#> 105                                                                                                                                          Rajya Sabha
#> 106                                                                                                                                          Rajya Sabha
#> 107                                                                                                                                          Rajya Sabha
#> 108                                                                                                                                          Rajya Sabha
#> 109                                                                                                                                          Rajya Sabha
#> 110                                                                                                                                          Rajya Sabha
#> 111                                                                                                                                          Rajya Sabha
#> 112                                                                                                                                          Rajya Sabha
#> 113                                                                                                                                          Rajya Sabha
#> 114                                                                                                                                          Rajya Sabha
#> 115                                                                                                                                          Rajya Sabha
#> 116                                                                                                                                          Rajya Sabha
#> 117                                                                                                                                          Rajya Sabha
#> 118                                                                                                                                          Rajya Sabha
#> 119                                                                                                                                          Rajya Sabha
#> 120                                                                                                                                          Rajya Sabha
#> 121                                                                                                                                          Rajya Sabha
#> 122                                                                                                                                          Rajya Sabha
#> 123                                                                                                                                          Rajya Sabha
#> 124                                                                                                                                          Rajya Sabha
#> 125                                                                                                                                          Rajya Sabha
#> 126                                                                                                                                          Rajya Sabha
#> 127                                                                                                                                          Rajya Sabha
#> 128                                                                                                                                          Rajya Sabha
#> 129                                                                                                                                          Rajya Sabha
#> 130                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 131                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 132                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 133                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 134                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 135                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 136                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 137                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 138                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 139                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 140                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 141                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 142                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 143                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 144                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 145                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 146                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 147                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 148                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 149                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 150                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 151                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 152                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 153                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 154                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 155                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 156                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 157                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 158                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 159                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 160                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 161                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 162                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 163                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 164                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 165                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 166                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 167                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 168                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 169                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 170                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 171                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 172                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 173                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 174                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 175                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 176                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 177                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 178                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 179                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 180                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 181                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 182                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 183                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 184                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 185                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 186                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 187                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 188                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 189                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 190                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 191                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 192                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 193                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 194                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 195                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 196                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 197                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 198                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 199                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 200                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 201                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 202                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 203                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 204                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 205                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 206                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 207                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 208                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 209                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 210                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 211                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 212                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 213                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 214                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 215                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 216                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 217                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 218                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 219                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 220                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 221                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 222                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 223                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 224                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 225                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 226                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 227                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 228                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 229                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 230                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 231                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 232                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 233                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 234                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 235                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 236                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 237                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 238                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 239                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 240                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 241                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 242                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 243                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 244                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 245                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 246                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 247                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 248                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 249                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 250                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 251                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 252                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 253                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 254                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 255                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 256                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 257                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 258                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 259                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 260                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 261                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 262                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 263                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 264                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 265                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 266                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 267                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 268                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 269                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 270                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 271                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 272                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 273                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 274                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 275                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 276                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 277                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 278                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 279                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 280                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 281                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 282                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 283                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 284                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 285                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 286                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 287                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 288                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 289                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 290                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 291                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 292                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 293                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 294                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 295                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 296                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 297                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 298                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 299                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 300                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 301                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 302                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 303                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 304                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 305                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 306                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 307                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 308                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 309                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 310                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 311                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 312                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 313                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 314                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 315                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 316                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 317                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 318                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 319                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 320                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 321                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 322                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 323                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 324                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 325                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 326                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 327                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 328                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 329                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 330                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 331                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 332                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 333                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 334                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 335                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 336                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 337                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 338                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 339                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 340                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 341                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 342                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 343                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 344                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 345                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 346                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 347                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 348                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 349                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 350                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 351                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 352                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 353                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 354                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 355                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 356                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 357                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 358                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 359                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 360                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 361                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 362                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 363                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 364                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 365                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 366                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 367                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 368                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 369                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 370                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 371                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 372                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 373                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 374                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 375                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 376                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 377                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 378                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 379                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 380                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 381                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 382                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 383                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 384                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 385                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 386                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 387                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 388                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 389                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 390                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 391                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 392                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 393                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 394                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 395                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 396                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 397                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 398                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 399                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 400                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 401                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 402                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 403                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 404                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 405                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 406                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 407                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 408                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 409                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 410                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 411                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 412                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 413                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 414                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 415                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 416                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 417                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 418                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 419                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 420                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 421                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 422                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 423                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 424                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 425                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 426                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 427                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 428                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 429                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 430                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 431                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 432                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 433                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 434                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 435                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 436                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 437                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 438                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 439                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 440                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 441                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 442                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 443                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 444                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 445                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 446                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 447                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 448                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 449                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 450                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 451                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 452                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 453                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 454                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 455                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 456                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 457                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 458                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 459                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 460                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 461                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 462                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 463                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 464                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 465                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 466                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 467                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 468                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 469                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 470                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 471                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 472                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 473                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 474                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 475                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 476                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 477                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 478                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 479                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 480                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 481                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 482                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 483                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 484                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 485                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 486                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 487                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 488                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 489                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 490                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 491                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 492                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 493                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 494                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 495                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 496                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 497                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 498                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 499                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 500                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 501                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 502                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 503                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 504                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 505                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 506                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 507                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 508                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 509                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 510                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 511                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 512                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 513                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 514                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 515                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 516                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 517                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 518                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 519                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 520                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 521                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 522                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 523                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 524                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 525                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 526                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 527                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 528                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 529                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 530                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 531                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 532                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 533                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 534                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 535                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 536                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 537                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 538                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 539                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 540                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 541                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 542                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 543                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 544                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 545                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 546                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 547                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 548                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 549                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 550                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 551                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 552                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 553                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 554                                                                                                                                          Rajya Sabha
#> 555                                                                                                                                          Rajya Sabha
#> 556                                                                                                                                          Rajya Sabha
#> 557                                                                                                                                          Rajya Sabha
#> 558                                                                                                                                          Rajya Sabha
#> 559                                                                                                                                          Rajya Sabha
#> 560                                                                                                                                          Rajya Sabha
#> 561                                                                                                                                          Rajya Sabha
#> 562                                                                                                                                          Rajya Sabha
#> 563                                                                                                                                          Rajya Sabha
#> 564                                                                                                                                          Rajya Sabha
#> 565                                                                                                                                          Rajya Sabha
#> 566                                                                                                                                          Rajya Sabha
#> 567                                                                                                                                          Rajya Sabha
#> 568                                                                                                                                          Rajya Sabha
#> 569                                                                                                                                          Rajya Sabha
#> 570                                                                                                                                          Rajya Sabha
#> 571                                                                                                                                          Rajya Sabha
#> 572                                                                                                                                          Rajya Sabha
#> 573                                                                                                                                          Rajya Sabha
#> 574                                                                                                                                          Rajya Sabha
#> 575                                                                                                                                          Rajya Sabha
#> 576                                                                                                                                          Rajya Sabha
#> 577                                                                                                                                          Rajya Sabha
#> 578                                                                                                                                          Rajya Sabha
#> 579                                                                                                                                          Rajya Sabha
#> 580                                                                                                                                          Rajya Sabha
#> 581                                                                                                                                          Rajya Sabha
#> 582                                                                                                                                          Rajya Sabha
#> 583                                                                                                                                          Rajya Sabha
#> 584                                                                                                                                          Rajya Sabha
#> 585                                                                                                                                          Rajya Sabha
#> 586                                                                                                                                          Rajya Sabha
#> 587                                                                                                                                          Rajya Sabha
#> 588                                                                                                                                          Rajya Sabha
#> 589                                                                                                                                          Rajya Sabha
#> 590                                                                                                                                          Rajya Sabha
#> 591                                                                                                                                          Rajya Sabha
#> 592                                                                                                                                          Rajya Sabha
#> 593                                                                                                                                          Rajya Sabha
#> 594                                                                                                                                          Rajya Sabha
#> 595                                                                                                                                          Rajya Sabha
#> 596                                                                                                                                          Rajya Sabha
#> 597                                                                                                                                          Rajya Sabha
#> 598                                                                                                                                          Rajya Sabha
#> 599                                                                                                                                          Rajya Sabha
#> 600                                                                                                                                          Rajya Sabha
#> 601                                                                                                                                          Rajya Sabha
#> 602                                                                                                                                          Rajya Sabha
#> 603                                                                                                                                          Rajya Sabha
#> 604                                                                                                                                          Rajya Sabha
#> 605                                                                                                                                          Rajya Sabha
#> 606                                                                                                                                          Rajya Sabha
#> 607                                                                                                                                          Rajya Sabha
#> 608                                                                                                                                          Rajya Sabha
#> 609                                                                                                                                          Rajya Sabha
#> 610                                                                                                                                          Rajya Sabha
#> 611                                                                                                                                          Rajya Sabha
#> 612                                                                                                                                          Rajya Sabha
#> 613                                                                                                                                          Rajya Sabha
#> 614                                                                                                                                          Rajya Sabha
#> 615                                                                                                                                          Rajya Sabha
#> 616                                                                                                                                          Rajya Sabha
#> 617                                                                                                                                          Rajya Sabha
#> 618                                                                                                                                          Rajya Sabha
#> 619                                                                                                                                          Rajya Sabha
#> 620                                                                                                                                          Rajya Sabha
#> 621                                                                                                                                          Rajya Sabha
#> 622                                                                                                                                          Rajya Sabha
#> 623                                                                                                                                          Rajya Sabha
#> 624                                                                                                                                          Rajya Sabha
#> 625                                                                                                                                          Rajya Sabha
#> 626                                                                                                                                          Rajya Sabha
#> 627                                                                                                                                          Rajya Sabha
#> 628                                                                                                                                          Rajya Sabha
#> 629                                                                                                                                          Rajya Sabha
#> 630                                                                                                                                          Rajya Sabha
#> 631                                                                                                                                          Rajya Sabha
#> 632                                                                                                                                          Rajya Sabha
#> 633                                                                                                                                          Rajya Sabha
#> 634                                                                                                                                          Rajya Sabha
#> 635                                                                                                                                          Rajya Sabha
#> 636                                                                                                                                          Rajya Sabha
#> 637                                                                                                                                          Rajya Sabha
#> 638                                                                                                                                          Rajya Sabha
#> 639                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 640                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 641                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 642                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 643                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 644                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 645                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 646                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 647                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 648                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 649                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 650                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 651                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 652                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 653                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 654                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 655                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 656                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 657                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 658                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 659                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 660                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 661                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 662                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 663                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 664                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 665                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 666                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 667                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 668                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 669                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 670                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 671                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 672                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 673                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 674                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 675                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 676                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 677                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 678                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 679                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 680                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 681                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 682                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 683                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 684                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 685                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 686                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 687                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 688                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 689                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 690                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 691                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 692                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 693                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 694                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 695                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 696                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 697                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 698                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 699                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 700                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 701                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 702                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 703                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 704                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 705                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 706                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 707                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 708                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 709                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 710                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 711                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 712                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 713                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 714                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 715                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 716                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 717                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 718                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 719                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 720                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 721                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 722                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 723                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 724                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 725                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 726                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 727                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 728                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 729                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 730                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 731                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 732                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 733                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 734                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 735                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 736                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 737                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 738                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 739                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 740                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 741                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 742                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 743                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 744                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 745                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 746                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 747                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 748                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 749                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 750                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 751                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 752                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 753                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 754                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 755                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 756                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 757                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 758                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 759                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 760                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 761                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 762                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 763                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 764                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 765                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 766                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 767                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 768                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 769                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 770                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 771                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 772                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 773                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 774                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 775                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 776                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 777                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 778                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 779                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 780                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 781                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 782                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 783                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 784                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 785                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 786                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 787                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 788                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 789                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 790                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 791                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 792                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 793                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 794                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 795                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 796                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 797                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 798                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 799                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 800                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 801                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 802                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 803                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 804                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 805                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 806                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 807                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 808                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 809                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 810                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 811                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 812                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 813                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 814                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 815                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 816                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 817                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 818                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 819                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 820                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 821                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 822                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 823                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 824                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 825                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 826                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 827                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 828                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 829                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 830                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 831                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 832                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 833                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 834                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 835                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 836                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 837                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 838                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 839                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 840                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 841                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 842                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 843                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 844                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 845                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 846                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 847                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 848                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 849                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 850                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 851                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 852                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 853                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 854                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 855                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 856                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 857                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 858                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 859                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 860                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 861                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 862                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 863                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 864                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 865                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 866                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 867                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 868                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 869                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 870                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 871                                                                                                                                          Rajya Sabha
#> 872                                                                                                                                          Rajya Sabha
#> 873                                                                                                                                          Rajya Sabha
#> 874                                                                                                                                          Rajya Sabha
#> 875                                                                                                                                          Rajya Sabha
#> 876                                                                                                                                          Rajya Sabha
#> 877                                                                                                                                          Rajya Sabha
#> 878                                                                                                                                          Rajya Sabha
#> 879                                                                                                                                          Rajya Sabha
#> 880                                                                                                                                          Rajya Sabha
#> 881                                                                                                                                          Rajya Sabha
#> 882                                                                                                                                          Rajya Sabha
#> 883                                                                                                                                          Rajya Sabha
#> 884                                                                                                                                          Rajya Sabha
#> 885                                                                                                                                          Rajya Sabha
#> 886                                                                                                                                          Rajya Sabha
#> 887                                                                                                                                          Rajya Sabha
#> 888                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 889                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 890                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 891                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 892                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 893                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 894                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 895                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 896                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 897                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 898                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 899                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 900                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 901                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 902                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 903                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 904                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 905                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 906                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 907                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 908                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 909                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 910                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 911                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 912                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 913                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 914                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 915                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 916                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 917                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 918                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 919                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 920                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 921                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 922                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 923                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 924                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 925                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 926                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 927                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 928                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 929                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 930                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 931                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 932                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 933                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 934                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 935                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 936                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 937                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 938                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 939                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 940                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 941                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 942                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 943                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 944                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 945                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 946                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 947                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 948                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 949                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 950                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 951                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 952                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 953                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 954                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 955                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 956                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 957                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 958                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 959                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 960                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 961                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 962                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 963                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 964                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 965                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 966                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 967                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 968                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 969                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 970                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 971                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 972                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 973                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 974                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 975                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 976                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 977                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 978                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 979                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 980                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 981                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 982                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 983                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 984                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 985                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 986                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 987                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 988                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 989                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 990                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 991                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 992                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 993                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 994                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 995                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 996                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 997                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 998                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 999                                                         Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1000                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1001                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1002                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1003                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1004                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1005                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1006                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1007                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1008                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1009                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1010                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1011                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1012                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1013                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1014                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1015                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1016                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1017                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1018                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1019                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1020                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1021                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1022                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1023                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1024                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1025                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1026                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1027                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1028                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1029                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1030                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1031                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1032                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1033                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1034                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1035                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1036                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1037                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1038                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1039                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1040                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1041                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1042                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1043                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1044                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1045                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1046                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1047                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1048                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1049                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1050                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1051                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1052                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1053                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1054                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1055                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1056                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1057                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1058                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1059                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1060                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1061                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1062                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1063                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1064                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1065                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1066                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1067                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1068                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1069                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1070                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1071                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1072                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1073                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1074                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1075                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1076                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1077                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1078                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1079                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1080                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1081                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1082                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1083                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1084                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1085                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1086                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1087                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1088                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1089                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1090                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1091                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1092                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1093                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1094                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1095                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1096                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1097                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1098                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1099                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1100                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1101                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1102                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1103                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1104                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1105                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1106                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1107                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1108                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1109                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1110                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1111                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1112                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1113                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1114                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1115                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1116                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1117                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1118                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1119                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1120                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1121                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1122                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1123                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1124                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1125                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1126                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1127                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1128                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1129                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1130                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1131                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1132                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1133                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1134                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1135                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1136                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1137                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1138                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1139                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1140                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1141                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1142                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1143                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1144                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1145                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1146                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1147                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1148                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1149                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1150                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1151                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1152                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1153                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1154                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1155                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1156                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1157                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1158                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1159                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1160                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1161                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1162                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1163                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1164                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1165                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1166                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1167                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1168                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1169                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1170                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1171                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1172                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1173                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1174                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1175                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1176                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1177                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1178                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1179                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1180                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1181                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1182                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1183                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1184                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1185                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1186                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1187                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1188                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1189                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1190                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1191                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1192                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1193                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1194                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1195                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1196                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1197                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1198                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1199                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1200                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1201                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1202                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1203                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1204                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1205                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1206                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1207                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1208                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1209                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1210                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1211                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1212                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1213                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1214                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1215                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1216                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1217                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1218                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1219                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1220                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1221                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1222                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1223                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1224                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1225                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1226                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1227                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1228                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1229                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1230                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1231                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1232                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1233                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1234                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1235                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1236                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1237                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1238                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1239                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1240                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1241                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1242                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1243                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1244                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1245                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1246                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1247                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1248                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1249                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1250                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1251                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1252                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1253                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1254                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1255                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1256                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1257                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1258                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1259                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1260                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1261                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1262                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1263                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1264                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1265                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1266                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1267                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1268                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1269                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1270                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1271                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1272                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1273                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1274                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1275                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1276                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1277                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1278                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1279                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1280                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1281                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1282                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1283                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1284                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1285                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1286                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1287                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1288                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1289                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1290                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1291                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1292                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1293                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1294                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1295                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1296                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1297                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1298                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1299                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1300                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1301                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1302                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1303                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1304                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1305                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1306                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1307                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1308                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1309                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1310                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1311                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1312                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1313                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1314                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1315                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1316                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1317                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1318                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1319                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1320                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1321                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1322                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1323                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1324                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1325                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1326                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1327                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1328                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1329                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1330                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1331                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1332                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1333                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1334                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1335                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1336                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1337                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1338                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1339                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1340                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1341                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1342                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1343                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1344                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1345                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1346                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1347                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1348                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1349                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1350                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1351                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1352                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1353                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1354                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1355                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1356                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1357                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1358                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1359                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1360                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1361                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1362                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1363                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1364                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1365                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1366                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1367                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1368                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1369                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1370                                                        Ministry of Home Affairs|Department of Home|Registrar General and Census Commissioner, India
#> 1371                                                                                                                                         Rajya Sabha
#> 1372                                                                                                                                         Rajya Sabha
#> 1373                                                                                                                                         Rajya Sabha
#> 1374                                                                                                                                         Rajya Sabha
#> 1375                                                                                                                                         Rajya Sabha
#> 1376                                                                                                                                         Rajya Sabha
#> 1377                                                                                                                                         Rajya Sabha
#> 1378                                                                                                                                         Rajya Sabha
#> 1379                                                                                                                                         Rajya Sabha
#> 1380                                                                                                                                         Rajya Sabha
#> 1381                                                                                                                                         Rajya Sabha
#> 1382                                                                                                                                         Rajya Sabha
#> 1383                                                                                                                                         Rajya Sabha
#> 1384                                                                                                                                         Rajya Sabha
#> 1385                                                                                                                                         Rajya Sabha
#> 1386                                                                                                                                         Rajya Sabha
#> 1387                                                                                                                                         Rajya Sabha
#> 1388                                                                                                                                         Rajya Sabha
#> 1389                                                                                                                                         Rajya Sabha
#> 1390                                                                                                                                         Rajya Sabha
#> 1391                                                                                                                                         Rajya Sabha
#> 1392                                                                                                                                         Rajya Sabha
#> 1393                                                                                                                                         Rajya Sabha
#> 1394                                                                                                                                         Rajya Sabha
#> 1395                                                                                                                                         Rajya Sabha
#> 1396                                                                                                                                         Rajya Sabha
#> 1397                                                                                                                                         Rajya Sabha
#> 1398                                                                                                                                         Rajya Sabha
#> 1399                                                                                                                                         Rajya Sabha
#> 1400                                                                                                                                         Rajya Sabha
#> 1401                                                                                                                                         Rajya Sabha
#> 1402                                                                                                                                         Rajya Sabha
#> 1403                                                                                                                                         Rajya Sabha
#> 1404                                                                                                                                         Rajya Sabha
#> 1405                                                                                                                                         Rajya Sabha
#> 1406                                                                                                                                         Rajya Sabha
#> 1407                                                                                                                                         Rajya Sabha
#> 1408                                                                                                                                         Rajya Sabha
#> 1409                                                                                                                                         Rajya Sabha
#> 1410                                                                                                                                         Rajya Sabha
#> 1411                                                                                                                                         Rajya Sabha
#> 1412                                                                                                                                         Rajya Sabha
#> 1413                                                                                                                                         Rajya Sabha
#> 1414                                                                                                                                         Rajya Sabha
#> 1415                                                                                                                                         Rajya Sabha
#> 1416                                                                                                                                         Rajya Sabha
#> 1417                                                                                                                                         Rajya Sabha
#> 1418                                                                                                                                         Rajya Sabha
#> 1419                                                                                                                                         Rajya Sabha
#> 1420                                                                                                                                         Rajya Sabha
#> 1421                                                                                                                                         Rajya Sabha
#> 1422                                                                                                                                         Rajya Sabha
#> 1423                                                                                                                                         Rajya Sabha
#> 1424                                                                                                                                         Rajya Sabha
#> 1425                                                                                                                                         Rajya Sabha
#> 1426                                                                                                                                         Rajya Sabha
#> 1427                                                                                                                                         Rajya Sabha
#> 1428                                                                                                                                         Rajya Sabha
#> 1429                                                                                                                                         Rajya Sabha
#> 1430                                                                                                                                         Rajya Sabha
#> 1431                                                                                                                                         Rajya Sabha
#> 1432                                                                                                                                         Rajya Sabha
#> 1433                                                                                                                                         Rajya Sabha
#> 1434                                                                                                                                         Rajya Sabha
#> 1435                                                                                                                                         Rajya Sabha
#> 1436                                                                                                                                         Rajya Sabha
#> 1437                                                                                                                                         Rajya Sabha
#> 1438                                                                                                                                         Rajya Sabha
#> 1439                                                                                                                                         Rajya Sabha
#> 1440                                                                                                                                         Rajya Sabha
#> 1441                                                                                                                                         Rajya Sabha
#> 1442                                                                                                                                         Rajya Sabha
#> 1443                                                                                                                                         Rajya Sabha
#> 1444                                                                                                                                         Rajya Sabha
#> 1445                                                                                                                                         Rajya Sabha
#> 1446                                                                                                                                         Rajya Sabha
#> 1447                                                                                                                                         Rajya Sabha
#> 1448                                                                                                                                         Rajya Sabha
#> 1449                                                                                                                                         Rajya Sabha
#> 1450                                                                                                                                         Rajya Sabha
#> 1451                                                                                                                                         Rajya Sabha
#> 1452                                                                                                                                         Rajya Sabha
#> 1453                                                                                                                                         Rajya Sabha
#> 1454                                                                                                                                         Rajya Sabha
#> 1455                                                                                                                                         Rajya Sabha
#> 1456                                                                                                                                         Rajya Sabha
#> 1457                                                                                                                                         Rajya Sabha
#> 1458                                                                                                                                         Rajya Sabha
#> 1459                                                                                                                                         Rajya Sabha
#> 1460                                                                                                                                         Rajya Sabha
#> 1461                                                                                                                                         Rajya Sabha
#> 1462                                                                                                                                         Rajya Sabha
#> 1463                                                                                                                                         Rajya Sabha
#> 1464                                                                                                                                         Rajya Sabha
#> 1465                                                                                                                                         Rajya Sabha
#> 1466                                                                                                                                         Rajya Sabha
#> 1467                                                                                                                                         Rajya Sabha
#> 1468                                                                                                                                         Rajya Sabha
#> 1469                                                                                                                                         Rajya Sabha
#> 1470                                                                                                                                         Rajya Sabha
#> 1471                                                                                                                                         Rajya Sabha
#> 1472                                                                                                                                         Rajya Sabha
#> 1473                                                                                                                                         Rajya Sabha
#> 1474                                                                                                                                         Rajya Sabha
#> 1475                                                                                                                                         Rajya Sabha
#> 1476                                                                                                                                         Rajya Sabha
#> 1477                                                                                                                                         Rajya Sabha
#> 1478                                                                                                                                         Rajya Sabha
#> 1479                                                                                                                                         Rajya Sabha
#> 1480                                                                                                                                         Rajya Sabha
#> 1481                                                                                                                                         Rajya Sabha
#> 1482                                                                                                                                         Rajya Sabha
#> 1483                                                                                                                                         Rajya Sabha
#> 1484                                                                                                                                         Rajya Sabha
#> 1485                                                                                                                                         Rajya Sabha
#> 1486                                                                                                                                         Rajya Sabha
#> 1487                                                                                                                                         Rajya Sabha
#> 1488                                                                                                                                         Rajya Sabha
#> 1489                                                                                                                                         Rajya Sabha
#> 1490                                                                                                                                         Rajya Sabha
#> 1491                                                                                                                                         Rajya Sabha
#> 1492                                                                                                                                         Rajya Sabha
#> 1493                                                                                                                                         Rajya Sabha
#> 1494                                                                                                                                         Rajya Sabha
#> 1495                                                                                                                                         Rajya Sabha
#> 1496                                                                                                                                         Rajya Sabha
#> 1497                                                                                                                                         Rajya Sabha
#> 1498                                                                                                                                         Rajya Sabha
#> 1499                                                                                                                                         Rajya Sabha
#> 1500                                                                                                                                         Rajya Sabha
#> 1501                                                                                                                                         Rajya Sabha
#> 1502                                                                                                                                         Rajya Sabha
#> 1503                                                                                                                                         Rajya Sabha
#> 1504                                                                                                                                         Rajya Sabha
#> 1505                                                                                                                                         Rajya Sabha
#> 1506                                                                                                                                         Rajya Sabha
#> 1507                                                                                                                                         Rajya Sabha
#> 1508                                                                                                                                         Rajya Sabha
#> 1509                                                                                                                                         Rajya Sabha
#> 1510                                                                                                                                         Rajya Sabha
#> 1511                                                                                                                                         Rajya Sabha
#> 1512                                                                                                                                         Rajya Sabha
#> 1513                                                                                                                                         Rajya Sabha
#> 1514                                                                                                                                         Rajya Sabha
#> 1515                                          Tamil Nadu|Planning, Development and Special Initiatives Department|Department of Economics and Statistics
#> 1516                                          Tamil Nadu|Planning, Development and Special Initiatives Department|Department of Economics and Statistics
#> 1517                                          Tamil Nadu|Planning, Development and Special Initiatives Department|Department of Economics and Statistics
#> 1518                                          Tamil Nadu|Planning, Development and Special Initiatives Department|Department of Economics and Statistics
#> 1519                                          Tamil Nadu|Planning, Development and Special Initiatives Department|Department of Economics and Statistics
#> 1520                                                                                                                                         Rajya Sabha
#> 1521                                                                                                                                         Rajya Sabha
#> 1522                                                                                                                                         Rajya Sabha
#> 1523                                                                                                                                         Rajya Sabha
#> 1524                                                                                                                                         Rajya Sabha
#> 1525                              Tamil Nadu|Planning, Development and Special Initiatives Department, Tamil Nadu|Department of Economics and Statistics
#> 1526                              Tamil Nadu|Planning, Development and Special Initiatives Department, Tamil Nadu|Department of Economics and Statistics
#> 1527                                                                                                                                         Rajya Sabha
#> 1528                                                                                                                                         Rajya Sabha
#> 1529                                                                                                                                         Rajya Sabha
#> 1530                                                                                                                      NITI Aayog/Planning Commission
#> 1531                                                                                                                                         Rajya Sabha
#> 1532                                                                                                                                         Rajya Sabha
#> 1533                                                                                                                                         Rajya Sabha
#> 1534                                                  Ministry of Agriculture and Farmers Welfare|Department of Animal Husbandry, Dairying and Fisheries
#> 1535                                                                                                                                         Rajya Sabha
#> 1536                                                                                                                                         Rajya Sabha
#> 1537                                                                                                                      NITI Aayog/Planning Commission
#> 1538                                                                                                                                         Rajya Sabha
#> 1539                                                                                                                                         Rajya Sabha
#> 1540                                                                                                                      NITI Aayog/Planning Commission
#> 1541                                                                                                                                         Rajya Sabha
#> 1542                                                                                                                                         Rajya Sabha
#> 1543                                                                                                                                         Rajya Sabha
#> 1544                                                                                                                                         Rajya Sabha
#> 1545                                                                                                                                         Rajya Sabha
#> 1546                                                                                                                                         Rajya Sabha
#> 1547                                                                                                                      NITI Aayog/Planning Commission
#> 1548                                                                                                                                         Rajya Sabha
#> 1549                                                                                                                      NITI Aayog/Planning Commission
#> 1550                                                                                                                      NITI Aayog/Planning Commission
#> 1551                                                                                                                                         Rajya Sabha
#> 1552                                                                                                                                         Rajya Sabha
#> 1553                              Tamil Nadu|Planning, Development and Special Initiatives Department, Tamil Nadu|Department of Economics and Statistics
#> 1554                              Tamil Nadu|Planning, Development and Special Initiatives Department, Tamil Nadu|Department of Economics and Statistics
#> 1555                                                                                                                                         Rajya Sabha
#> 1556                                                                                                                                         Rajya Sabha
#> 1557 Ministry of Agriculture and Farmers Welfare|Department of Agricultural Research and Education (DARE)|Indian Council of Agricultural Research (ICAR)
#> 1558                                                                                                                                         Rajya Sabha
#> 1559                                                                                                                                         Rajya Sabha
#> 1560                                                                                                                                         Rajya Sabha
#> 1561                                                                                                                                         Rajya Sabha
#> 1562                                                                                                                                           Karnataka
#> 1563                              Tamil Nadu|Planning, Development and Special Initiatives Department, Tamil Nadu|Department of Economics and Statistics
#> 1564                              Tamil Nadu|Planning, Development and Special Initiatives Department, Tamil Nadu|Department of Economics and Statistics
#> 1565                                                                                                                                         Rajya Sabha
#> 1566                                                                                                                                         Rajya Sabha
#> 1567                                                                                                                                         Rajya Sabha
#> 1568                                                                                                                                         Rajya Sabha
#> 1569                                                                                                                                         Rajya Sabha
#>                                               sector         source
#> 1                                                All    data.gov.in
#> 2                                                All    data.gov.in
#> 3                                                All    data.gov.in
#> 4                                                All    data.gov.in
#> 5                                                All    data.gov.in
#> 6                                                All    data.gov.in
#> 7                                                All    data.gov.in
#> 8                                                All    data.gov.in
#> 9                                                All    data.gov.in
#> 10                                               All    data.gov.in
#> 11                                               All    data.gov.in
#> 12                                               All    data.gov.in
#> 13                                               All    data.gov.in
#> 14                                               All    data.gov.in
#> 15                                               All    data.gov.in
#> 16                                               All    data.gov.in
#> 17                                               All    data.gov.in
#> 18                                               All    data.gov.in
#> 19                                               All    data.gov.in
#> 20                                               All    data.gov.in
#> 21                                               All    data.gov.in
#> 22                                               All    data.gov.in
#> 23                                               All    data.gov.in
#> 24                                               All    data.gov.in
#> 25                                               All    data.gov.in
#> 26                                               All    data.gov.in
#> 27                                               All    data.gov.in
#> 28                                               All    data.gov.in
#> 29                                               All    data.gov.in
#> 30                                               All    data.gov.in
#> 31                                               All    data.gov.in
#> 32                                               All    data.gov.in
#> 33                                               All    data.gov.in
#> 34                                               All    data.gov.in
#> 35                                               All    data.gov.in
#> 36                                               All    data.gov.in
#> 37                                               All    data.gov.in
#> 38                                               All    data.gov.in
#> 39                                               All    data.gov.in
#> 40                                               All    data.gov.in
#> 41                                               All    data.gov.in
#> 42                                               All    data.gov.in
#> 43                                               All    data.gov.in
#> 44                                               All    data.gov.in
#> 45                                               All    data.gov.in
#> 46                                               All    data.gov.in
#> 47                                               All    data.gov.in
#> 48                                               All    data.gov.in
#> 49                                               All    data.gov.in
#> 50                                               All    data.gov.in
#> 51                                               All    data.gov.in
#> 52                                               All    data.gov.in
#> 53                                               All    data.gov.in
#> 54                                               All    data.gov.in
#> 55                                               All    data.gov.in
#> 56                                               All    data.gov.in
#> 57                                               All    data.gov.in
#> 58                                               All    data.gov.in
#> 59                                               All    data.gov.in
#> 60                                               All    data.gov.in
#> 61                                               All    data.gov.in
#> 62                                               All    data.gov.in
#> 63                                               All    data.gov.in
#> 64                                               All    data.gov.in
#> 65                                               All    data.gov.in
#> 66                                               All    data.gov.in
#> 67                                               All    data.gov.in
#> 68                                               All    data.gov.in
#> 69                                               All    data.gov.in
#> 70                                               All    data.gov.in
#> 71                                               All    data.gov.in
#> 72                                               All    data.gov.in
#> 73                                               All    data.gov.in
#> 74                                               All    data.gov.in
#> 75                                               All    data.gov.in
#> 76                                               All    data.gov.in
#> 77                                               All    data.gov.in
#> 78                                               All    data.gov.in
#> 79                                               All    data.gov.in
#> 80                                               All    data.gov.in
#> 81                                               All    data.gov.in
#> 82                                               All    data.gov.in
#> 83                                               All    data.gov.in
#> 84                                               All    data.gov.in
#> 85                                               All    data.gov.in
#> 86                                               All    data.gov.in
#> 87                                               All    data.gov.in
#> 88                                               All    data.gov.in
#> 89                                               All    data.gov.in
#> 90                                               All    data.gov.in
#> 91                                               All    data.gov.in
#> 92                                               All    data.gov.in
#> 93                                               All    data.gov.in
#> 94                                               All    data.gov.in
#> 95                                               All    data.gov.in
#> 96                                               All    data.gov.in
#> 97                                               All    data.gov.in
#> 98                                               All    data.gov.in
#> 99                                               All    data.gov.in
#> 100                                              All    data.gov.in
#> 101                                              All    data.gov.in
#> 102                                              All    data.gov.in
#> 103                                              All    data.gov.in
#> 104                                              All    data.gov.in
#> 105                                              All    data.gov.in
#> 106                                              All    data.gov.in
#> 107                                              All    data.gov.in
#> 108                                              All    data.gov.in
#> 109                                              All    data.gov.in
#> 110                                              All    data.gov.in
#> 111                                              All    data.gov.in
#> 112                                              All    data.gov.in
#> 113                                              All    data.gov.in
#> 114                                              All    data.gov.in
#> 115                                              All    data.gov.in
#> 116                                              All    data.gov.in
#> 117                                              All    data.gov.in
#> 118                                              All    data.gov.in
#> 119                                              All    data.gov.in
#> 120                                              All    data.gov.in
#> 121                                              All    data.gov.in
#> 122                                              All    data.gov.in
#> 123                                              All    data.gov.in
#> 124                                              All    data.gov.in
#> 125                                              All    data.gov.in
#> 126                                              All    data.gov.in
#> 127                                              All    data.gov.in
#> 128                                              All    data.gov.in
#> 129                                              All    data.gov.in
#> 130  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 131  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 132  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 133  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 134  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 135  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 136  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 137  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 138  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 139  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 140  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 141  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 142  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 143  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 144  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 145  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 146  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 147  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 148  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 149  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 150  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 151  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 152  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 153  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 154  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 155  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 156  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 157  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 158  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 159  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 160  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 161  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 162  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 163  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 164  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 165  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 166  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 167  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 168  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 169  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 170  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 171  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 172  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 173  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 174  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 175  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 176  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 177  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 178  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 179  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 180  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 181  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 182  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 183  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 184  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 185  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 186  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 187  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 188  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 189  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 190  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 191  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 192  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 193  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 194  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 195  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 196  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 197  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 198  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 199  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 200  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 201  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 202  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 203  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 204  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 205  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 206  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 207  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 208  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 209  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 210  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 211  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 212  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 213  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 214  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 215  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 216  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 217  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 218  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 219  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 220  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 221  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 222  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 223  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 224  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 225  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 226  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 227  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 228  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 229  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 230  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 231  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 232  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 233  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 234  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 235  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 236  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 237  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 238  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 239  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 240  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 241  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 242  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 243  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 244  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 245  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 246  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 247  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 248  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 249  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 250  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 251  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 252  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 253  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 254  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 255  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 256  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 257  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 258  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 259  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 260  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 261  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 262  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 263  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 264  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 265  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 266  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 267  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 268  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 269  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 270  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 271  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 272  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 273  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 274  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 275  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 276  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 277  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 278  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 279  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 280  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 281  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 282  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 283  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 284  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 285  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 286  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 287  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 288  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 289  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 290  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 291  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 292  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 293  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 294  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 295  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 296  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 297  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 298  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 299  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 300  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 301  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 302  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 303  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 304  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 305  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 306  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 307  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 308  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 309  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 310  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 311  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 312  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 313  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 314  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 315  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 316  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 317  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 318  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 319  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 320  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 321  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 322  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 323  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 324  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 325  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 326  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 327  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 328  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 329  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 330  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 331  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 332  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 333  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 334  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 335  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 336  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 337  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 338  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 339  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 340  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 341  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 342  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 343  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 344  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 345  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 346  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 347  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 348  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 349  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 350  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 351  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 352  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 353  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 354  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 355  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 356  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 357  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 358  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 359  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 360  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 361  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 362  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 363  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 364  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 365  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 366  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 367  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 368  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 369  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 370  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 371  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 372  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 373  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 374  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 375  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 376  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 377  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 378  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 379  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 380  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 381  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 382  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 383  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 384  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 385  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 386  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 387  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 388  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 389  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 390  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 391  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 392  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 393  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 394  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 395  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 396  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 397  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 398  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 399  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 400  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 401  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 402  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 403  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 404  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 405  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 406  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 407  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 408  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 409  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 410  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 411  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 412  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 413  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 414  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 415  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 416  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 417  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 418  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 419  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 420  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 421  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 422  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 423  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 424  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 425  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 426  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 427  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 428  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 429  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 430  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 431  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 432  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 433  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 434  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 435  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 436  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 437  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 438  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 439  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 440  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 441  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 442  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 443  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 444  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 445  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 446  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 447  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 448  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 449  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 450  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 451  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 452  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 453  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 454  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 455  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 456  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 457  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 458  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 459  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 460  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 461  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 462  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 463  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 464  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 465  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 466  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 467  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 468  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 469  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 470  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 471  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 472  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 473  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 474  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 475  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 476  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 477  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 478  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 479  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 480  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 481  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 482  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 483  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 484  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 485  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 486  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 487  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 488  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 489  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 490  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 491  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 492  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 493  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 494  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 495  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 496  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 497  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 498  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 499  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 500  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 501  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 502  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 503  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 504  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 505  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 506  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 507  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 508  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 509  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 510  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 511  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 512  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 513  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 514  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 515  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 516  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 517  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 518  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 519  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 520  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 521  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 522  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 523  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 524  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 525  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 526  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 527  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 528  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 529  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 530  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 531  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 532  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 533  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 534  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 535  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 536  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 537  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 538  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 539  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 540  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 541  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 542  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 543  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 544  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 545  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 546  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 547  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 548  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 549  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 550  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 551  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 552  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 553  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 554                                              All    data.gov.in
#> 555                                              All    data.gov.in
#> 556                                              All    data.gov.in
#> 557                                              All    data.gov.in
#> 558                                              All    data.gov.in
#> 559                                              All    data.gov.in
#> 560                                              All    data.gov.in
#> 561                                              All    data.gov.in
#> 562                                              All    data.gov.in
#> 563                                              All    data.gov.in
#> 564                                              All    data.gov.in
#> 565                                              All    data.gov.in
#> 566                                              All    data.gov.in
#> 567                                              All    data.gov.in
#> 568                                              All    data.gov.in
#> 569                                              All    data.gov.in
#> 570                                              All    data.gov.in
#> 571                                              All    data.gov.in
#> 572                                              All    data.gov.in
#> 573                                              All    data.gov.in
#> 574                                              All    data.gov.in
#> 575                                              All    data.gov.in
#> 576                                              All    data.gov.in
#> 577                                              All    data.gov.in
#> 578                                              All    data.gov.in
#> 579                                              All    data.gov.in
#> 580                                              All    data.gov.in
#> 581                                              All    data.gov.in
#> 582                                              All    data.gov.in
#> 583                                              All    data.gov.in
#> 584                                              All    data.gov.in
#> 585                                              All    data.gov.in
#> 586                                              All    data.gov.in
#> 587                                              All    data.gov.in
#> 588                                              All    data.gov.in
#> 589                                              All    data.gov.in
#> 590                                              All    data.gov.in
#> 591                                              All    data.gov.in
#> 592                                              All    data.gov.in
#> 593                                              All    data.gov.in
#> 594                                              All    data.gov.in
#> 595                                              All    data.gov.in
#> 596                                              All    data.gov.in
#> 597                                              All    data.gov.in
#> 598                                              All    data.gov.in
#> 599                                              All    data.gov.in
#> 600                                              All    data.gov.in
#> 601                                              All    data.gov.in
#> 602                                              All    data.gov.in
#> 603                                              All    data.gov.in
#> 604                                              All    data.gov.in
#> 605                                              All    data.gov.in
#> 606                                              All    data.gov.in
#> 607                                              All    data.gov.in
#> 608                                              All    data.gov.in
#> 609                                              All    data.gov.in
#> 610                                              All    data.gov.in
#> 611                                              All    data.gov.in
#> 612                                              All    data.gov.in
#> 613                                              All    data.gov.in
#> 614                                              All    data.gov.in
#> 615                                              All    data.gov.in
#> 616                                              All    data.gov.in
#> 617                                              All    data.gov.in
#> 618                                              All    data.gov.in
#> 619                                              All    data.gov.in
#> 620                                              All    data.gov.in
#> 621                                              All    data.gov.in
#> 622                                              All    data.gov.in
#> 623                                              All    data.gov.in
#> 624                                              All    data.gov.in
#> 625                                              All    data.gov.in
#> 626                                              All    data.gov.in
#> 627                                              All    data.gov.in
#> 628                                              All    data.gov.in
#> 629                                              All    data.gov.in
#> 630                                              All    data.gov.in
#> 631                                              All    data.gov.in
#> 632                                              All    data.gov.in
#> 633                                              All    data.gov.in
#> 634                                              All    data.gov.in
#> 635                                              All    data.gov.in
#> 636                                              All    data.gov.in
#> 637                                              All    data.gov.in
#> 638                                              All    data.gov.in
#> 639  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 640  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 641  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 642  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 643  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 644  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 645  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 646  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 647  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 648  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 649  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 650  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 651  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 652  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 653  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 654  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 655  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 656  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 657  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 658  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 659  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 660  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 661  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 662  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 663  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 664  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 665  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 666  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 667  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 668  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 669  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 670  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 671  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 672  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 673  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 674  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 675  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 676  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 677  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 678  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 679  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 680  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 681  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 682  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 683  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 684  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 685  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 686  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 687  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 688  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 689  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 690  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 691  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 692  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 693  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 694  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 695  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 696  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 697  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 698  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 699  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 700  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 701  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 702  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 703  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 704  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 705  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 706  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 707  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 708  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 709  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 710  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 711  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 712  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 713  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 714  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 715  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 716  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 717  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 718  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 719  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 720  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 721  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 722  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 723  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 724  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 725  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 726  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 727  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 728  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 729  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 730  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 731  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 732  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 733  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 734  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 735  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 736  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 737  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 738  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 739  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 740  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 741  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 742  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 743  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 744  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 745  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 746  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 747  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 748  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 749  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 750  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 751  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 752  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 753  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 754  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 755  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 756  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 757  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 758  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 759  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 760  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 761  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 762  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 763  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 764  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 765  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 766  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 767  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 768  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 769  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 770  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 771  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 772  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 773  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 774  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 775  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 776  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 777  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 778  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 779  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 780  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 781  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 782  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 783  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 784  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 785  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 786  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 787  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 788  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 789  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 790  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 791  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 792  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 793  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 794  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 795  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 796  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 797  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 798  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 799  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 800  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 801  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 802  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 803  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 804  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 805  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 806  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 807  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 808  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 809  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 810  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 811  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 812  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 813  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 814  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 815  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 816  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 817  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 818  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 819  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 820  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 821  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 822  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 823  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 824  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 825  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 826  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 827  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 828  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 829  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 830  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 831  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 832  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 833  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 834  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 835  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 836  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 837  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 838  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 839  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 840  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 841  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 842  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 843  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 844  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 845  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 846  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 847  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 848  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 849  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 850  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 851  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 852  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 853  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 854  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 855  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 856  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 857  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 858  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 859  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 860  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 861  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 862  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 863  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 864  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 865  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 866  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 867  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 868  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 869  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 870  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 871                                              All    data.gov.in
#> 872                                              All    data.gov.in
#> 873                                              All    data.gov.in
#> 874                                              All    data.gov.in
#> 875                                              All    data.gov.in
#> 876                                              All    data.gov.in
#> 877                                              All    data.gov.in
#> 878                                              All    data.gov.in
#> 879                                              All    data.gov.in
#> 880                                              All    data.gov.in
#> 881                                              All    data.gov.in
#> 882                                              All    data.gov.in
#> 883                                              All    data.gov.in
#> 884                                              All    data.gov.in
#> 885                                              All    data.gov.in
#> 886                                              All    data.gov.in
#> 887                                              All    data.gov.in
#> 888  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 889  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 890  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 891  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 892  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 893  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 894  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 895  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 896  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 897  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 898  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 899  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 900  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 901  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 902  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 903  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 904  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 905  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 906  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 907  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 908  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 909  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 910  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 911  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 912  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 913  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 914  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 915  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 916  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 917  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 918  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 919  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 920  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 921  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 922  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 923  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 924  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 925  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 926  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 927  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 928  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 929  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 930  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 931  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 932  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 933  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 934  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 935  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 936  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 937  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 938  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 939  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 940  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 941  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 942  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 943  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 944  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 945  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 946  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 947  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 948  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 949  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 950  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 951  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 952  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 953  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 954  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 955  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 956  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 957  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 958  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 959  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 960  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 961  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 962  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 963  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 964  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 965  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 966  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 967  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 968  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 969  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 970  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 971  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 972  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 973  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 974  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 975  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 976  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 977  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 978  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 979  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 980  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 981  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 982  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 983  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 984  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 985  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 986  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 987  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 988  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 989  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 990  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 991  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 992  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 993  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 994  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 995  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 996  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 997  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 998  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 999  Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1000 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1001 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1002 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1003 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1004 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1005 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1006 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1007 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1008 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1009 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1010 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1011 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1012 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1013 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1014 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1015 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1016 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1017 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1018 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1019 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1020 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1021 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1022 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1023 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1024 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1025 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1026 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1027 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1028 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1029 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1030 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1031 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1032 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1033 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1034 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1035 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1036 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1037 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1038 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1039 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1040 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1041 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1042 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1043 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1044 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1045 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1046 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1047 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1048 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1049 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1050 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1051 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1052 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1053 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1054 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1055 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1056 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1057 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1058 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1059 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1060 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1061 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1062 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1063 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1064 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1065 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1066 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1067 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1068 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1069 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1070 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1071 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1072 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1073 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1074 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1075 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1076 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1077 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1078 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1079 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1080 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1081 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1082 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1083 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1084 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1085 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1086 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1087 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1088 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1089 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1090 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1091 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1092 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1093 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1094 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1095 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1096 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1097 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1098 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1099 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1100 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1101 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1102 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1103 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1104 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1105 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1106 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1107 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1108 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1109 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1110 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1111 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1112 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1113 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1114 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1115 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1116 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1117 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1118 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1119 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1120 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1121 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1122 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1123 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1124 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1125 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1126 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1127 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1128 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1129 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1130 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1131 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1132 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1133 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1134 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1135 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1136 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1137 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1138 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1139 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1140 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1141 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1142 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1143 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1144 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1145 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1146 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1147 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1148 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1149 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1150 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1151 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1152 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1153 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1154 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1155 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1156 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1157 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1158 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1159 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1160 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1161 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1162 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1163 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1164 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1165 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1166 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1167 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1168 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1169 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1170 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1171 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1172 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1173 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1174 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1175 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1176 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1177 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1178 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1179 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1180 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1181 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1182 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1183 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1184 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1185 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1186 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1187 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1188 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1189 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1190 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1191 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1192 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1193 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1194 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1195 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1196 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1197 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1198 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1199 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1200 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1201 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1202 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1203 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1204 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1205 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1206 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1207 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1208 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1209 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1210 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1211 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1212 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1213 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1214 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1215 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1216 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1217 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1218 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1219 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1220 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1221 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1222 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1223 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1224 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1225 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1226 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1227 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1228 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1229 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1230 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1231 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1232 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1233 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1234 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1235 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1236 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1237 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1238 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1239 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1240 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1241 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1242 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1243 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1244 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1245 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1246 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1247 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1248 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1249 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1250 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1251 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1252 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1253 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1254 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1255 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1256 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1257 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1258 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1259 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1260 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1261 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1262 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1263 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1264 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1265 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1266 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1267 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1268 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1269 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1270 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1271 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1272 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1273 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1274 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1275 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1276 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1277 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1278 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1279 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1280 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1281 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1282 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1283 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1284 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1285 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1286 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1287 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1288 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1289 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1290 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1291 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1292 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1293 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1294 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1295 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1296 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1297 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1298 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1299 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1300 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1301 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1302 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1303 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1304 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1305 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1306 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1307 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1308 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1309 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1310 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1311 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1312 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1313 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1314 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1315 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1316 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1317 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1318 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1319 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1320 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1321 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1322 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1323 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1324 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1325 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1326 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1327 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1328 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1329 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1330 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1331 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1332 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1333 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1334 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1335 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1336 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1337 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1338 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1339 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1340 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1341 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1342 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1343 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1344 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1345 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1346 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1347 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1348 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1349 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1350 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1351 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1352 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1353 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1354 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1355 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1356 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1357 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1358 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1359 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1360 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1361 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1362 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1363 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1364 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1365 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1366 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1367 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1368 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1369 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1370 Census and Surveys|Census|Population Enumerator    data.gov.in
#> 1371                                             All    data.gov.in
#> 1372                                             All    data.gov.in
#> 1373                                             All    data.gov.in
#> 1374                                             All    data.gov.in
#> 1375                                             All    data.gov.in
#> 1376                                             All    data.gov.in
#> 1377                                             All    data.gov.in
#> 1378                                             All    data.gov.in
#> 1379                                             All    data.gov.in
#> 1380                                             All    data.gov.in
#> 1381                                             All    data.gov.in
#> 1382                                             All    data.gov.in
#> 1383                                             All    data.gov.in
#> 1384                                             All    data.gov.in
#> 1385                                             All    data.gov.in
#> 1386                                             All    data.gov.in
#> 1387                                             All    data.gov.in
#> 1388                                             All    data.gov.in
#> 1389                                             All    data.gov.in
#> 1390                                             All    data.gov.in
#> 1391                                             All    data.gov.in
#> 1392                                             All    data.gov.in
#> 1393                                             All    data.gov.in
#> 1394                                             All    data.gov.in
#> 1395                                             All    data.gov.in
#> 1396                                             All    data.gov.in
#> 1397                                             All    data.gov.in
#> 1398                                             All    data.gov.in
#> 1399                                             All    data.gov.in
#> 1400                                             All    data.gov.in
#> 1401                                             All    data.gov.in
#> 1402                                             All    data.gov.in
#> 1403                                             All    data.gov.in
#> 1404                                             All    data.gov.in
#> 1405                                             All    data.gov.in
#> 1406                                             All    data.gov.in
#> 1407                                             All    data.gov.in
#> 1408                                             All    data.gov.in
#> 1409                                             All    data.gov.in
#> 1410                                             All    data.gov.in
#> 1411                                             All    data.gov.in
#> 1412                                             All    data.gov.in
#> 1413                                             All    data.gov.in
#> 1414                                             All    data.gov.in
#> 1415                                             All    data.gov.in
#> 1416                                             All    data.gov.in
#> 1417                                             All    data.gov.in
#> 1418                                             All    data.gov.in
#> 1419                                             All    data.gov.in
#> 1420                                             All    data.gov.in
#> 1421                                             All    data.gov.in
#> 1422                                             All    data.gov.in
#> 1423                                             All    data.gov.in
#> 1424                                             All    data.gov.in
#> 1425                                             All    data.gov.in
#> 1426                                             All    data.gov.in
#> 1427                                             All    data.gov.in
#> 1428                                             All    data.gov.in
#> 1429                                             All    data.gov.in
#> 1430                                             All    data.gov.in
#> 1431                                             All    data.gov.in
#> 1432                                             All    data.gov.in
#> 1433                                             All    data.gov.in
#> 1434                                             All    data.gov.in
#> 1435                                             All    data.gov.in
#> 1436                                             All    data.gov.in
#> 1437                                             All    data.gov.in
#> 1438                                             All    data.gov.in
#> 1439                                             All    data.gov.in
#> 1440                                             All    data.gov.in
#> 1441                                             All    data.gov.in
#> 1442                                             All    data.gov.in
#> 1443                                             All    data.gov.in
#> 1444                                             All    data.gov.in
#> 1445                                             All    data.gov.in
#> 1446                                             All    data.gov.in
#> 1447                                             All    data.gov.in
#> 1448                                             All    data.gov.in
#> 1449                                             All    data.gov.in
#> 1450                                             All    data.gov.in
#> 1451                                             All    data.gov.in
#> 1452                                             All    data.gov.in
#> 1453                                             All    data.gov.in
#> 1454                                             All    data.gov.in
#> 1455                                             All    data.gov.in
#> 1456                                             All    data.gov.in
#> 1457                                             All    data.gov.in
#> 1458                                             All    data.gov.in
#> 1459                                             All    data.gov.in
#> 1460                                             All    data.gov.in
#> 1461                                             All    data.gov.in
#> 1462                                             All    data.gov.in
#> 1463                                             All    data.gov.in
#> 1464                                             All    data.gov.in
#> 1465                                             All    data.gov.in
#> 1466                                             All    data.gov.in
#> 1467                                             All    data.gov.in
#> 1468                                             All    data.gov.in
#> 1469                                             All    data.gov.in
#> 1470                                             All    data.gov.in
#> 1471                                             All    data.gov.in
#> 1472                                             All    data.gov.in
#> 1473                                             All    data.gov.in
#> 1474                                             All    data.gov.in
#> 1475                                             All    data.gov.in
#> 1476                                             All    data.gov.in
#> 1477                                             All    data.gov.in
#> 1478                                             All    data.gov.in
#> 1479                                             All    data.gov.in
#> 1480                                             All    data.gov.in
#> 1481                                             All    data.gov.in
#> 1482                                             All    data.gov.in
#> 1483                                             All    data.gov.in
#> 1484                                             All    data.gov.in
#> 1485                                             All    data.gov.in
#> 1486                                             All    data.gov.in
#> 1487                                             All    data.gov.in
#> 1488                                             All    data.gov.in
#> 1489                                             All    data.gov.in
#> 1490                                             All    data.gov.in
#> 1491                                             All    data.gov.in
#> 1492                                             All    data.gov.in
#> 1493                                             All    data.gov.in
#> 1494                                             All    data.gov.in
#> 1495                                             All    data.gov.in
#> 1496                                             All    data.gov.in
#> 1497                                             All    data.gov.in
#> 1498                                             All    data.gov.in
#> 1499                                             All    data.gov.in
#> 1500                                             All    data.gov.in
#> 1501                                             All    data.gov.in
#> 1502                                             All    data.gov.in
#> 1503                                             All    data.gov.in
#> 1504                                             All    data.gov.in
#> 1505                                             All    data.gov.in
#> 1506                                             All    data.gov.in
#> 1507                                             All    data.gov.in
#> 1508                                             All    data.gov.in
#> 1509                                             All    data.gov.in
#> 1510                                             All    data.gov.in
#> 1511                                             All    data.gov.in
#> 1512                                             All    data.gov.in
#> 1513                                             All    data.gov.in
#> 1514                                             All    data.gov.in
#> 1515                                      Statistics tn.data.gov.in
#> 1516                                      Statistics tn.data.gov.in
#> 1517                                      Statistics tn.data.gov.in
#> 1518                                      Statistics tn.data.gov.in
#> 1519                                      Statistics tn.data.gov.in
#> 1520                                             All    data.gov.in
#> 1521                                             All    data.gov.in
#> 1522                                             All    data.gov.in
#> 1523                                             All    data.gov.in
#> 1524                                             All    data.gov.in
#> 1525                                      Statistics tn.data.gov.in
#> 1526                                      Statistics tn.data.gov.in
#> 1527                                             All    data.gov.in
#> 1528                                             All    data.gov.in
#> 1529                                             All    data.gov.in
#> 1530                                     Agriculture    data.gov.in
#> 1531                                             All    data.gov.in
#> 1532                                             All    data.gov.in
#> 1533                                             All    data.gov.in
#> 1534                                Animal Husbandry    data.gov.in
#> 1535                                             All    data.gov.in
#> 1536                                             All    data.gov.in
#> 1537                                         Economy    data.gov.in
#> 1538                                             All    data.gov.in
#> 1539                                             All    data.gov.in
#> 1540                                         Economy    data.gov.in
#> 1541                                             All    data.gov.in
#> 1542                                             All    data.gov.in
#> 1543                                             All    data.gov.in
#> 1544                                             All    data.gov.in
#> 1545                                             All    data.gov.in
#> 1546                                             All    data.gov.in
#> 1547                                     Agriculture    data.gov.in
#> 1548                                             All    data.gov.in
#> 1549                                         Economy    data.gov.in
#> 1550                                Power and Energy    data.gov.in
#> 1551                                             All    data.gov.in
#> 1552                                             All    data.gov.in
#> 1553                                      Statistics tn.data.gov.in
#> 1554                                      Statistics tn.data.gov.in
#> 1555                                             All    data.gov.in
#> 1556                                             All    data.gov.in
#> 1557                                     Agriculture    data.gov.in
#> 1558                                             All    data.gov.in
#> 1559                                             All    data.gov.in
#> 1560                                             All    data.gov.in
#> 1561                                             All    data.gov.in
#> 1562              Agricultural Marketing|Agriculture    data.gov.in
#> 1563                                      Statistics tn.data.gov.in
#> 1564                                      Statistics tn.data.gov.in
#> 1565                                             All    data.gov.in
#> 1566                                             All    data.gov.in
#> 1567                                             All    data.gov.in
#> 1568                                             All    data.gov.in
#> 1569                                             All    data.gov.in
#>              created_date         updated_date
#> 1    2021-03-03T05:49:12Z 2021-03-12T17:09:47Z
#> 2    2021-03-04T02:57:25Z 2021-03-12T16:53:07Z
#> 3    2021-03-04T03:17:43Z 2021-03-12T16:03:07Z
#> 4    2021-03-03T05:30:06Z 2021-03-12T14:23:07Z
#> 5    2021-03-03T05:22:54Z 2021-03-12T13:26:27Z
#> 6    2021-03-03T08:11:33Z 2021-03-12T13:06:27Z
#> 7    2021-03-04T03:22:15Z 2021-03-12T12:53:07Z
#> 8    2021-03-03T08:32:17Z 2021-03-12T11:56:27Z
#> 9    2021-03-04T08:01:45Z 2021-03-12T10:29:46Z
#> 10   2021-03-04T07:54:05Z 2021-03-12T09:29:46Z
#> 11   2021-03-03T08:08:44Z 2021-03-11T19:50:38Z
#> 12   2021-03-03T08:06:15Z 2021-03-11T19:00:38Z
#> 13   2021-03-04T07:29:01Z 2021-03-11T16:47:17Z
#> 14   2021-03-03T07:43:51Z 2021-03-11T16:20:38Z
#> 15   2021-03-03T07:40:39Z 2021-03-11T15:37:17Z
#> 16   2021-03-03T05:18:31Z 2021-03-11T15:10:37Z
#> 17   2021-03-03T05:18:07Z 2021-03-11T15:07:17Z
#> 18   2021-03-03T05:16:30Z 2021-03-11T14:57:17Z
#> 19   2021-03-04T11:30:28Z 2021-03-10T11:02:09Z
#> 20   2021-03-04T11:26:06Z 2021-03-10T10:15:49Z
#> 21   2021-03-04T11:24:27Z 2021-03-10T10:13:41Z
#> 22   2021-03-01T11:22:13Z 2021-03-05T20:17:36Z
#> 23   2021-03-01T11:29:18Z 2021-03-05T20:08:56Z
#> 24   2021-03-02T04:16:58Z 2021-03-05T20:02:16Z
#> 25   2021-03-02T04:23:56Z 2021-03-05T19:54:56Z
#> 26   2021-03-01T11:55:07Z 2021-03-05T19:46:16Z
#> 27   2021-03-01T12:21:24Z 2021-03-05T19:42:56Z
#> 28   2021-03-01T12:17:21Z 2021-03-05T19:37:36Z
#> 29   2021-03-02T08:06:02Z 2021-03-05T19:30:16Z
#> 30   2021-03-01T11:38:47Z 2021-03-05T19:26:56Z
#> 31   2021-03-01T11:45:32Z 2021-03-05T19:20:16Z
#> 32   2021-03-02T11:39:29Z 2021-03-05T19:18:56Z
#> 33   2021-03-02T07:52:39Z 2021-03-05T19:13:36Z
#> 34   2021-03-02T05:40:16Z 2021-03-05T14:57:58Z
#> 35   2021-03-02T08:07:12Z 2021-03-05T14:39:07Z
#> 36   2021-03-02T05:24:23Z 2021-03-05T14:34:55Z
#> 37   2021-03-02T11:58:28Z 2021-03-05T14:18:10Z
#> 38   2021-03-02T11:44:15Z 2021-03-05T13:50:55Z
#> 39   2021-03-02T11:49:58Z 2021-03-05T13:38:21Z
#> 40   2021-03-02T04:32:22Z 2021-03-05T13:36:15Z
#> 41   2021-03-02T11:30:34Z 2021-03-05T13:17:24Z
#> 42   2021-03-02T11:42:16Z 2021-03-05T13:10:05Z
#> 43   2021-03-02T11:36:14Z 2021-03-05T13:06:55Z
#> 44   2021-03-02T11:17:39Z 2021-03-05T12:51:13Z
#> 45   2021-03-02T11:27:16Z 2021-03-05T12:42:50Z
#> 46   2021-03-02T11:23:15Z 2021-03-05T12:38:38Z
#> 47   2021-03-02T11:14:51Z 2021-03-05T12:15:35Z
#> 48   2021-03-02T11:10:06Z 2021-03-05T12:11:24Z
#> 49   2021-03-02T11:01:48Z 2021-03-05T11:46:15Z
#> 50   2021-03-02T10:57:30Z 2021-03-05T11:43:07Z
#> 51   2021-03-02T08:11:12Z 2021-03-05T11:11:41Z
#> 52   2021-03-02T08:07:58Z 2021-03-05T11:01:13Z
#> 53   2021-03-02T08:02:44Z 2021-03-05T10:43:24Z
#> 54   2021-03-02T07:58:38Z 2021-03-05T10:38:10Z
#> 55   2021-03-02T07:55:02Z 2021-03-05T10:27:41Z
#> 56   2021-03-02T07:50:12Z 2021-03-05T10:10:55Z
#> 57   2021-03-02T07:45:02Z 2021-03-05T10:06:44Z
#> 58   2021-03-02T07:42:15Z 2021-03-05T09:55:12Z
#> 59   2021-03-02T10:59:26Z 2021-03-05T09:38:27Z
#> 60   2021-03-02T05:41:50Z 2021-03-05T09:37:24Z
#> 61   2021-03-02T05:31:17Z 2021-03-05T09:23:47Z
#> 62   2021-03-02T08:13:36Z 2021-03-05T09:11:12Z
#> 63   2021-03-02T04:33:16Z 2021-03-05T09:10:10Z
#> 64   2021-03-02T05:16:04Z 2021-03-05T08:58:38Z
#> 65   2021-03-02T11:45:27Z 2021-03-05T08:55:30Z
#> 66   2021-03-04T08:17:10Z 2021-03-04T08:17:10Z
#> 67   2021-03-04T08:10:39Z 2021-03-04T08:10:39Z
#> 68   2021-03-04T08:08:38Z 2021-03-04T08:08:38Z
#> 69   2021-03-04T07:50:35Z 2021-03-04T07:50:35Z
#> 70   2021-03-04T07:43:49Z 2021-03-04T07:43:49Z
#> 71   2021-03-04T07:28:15Z 2021-03-04T07:28:15Z
#> 72   2021-03-04T07:25:49Z 2021-03-04T07:25:49Z
#> 73   2021-03-04T07:23:23Z 2021-03-04T07:23:23Z
#> 74   2021-03-04T07:18:57Z 2021-03-04T07:18:57Z
#> 75   2021-03-04T07:09:43Z 2021-03-04T07:09:43Z
#> 76   2021-03-04T07:02:57Z 2021-03-04T07:02:57Z
#> 77   2021-03-04T07:02:09Z 2021-03-04T07:02:09Z
#> 78   2021-03-04T06:53:22Z 2021-03-04T06:53:22Z
#> 79   2021-03-04T06:50:52Z 2021-03-04T06:50:52Z
#> 80   2021-03-04T06:44:29Z 2021-03-04T06:44:29Z
#> 81   2021-03-04T06:37:02Z 2021-03-04T06:37:02Z
#> 82   2021-03-04T06:34:16Z 2021-03-04T06:34:16Z
#> 83   2021-03-04T06:33:28Z 2021-03-04T06:33:28Z
#> 84   2021-03-04T06:26:12Z 2021-03-04T06:26:12Z
#> 85   2021-03-04T06:23:48Z 2021-03-04T06:23:48Z
#> 86   2021-03-04T06:10:30Z 2021-03-04T06:10:30Z
#> 87   2021-03-04T06:09:43Z 2021-03-04T06:09:43Z
#> 88   2021-03-04T06:06:57Z 2021-03-04T06:06:57Z
#> 89   2021-03-04T06:05:44Z 2021-03-04T06:05:44Z
#> 90   2021-03-04T06:00:09Z 2021-03-04T06:00:09Z
#> 91   2021-03-04T05:59:19Z 2021-03-04T05:59:19Z
#> 92   2021-03-04T05:56:52Z 2021-03-04T05:56:52Z
#> 93   2021-03-04T05:44:07Z 2021-03-04T05:44:07Z
#> 94   2021-03-04T05:40:57Z 2021-03-04T05:40:57Z
#> 95   2021-03-04T05:39:44Z 2021-03-04T05:39:44Z
#> 96   2021-03-04T05:33:19Z 2021-03-04T05:33:19Z
#> 97   2021-03-04T05:19:23Z 2021-03-04T05:19:23Z
#> 98   2021-03-04T05:15:52Z 2021-03-04T05:15:52Z
#> 99   2021-03-04T05:14:41Z 2021-03-04T05:14:41Z
#> 100  2021-03-04T05:08:43Z 2021-03-04T05:08:43Z
#> 101  2021-03-04T04:55:02Z 2021-03-04T04:55:02Z
#> 102  2021-03-04T04:51:48Z 2021-03-04T04:51:48Z
#> 103  2021-03-04T04:48:06Z 2021-03-04T04:48:06Z
#> 104  2021-03-04T04:40:17Z 2021-03-04T04:40:17Z
#> 105  2021-03-04T04:29:55Z 2021-03-04T04:29:55Z
#> 106  2021-03-04T04:23:37Z 2021-03-04T04:23:37Z
#> 107  2021-03-04T04:19:59Z 2021-03-04T04:19:59Z
#> 108  2021-03-04T04:18:20Z 2021-03-04T04:18:20Z
#> 109  2021-03-04T04:16:17Z 2021-03-04T04:16:17Z
#> 110  2021-03-04T04:11:46Z 2021-03-04T04:11:46Z
#> 111  2021-03-04T03:54:58Z 2021-03-04T03:54:58Z
#> 112  2021-03-04T03:50:04Z 2021-03-04T03:50:04Z
#> 113  2021-03-04T03:49:17Z 2021-03-04T03:49:17Z
#> 114  2021-03-04T03:44:22Z 2021-03-04T03:44:22Z
#> 115  2021-03-04T03:28:51Z 2021-03-04T03:28:51Z
#> 116  2021-03-04T03:02:29Z 2021-03-04T03:02:29Z
#> 117  2021-03-03T08:37:11Z 2021-03-03T08:37:11Z
#> 118  2021-03-03T08:36:23Z 2021-03-03T08:36:23Z
#> 119  2021-03-03T08:16:52Z 2021-03-03T08:16:52Z
#> 120  2021-03-03T08:12:22Z 2021-03-03T08:12:22Z
#> 121  2021-03-03T08:09:34Z 2021-03-03T08:09:34Z
#> 122  2021-03-03T07:44:41Z 2021-03-03T07:44:41Z
#> 123  2021-03-03T06:05:29Z 2021-03-03T06:05:29Z
#> 124  2021-03-03T06:02:36Z 2021-03-03T06:02:36Z
#> 125  2021-03-03T05:55:42Z 2021-03-03T05:55:42Z
#> 126  2021-03-03T05:48:22Z 2021-03-03T05:48:22Z
#> 127  2021-03-03T05:44:47Z 2021-03-03T05:44:47Z
#> 128  2021-03-03T05:39:18Z 2021-03-03T05:39:18Z
#> 129  2021-03-03T05:22:06Z 2021-03-03T05:22:06Z
#> 130  2020-12-04T06:26:59Z 2020-12-08T17:12:06Z
#> 131  2020-12-04T06:24:51Z 2020-12-08T17:12:04Z
#> 132  2020-12-04T06:24:17Z 2020-12-08T17:12:02Z
#> 133  2020-12-04T06:22:30Z 2020-12-08T17:11:59Z
#> 134  2020-12-04T06:22:06Z 2020-12-08T17:11:57Z
#> 135  2020-12-04T06:20:28Z 2020-12-08T17:11:55Z
#> 136  2020-12-04T06:17:49Z 2020-12-08T17:11:53Z
#> 137  2020-12-04T06:16:55Z 2020-12-08T17:11:51Z
#> 138  2020-12-04T06:10:36Z 2020-12-08T17:11:48Z
#> 139  2020-12-04T06:04:50Z 2020-12-08T17:11:46Z
#> 140  2020-12-04T06:03:25Z 2020-12-08T17:11:44Z
#> 141  2020-12-04T05:59:10Z 2020-12-08T17:11:43Z
#> 142  2020-12-04T05:58:14Z 2020-12-08T17:11:40Z
#> 143  2020-12-04T05:53:16Z 2020-12-08T17:11:38Z
#> 144  2020-12-04T05:50:59Z 2020-12-08T17:11:35Z
#> 145  2020-12-04T05:47:21Z 2020-12-08T17:11:33Z
#> 146  2020-12-04T05:43:41Z 2020-12-08T17:11:31Z
#> 147  2020-12-04T05:40:02Z 2020-12-08T17:11:28Z
#> 148  2020-12-04T05:35:53Z 2020-12-08T17:11:26Z
#> 149  2020-12-04T05:35:31Z 2020-12-08T17:11:24Z
#> 150  2020-12-04T05:30:01Z 2020-12-08T17:11:22Z
#> 151  2020-12-04T05:27:36Z 2020-12-08T17:11:19Z
#> 152  2020-12-04T05:24:21Z 2020-12-08T17:11:17Z
#> 153  2020-12-04T05:20:35Z 2020-12-08T17:11:15Z
#> 154  2020-12-04T05:11:55Z 2020-12-08T17:11:14Z
#> 155  2020-12-04T05:10:12Z 2020-12-08T17:11:11Z
#> 156  2020-12-04T05:05:38Z 2020-12-08T17:11:10Z
#> 157  2020-12-04T04:59:42Z 2020-12-08T17:11:06Z
#> 158  2020-12-04T04:59:08Z 2020-12-08T17:11:04Z
#> 159  2020-12-04T04:37:01Z 2020-12-08T17:11:02Z
#> 160  2020-12-04T04:36:38Z 2020-12-08T17:11:00Z
#> 161  2020-12-04T04:23:12Z 2020-12-08T17:10:57Z
#> 162  2020-12-04T04:16:49Z 2020-12-08T17:10:56Z
#> 163  2020-12-04T04:15:55Z 2020-12-08T17:10:54Z
#> 164  2020-12-04T04:11:43Z 2020-12-08T17:10:52Z
#> 165  2020-12-04T04:08:51Z 2020-12-08T17:10:51Z
#> 166  2020-11-18T06:12:02Z 2020-12-02T15:18:23Z
#> 167  2020-11-18T06:11:56Z 2020-12-02T15:18:21Z
#> 168  2020-11-18T06:11:51Z 2020-12-02T15:18:19Z
#> 169  2020-11-18T06:11:47Z 2020-12-02T15:18:17Z
#> 170  2020-11-18T06:11:43Z 2020-12-02T15:18:15Z
#> 171  2020-11-18T06:11:39Z 2020-12-02T15:18:13Z
#> 172  2020-11-18T06:11:36Z 2020-12-02T15:18:11Z
#> 173  2020-11-18T06:11:32Z 2020-12-02T15:18:09Z
#> 174  2020-11-18T06:11:24Z 2020-12-02T15:18:08Z
#> 175  2020-11-18T06:11:20Z 2020-12-02T15:18:05Z
#> 176  2020-11-18T06:11:16Z 2020-12-02T15:18:03Z
#> 177  2020-11-18T06:11:12Z 2020-12-02T15:18:01Z
#> 178  2020-11-18T06:11:05Z 2020-12-02T15:17:59Z
#> 179  2020-11-18T06:11:02Z 2020-12-02T15:17:58Z
#> 180  2020-11-18T06:10:58Z 2020-12-02T15:17:55Z
#> 181  2020-11-18T06:10:54Z 2020-12-02T15:17:53Z
#> 182  2020-11-18T06:10:51Z 2020-12-02T15:17:51Z
#> 183  2020-11-18T06:10:47Z 2020-12-02T15:17:49Z
#> 184  2020-11-18T06:10:43Z 2020-12-02T15:17:47Z
#> 185  2020-11-18T06:10:40Z 2020-12-02T15:17:45Z
#> 186  2020-11-18T06:10:36Z 2020-12-02T15:17:43Z
#> 187  2020-11-18T06:10:33Z 2020-12-02T15:17:41Z
#> 188  2020-11-18T06:10:29Z 2020-12-02T15:17:39Z
#> 189  2020-11-18T06:10:26Z 2020-12-02T15:17:38Z
#> 190  2020-11-18T06:10:22Z 2020-12-02T15:17:35Z
#> 191  2020-11-18T06:10:19Z 2020-12-02T15:17:33Z
#> 192  2020-11-18T06:10:15Z 2020-12-02T15:17:31Z
#> 193  2020-11-18T06:10:12Z 2020-12-02T15:17:29Z
#> 194  2020-11-18T06:10:08Z 2020-12-02T15:17:27Z
#> 195  2020-11-18T06:10:04Z 2020-12-02T15:17:25Z
#> 196  2020-11-18T06:10:01Z 2020-12-02T15:17:23Z
#> 197  2020-11-18T06:09:58Z 2020-12-02T15:17:21Z
#> 198  2020-11-18T06:09:55Z 2020-12-02T15:17:19Z
#> 199  2020-11-18T06:09:52Z 2020-12-02T15:17:17Z
#> 200  2020-11-18T06:09:48Z 2020-12-02T15:17:15Z
#> 201  2020-11-18T06:09:44Z 2020-12-02T15:17:13Z
#> 202  2020-11-18T06:09:41Z 2020-12-02T15:17:11Z
#> 203  2020-11-18T06:09:38Z 2020-12-02T15:17:09Z
#> 204  2020-11-18T06:09:34Z 2020-12-02T15:17:07Z
#> 205  2020-11-18T06:09:30Z 2020-12-02T15:17:05Z
#> 206  2020-11-18T06:09:27Z 2020-12-02T15:17:03Z
#> 207  2020-11-18T06:09:23Z 2020-12-02T15:17:02Z
#> 208  2020-11-18T06:09:20Z 2020-12-02T15:16:59Z
#> 209  2020-11-18T06:09:17Z 2020-12-02T15:16:57Z
#> 210  2020-11-18T06:09:12Z 2020-12-02T15:16:55Z
#> 211  2020-11-18T06:09:07Z 2020-12-02T15:16:53Z
#> 212  2020-11-18T06:09:02Z 2020-12-02T15:16:51Z
#> 213  2020-11-18T06:08:57Z 2020-12-02T15:16:49Z
#> 214  2020-11-18T06:08:53Z 2020-12-02T15:16:47Z
#> 215  2020-11-18T06:08:46Z 2020-12-02T15:16:45Z
#> 216  2020-11-18T06:08:42Z 2020-12-02T15:16:43Z
#> 217  2020-11-18T06:08:37Z 2020-12-02T15:16:41Z
#> 218  2020-11-18T06:08:33Z 2020-12-02T15:16:39Z
#> 219  2020-11-18T06:08:28Z 2020-12-02T15:16:37Z
#> 220  2020-11-18T06:08:19Z 2020-12-02T15:16:35Z
#> 221  2020-11-18T06:08:10Z 2020-12-02T15:16:33Z
#> 222  2020-11-18T06:08:05Z 2020-12-02T15:16:31Z
#> 223  2020-11-18T06:08:02Z 2020-12-02T15:16:29Z
#> 224  2020-11-18T06:07:58Z 2020-12-02T15:16:27Z
#> 225  2020-11-18T06:07:54Z 2020-12-02T15:16:25Z
#> 226  2020-11-18T06:07:50Z 2020-12-02T15:16:24Z
#> 227  2020-11-18T06:07:46Z 2020-12-02T15:16:22Z
#> 228  2020-11-18T06:07:43Z 2020-12-02T15:16:19Z
#> 229  2020-11-18T06:07:39Z 2020-12-02T15:16:17Z
#> 230  2020-11-18T06:07:36Z 2020-12-02T15:16:15Z
#> 231  2020-11-18T06:07:33Z 2020-12-02T15:16:13Z
#> 232  2020-11-18T06:07:29Z 2020-12-02T15:16:11Z
#> 233  2020-11-18T06:07:25Z 2020-12-02T15:16:09Z
#> 234  2020-11-18T06:07:22Z 2020-12-02T15:16:07Z
#> 235  2020-11-18T06:07:18Z 2020-12-02T15:16:05Z
#> 236  2020-11-18T06:07:14Z 2020-12-02T15:16:03Z
#> 237  2020-11-18T06:07:10Z 2020-12-02T15:16:01Z
#> 238  2020-11-18T06:07:06Z 2020-12-02T15:15:59Z
#> 239  2020-11-18T06:07:03Z 2020-12-02T15:15:57Z
#> 240  2020-11-18T06:06:59Z 2020-12-02T15:15:55Z
#> 241  2020-11-18T06:06:56Z 2020-12-02T15:15:53Z
#> 242  2020-11-18T06:06:52Z 2020-12-02T15:15:51Z
#> 243  2020-11-18T06:06:48Z 2020-12-02T15:15:50Z
#> 244  2020-11-18T06:06:45Z 2020-12-02T15:15:47Z
#> 245  2020-11-18T06:06:41Z 2020-12-02T15:15:45Z
#> 246  2020-11-18T06:06:37Z 2020-12-02T15:15:43Z
#> 247  2020-11-18T06:06:33Z 2020-12-02T15:15:41Z
#> 248  2020-11-18T06:06:30Z 2020-12-02T15:15:39Z
#> 249  2020-11-18T06:06:27Z 2020-12-02T15:15:37Z
#> 250  2020-11-18T06:06:23Z 2020-12-02T15:15:35Z
#> 251  2020-11-18T06:06:20Z 2020-12-02T15:15:34Z
#> 252  2020-11-18T06:06:16Z 2020-12-02T15:15:31Z
#> 253  2020-11-18T06:06:13Z 2020-12-02T15:15:29Z
#> 254  2020-11-18T06:06:09Z 2020-12-02T15:15:27Z
#> 255  2020-11-18T06:06:06Z 2020-12-02T15:15:25Z
#> 256  2020-11-18T06:06:02Z 2020-12-02T15:15:23Z
#> 257  2020-11-18T06:05:58Z 2020-12-02T15:15:21Z
#> 258  2020-11-18T06:05:54Z 2020-12-02T15:15:19Z
#> 259  2020-11-18T06:05:50Z 2020-12-02T15:15:17Z
#> 260  2020-11-18T06:05:46Z 2020-12-02T15:15:16Z
#> 261  2020-11-18T06:05:42Z 2020-12-02T15:15:13Z
#> 262  2020-11-18T06:05:37Z 2020-12-02T15:15:11Z
#> 263  2020-11-18T06:05:33Z 2020-12-02T15:15:09Z
#> 264  2020-11-18T06:05:29Z 2020-12-02T15:15:07Z
#> 265  2020-11-18T06:05:26Z 2020-12-02T15:15:06Z
#> 266  2020-11-18T06:05:22Z 2020-12-02T15:15:03Z
#> 267  2020-11-18T06:05:18Z 2020-12-02T15:15:01Z
#> 268  2020-11-18T06:05:14Z 2020-12-02T15:14:59Z
#> 269  2020-11-18T06:05:10Z 2020-12-02T15:14:57Z
#> 270  2020-11-18T06:05:06Z 2020-12-02T15:14:55Z
#> 271  2020-11-18T06:05:03Z 2020-12-02T15:14:53Z
#> 272  2020-11-18T06:04:58Z 2020-12-02T15:14:51Z
#> 273  2020-11-18T06:04:55Z 2020-12-02T15:14:49Z
#> 274  2020-11-18T06:04:52Z 2020-12-02T15:14:47Z
#> 275  2020-11-18T06:04:48Z 2020-12-02T15:14:45Z
#> 276  2020-11-18T06:04:44Z 2020-12-02T15:14:44Z
#> 277  2020-11-18T06:04:40Z 2020-12-02T15:14:41Z
#> 278  2020-11-18T06:04:36Z 2020-12-02T15:14:39Z
#> 279  2020-11-18T06:04:33Z 2020-12-02T15:14:37Z
#> 280  2020-11-18T06:04:29Z 2020-12-02T15:14:35Z
#> 281  2020-11-18T06:04:25Z 2020-12-02T15:14:33Z
#> 282  2020-11-18T06:04:21Z 2020-12-02T15:14:31Z
#> 283  2020-11-18T06:04:16Z 2020-12-02T15:14:29Z
#> 284  2020-11-18T06:04:13Z 2020-12-02T15:14:27Z
#> 285  2020-11-18T06:04:09Z 2020-12-02T15:14:25Z
#> 286  2020-11-18T06:04:05Z 2020-12-02T15:14:24Z
#> 287  2020-11-18T06:04:01Z 2020-12-02T15:14:21Z
#> 288  2020-11-18T06:03:57Z 2020-12-02T15:14:19Z
#> 289  2020-11-18T06:03:53Z 2020-12-02T15:14:17Z
#> 290  2020-11-18T06:03:50Z 2020-12-02T15:14:15Z
#> 291  2020-11-18T06:03:45Z 2020-12-02T15:14:13Z
#> 292  2020-11-18T06:03:41Z 2020-12-02T15:14:11Z
#> 293  2020-11-18T06:03:37Z 2020-12-02T15:14:09Z
#> 294  2020-11-18T06:03:12Z 2020-12-02T15:14:07Z
#> 295  2020-11-18T06:03:01Z 2020-12-02T15:14:05Z
#> 296  2020-11-18T06:02:57Z 2020-12-02T15:14:03Z
#> 297  2020-11-18T06:02:53Z 2020-12-02T15:14:01Z
#> 298  2020-11-18T06:02:49Z 2020-12-02T15:13:59Z
#> 299  2020-11-18T06:02:46Z 2020-12-02T15:13:57Z
#> 300  2020-11-18T06:02:42Z 2020-12-02T15:13:55Z
#> 301  2020-11-18T06:02:38Z 2020-12-02T15:13:54Z
#> 302  2020-11-18T06:02:33Z 2020-12-02T15:13:51Z
#> 303  2020-11-18T06:02:29Z 2020-12-02T15:13:50Z
#> 304  2020-11-18T06:02:24Z 2020-12-02T15:13:47Z
#> 305  2020-11-18T06:02:20Z 2020-12-02T15:13:45Z
#> 306  2020-11-18T06:02:17Z 2020-12-02T15:13:43Z
#> 307  2020-11-18T06:02:08Z 2020-12-02T15:13:41Z
#> 308  2020-11-18T06:01:44Z 2020-12-02T15:13:39Z
#> 309  2020-11-18T06:01:40Z 2020-12-02T15:13:38Z
#> 310  2020-11-18T06:01:35Z 2020-12-02T15:13:35Z
#> 311  2020-11-18T06:01:31Z 2020-12-02T15:13:33Z
#> 312  2020-11-18T06:01:27Z 2020-12-02T15:13:31Z
#> 313  2020-11-18T06:01:23Z 2020-12-02T15:13:29Z
#> 314  2020-11-18T06:01:19Z 2020-12-02T15:13:27Z
#> 315  2020-11-18T06:01:15Z 2020-12-02T15:13:25Z
#> 316  2020-11-18T06:01:11Z 2020-12-02T15:13:23Z
#> 317  2020-11-18T06:01:08Z 2020-12-02T15:13:21Z
#> 318  2020-11-18T06:01:04Z 2020-12-02T15:13:19Z
#> 319  2020-11-18T06:01:01Z 2020-12-02T15:13:17Z
#> 320  2020-11-18T06:00:58Z 2020-12-02T15:13:15Z
#> 321  2020-11-18T06:00:54Z 2020-12-02T15:13:13Z
#> 322  2020-11-18T06:00:48Z 2020-12-02T15:13:11Z
#> 323  2020-11-18T06:00:45Z 2020-12-02T15:13:10Z
#> 324  2020-11-18T06:00:42Z 2020-12-02T15:13:08Z
#> 325  2020-11-18T06:00:38Z 2020-12-02T15:13:05Z
#> 326  2020-11-18T06:00:35Z 2020-12-02T15:13:04Z
#> 327  2020-11-18T06:00:31Z 2020-12-02T15:13:01Z
#> 328  2020-11-18T06:00:26Z 2020-12-02T15:12:59Z
#> 329  2020-11-18T06:00:23Z 2020-12-02T15:12:57Z
#> 330  2020-11-18T06:00:19Z 2020-12-02T15:12:55Z
#> 331  2020-11-18T06:00:15Z 2020-12-02T15:12:53Z
#> 332  2020-11-18T06:00:11Z 2020-12-02T15:12:51Z
#> 333  2020-11-18T06:00:08Z 2020-12-02T15:12:49Z
#> 334  2020-11-18T06:00:04Z 2020-12-02T15:12:47Z
#> 335  2020-11-18T05:59:59Z 2020-12-02T15:12:45Z
#> 336  2020-11-18T05:59:48Z 2020-12-02T15:12:43Z
#> 337  2020-11-18T05:59:43Z 2020-12-02T15:12:41Z
#> 338  2020-11-18T05:59:33Z 2020-12-02T15:12:39Z
#> 339  2020-11-18T05:59:18Z 2020-12-02T15:12:38Z
#> 340  2020-11-18T05:59:14Z 2020-12-02T15:12:35Z
#> 341  2020-11-18T05:59:11Z 2020-12-02T15:12:33Z
#> 342  2020-11-18T05:59:02Z 2020-12-02T15:12:31Z
#> 343  2020-11-18T05:58:59Z 2020-12-02T15:12:29Z
#> 344  2020-11-18T05:58:55Z 2020-12-02T15:12:27Z
#> 345  2020-11-18T05:58:52Z 2020-12-02T15:12:25Z
#> 346  2020-11-18T05:58:48Z 2020-12-02T15:12:23Z
#> 347  2020-11-18T05:58:31Z 2020-12-02T15:12:21Z
#> 348  2020-11-18T05:58:25Z 2020-12-02T15:12:19Z
#> 349  2020-11-18T05:58:22Z 2020-12-02T15:12:17Z
#> 350  2020-11-18T05:58:15Z 2020-12-02T15:12:15Z
#> 351  2020-11-18T05:58:01Z 2020-12-02T15:12:14Z
#> 352  2020-11-18T05:57:57Z 2020-12-02T15:12:11Z
#> 353  2020-11-18T05:57:54Z 2020-12-02T15:12:09Z
#> 354  2020-11-18T05:57:51Z 2020-12-02T15:12:07Z
#> 355  2020-11-18T05:57:47Z 2020-12-02T15:12:05Z
#> 356  2020-11-18T05:57:43Z 2020-12-02T15:12:03Z
#> 357  2020-11-18T05:57:40Z 2020-12-02T15:12:01Z
#> 358  2020-11-18T05:57:36Z 2020-12-02T15:12:00Z
#> 359  2020-11-18T05:57:31Z 2020-12-02T15:11:58Z
#> 360  2020-11-18T05:57:28Z 2020-12-02T15:11:55Z
#> 361  2020-11-18T05:57:24Z 2020-12-02T15:11:53Z
#> 362  2020-11-18T05:57:21Z 2020-12-02T15:11:51Z
#> 363  2020-11-18T05:57:17Z 2020-12-02T15:11:49Z
#> 364  2020-11-18T05:57:13Z 2020-12-02T15:11:48Z
#> 365  2020-11-18T05:57:10Z 2020-12-02T15:11:45Z
#> 366  2020-11-18T05:57:05Z 2020-12-02T15:11:43Z
#> 367  2020-11-18T05:57:01Z 2020-12-02T15:11:42Z
#> 368  2020-11-18T05:56:58Z 2020-12-02T15:11:39Z
#> 369  2020-11-18T05:54:39Z 2020-12-02T15:11:37Z
#> 370  2020-11-18T05:54:34Z 2020-12-02T15:11:35Z
#> 371  2020-11-18T05:54:30Z 2020-12-02T15:11:33Z
#> 372  2020-11-18T05:54:26Z 2020-12-02T15:11:31Z
#> 373  2020-11-18T05:54:21Z 2020-12-02T15:11:29Z
#> 374  2020-11-18T05:54:18Z 2020-12-02T15:11:27Z
#> 375  2020-11-18T05:54:13Z 2020-12-02T15:11:25Z
#> 376  2020-11-18T05:54:10Z 2020-12-02T15:11:24Z
#> 377  2020-11-18T05:54:06Z 2020-12-02T15:11:21Z
#> 378  2020-11-18T05:54:03Z 2020-12-02T15:11:19Z
#> 379  2020-11-18T05:53:59Z 2020-12-02T15:11:18Z
#> 380  2020-11-18T05:53:55Z 2020-12-02T15:11:15Z
#> 381  2020-11-18T05:53:50Z 2020-12-02T15:11:13Z
#> 382  2020-11-18T05:53:46Z 2020-12-02T15:11:11Z
#> 383  2020-11-18T05:53:43Z 2020-12-02T15:11:09Z
#> 384  2020-11-18T05:53:39Z 2020-12-02T15:11:07Z
#> 385  2020-11-18T05:53:36Z 2020-12-02T15:11:05Z
#> 386  2020-11-18T05:53:32Z 2020-12-02T15:11:03Z
#> 387  2020-11-18T05:53:28Z 2020-12-02T15:11:01Z
#> 388  2020-11-18T05:53:25Z 2020-12-02T15:11:00Z
#> 389  2020-11-18T05:53:21Z 2020-12-02T15:10:57Z
#> 390  2020-11-18T05:53:18Z 2020-12-02T15:10:55Z
#> 391  2020-11-18T05:53:14Z 2020-12-02T15:10:53Z
#> 392  2020-11-18T05:53:10Z 2020-12-02T15:10:51Z
#> 393  2020-11-18T05:53:07Z 2020-12-02T15:10:49Z
#> 394  2020-11-18T05:53:03Z 2020-12-02T15:10:48Z
#> 395  2020-11-18T05:52:59Z 2020-12-02T15:10:45Z
#> 396  2020-11-18T05:52:55Z 2020-12-02T15:10:43Z
#> 397  2020-11-18T05:52:50Z 2020-12-02T15:10:41Z
#> 398  2020-11-18T05:52:46Z 2020-12-02T15:10:39Z
#> 399  2020-11-18T05:52:42Z 2020-12-02T15:10:37Z
#> 400  2020-11-18T05:52:38Z 2020-12-02T15:10:35Z
#> 401  2020-11-18T05:52:34Z 2020-12-02T15:10:34Z
#> 402  2020-11-18T05:52:30Z 2020-12-02T15:10:31Z
#> 403  2020-11-18T05:52:27Z 2020-12-02T15:10:29Z
#> 404  2020-11-18T05:52:23Z 2020-12-02T15:10:27Z
#> 405  2020-11-18T05:52:20Z 2020-12-02T15:10:25Z
#> 406  2020-11-18T05:52:16Z 2020-12-02T15:10:23Z
#> 407  2020-11-18T05:52:12Z 2020-12-02T15:10:21Z
#> 408  2020-11-18T05:52:06Z 2020-12-02T15:10:19Z
#> 409  2020-11-18T05:52:01Z 2020-12-02T15:10:17Z
#> 410  2020-11-18T05:51:57Z 2020-12-02T15:10:15Z
#> 411  2020-11-18T05:51:54Z 2020-12-02T15:10:13Z
#> 412  2020-11-18T05:51:50Z 2020-12-02T15:10:12Z
#> 413  2020-11-18T05:51:47Z 2020-12-02T15:10:09Z
#> 414  2020-11-18T05:51:43Z 2020-12-02T15:10:08Z
#> 415  2020-11-18T05:51:40Z 2020-12-02T15:10:06Z
#> 416  2020-11-18T05:51:36Z 2020-12-02T15:10:03Z
#> 417  2020-11-18T05:51:32Z 2020-12-02T15:10:01Z
#> 418  2020-11-18T05:51:28Z 2020-12-02T15:09:59Z
#> 419  2020-11-18T05:51:24Z 2020-12-02T15:09:57Z
#> 420  2020-11-18T05:51:15Z 2020-12-02T15:09:55Z
#> 421  2020-11-18T05:51:10Z 2020-12-02T15:09:53Z
#> 422  2020-11-18T05:51:06Z 2020-12-02T15:09:51Z
#> 423  2020-11-18T05:51:01Z 2020-12-02T15:09:49Z
#> 424  2020-11-18T05:50:54Z 2020-12-02T15:09:48Z
#> 425  2020-11-18T05:50:46Z 2020-12-02T15:09:46Z
#> 426  2020-11-18T05:50:39Z 2020-12-02T15:09:43Z
#> 427  2020-11-18T05:50:36Z 2020-12-02T15:09:42Z
#> 428  2020-11-18T05:50:32Z 2020-12-02T15:09:39Z
#> 429  2020-11-18T05:50:28Z 2020-12-02T15:09:37Z
#> 430  2020-11-18T05:50:24Z 2020-12-02T15:09:35Z
#> 431  2020-11-18T05:50:21Z 2020-12-02T15:09:33Z
#> 432  2020-11-18T05:50:17Z 2020-12-02T15:09:31Z
#> 433  2020-11-18T05:50:13Z 2020-12-02T15:09:29Z
#> 434  2020-11-18T05:50:09Z 2020-12-02T15:09:27Z
#> 435  2020-11-18T05:50:06Z 2020-12-02T15:09:25Z
#> 436  2020-11-18T05:50:02Z 2020-12-02T15:09:23Z
#> 437  2020-11-18T05:49:59Z 2020-12-02T15:09:21Z
#> 438  2020-11-18T05:49:55Z 2020-12-02T15:09:19Z
#> 439  2020-11-18T05:49:51Z 2020-12-02T15:09:18Z
#> 440  2020-11-18T05:49:48Z 2020-12-02T15:09:15Z
#> 441  2020-11-18T05:49:44Z 2020-12-02T15:09:13Z
#> 442  2020-11-18T05:49:41Z 2020-12-02T15:09:12Z
#> 443  2020-11-18T05:49:37Z 2020-12-02T15:09:09Z
#> 444  2020-11-18T05:49:34Z 2020-12-02T15:09:07Z
#> 445  2020-11-18T05:49:30Z 2020-12-02T15:09:05Z
#> 446  2020-11-18T05:49:27Z 2020-12-02T15:09:03Z
#> 447  2020-11-18T05:49:23Z 2020-12-02T15:09:02Z
#> 448  2020-11-18T05:49:19Z 2020-12-02T15:08:59Z
#> 449  2020-11-18T05:49:16Z 2020-12-02T15:08:57Z
#> 450  2020-11-18T05:49:12Z 2020-12-02T15:08:55Z
#> 451  2020-11-18T05:49:04Z 2020-12-02T15:08:53Z
#> 452  2020-11-18T05:49:00Z 2020-12-02T15:08:51Z
#> 453  2020-11-18T05:48:56Z 2020-12-02T15:08:49Z
#> 454  2020-11-18T05:48:49Z 2020-12-02T15:08:48Z
#> 455  2020-11-18T05:48:45Z 2020-12-02T15:08:45Z
#> 456  2020-11-18T05:48:43Z 2020-12-02T15:08:43Z
#> 457  2020-11-18T05:48:39Z 2020-12-02T15:08:41Z
#> 458  2020-11-18T05:48:35Z 2020-12-02T15:08:39Z
#> 459  2020-11-18T05:48:32Z 2020-12-02T15:08:37Z
#> 460  2020-11-18T05:48:26Z 2020-12-02T15:08:35Z
#> 461  2020-11-18T05:48:22Z 2020-12-02T15:08:34Z
#> 462  2020-11-18T05:48:17Z 2020-12-02T15:08:31Z
#> 463  2020-11-18T05:48:04Z 2020-12-02T15:08:29Z
#> 464  2020-11-18T05:47:54Z 2020-12-02T15:08:28Z
#> 465  2020-11-18T05:47:48Z 2020-12-02T15:08:25Z
#> 466  2020-11-18T05:47:45Z 2020-12-02T15:08:23Z
#> 467  2020-11-18T05:47:39Z 2020-12-02T15:08:21Z
#> 468  2020-11-18T05:47:31Z 2020-12-02T15:08:19Z
#> 469  2020-11-18T05:47:25Z 2020-12-02T15:08:17Z
#> 470  2020-11-18T05:47:21Z 2020-12-02T15:08:15Z
#> 471  2020-11-18T05:46:35Z 2020-12-02T15:08:13Z
#> 472  2020-11-18T05:46:30Z 2020-12-02T15:08:11Z
#> 473  2020-11-18T05:46:16Z 2020-12-02T15:08:09Z
#> 474  2020-11-18T05:46:11Z 2020-12-02T15:08:07Z
#> 475  2020-11-18T05:46:07Z 2020-12-02T15:08:06Z
#> 476  2020-11-18T05:46:04Z 2020-12-02T15:08:03Z
#> 477  2020-11-18T05:45:59Z 2020-12-02T15:08:01Z
#> 478  2020-11-18T05:45:55Z 2020-12-02T15:07:59Z
#> 479  2020-11-18T05:45:52Z 2020-12-02T15:07:57Z
#> 480  2020-11-18T05:45:47Z 2020-12-02T15:07:56Z
#> 481  2020-11-18T05:45:43Z 2020-12-02T15:07:53Z
#> 482  2020-11-18T05:45:39Z 2020-12-02T15:07:51Z
#> 483  2020-11-18T05:45:35Z 2020-12-02T15:07:49Z
#> 484  2020-11-18T05:45:31Z 2020-12-02T15:07:47Z
#> 485  2020-11-18T05:45:27Z 2020-12-02T15:07:46Z
#> 486  2020-11-18T05:45:24Z 2020-12-02T15:07:43Z
#> 487  2020-11-18T05:45:21Z 2020-12-02T15:07:41Z
#> 488  2020-11-18T05:45:17Z 2020-12-02T15:07:40Z
#> 489  2020-11-18T05:45:13Z 2020-12-02T15:07:38Z
#> 490  2020-11-18T05:45:09Z 2020-12-02T15:07:36Z
#> 491  2020-11-18T05:45:05Z 2020-12-02T15:07:33Z
#> 492  2020-11-18T05:45:01Z 2020-12-02T15:07:31Z
#> 493  2020-11-18T05:44:56Z 2020-12-02T15:07:29Z
#> 494  2020-11-18T05:44:53Z 2020-12-02T15:07:27Z
#> 495  2020-11-18T05:44:49Z 2020-12-02T15:07:25Z
#> 496  2020-11-18T05:44:45Z 2020-12-02T15:07:23Z
#> 497  2020-11-18T05:44:41Z 2020-12-02T15:07:21Z
#> 498  2020-11-18T05:44:38Z 2020-12-02T15:07:19Z
#> 499  2020-11-18T05:44:34Z 2020-12-02T15:07:17Z
#> 500  2020-11-18T05:44:29Z 2020-12-02T15:07:16Z
#> 501  2020-11-18T05:44:24Z 2020-12-02T15:07:13Z
#> 502  2020-11-18T05:44:20Z 2020-12-02T15:07:12Z
#> 503  2020-11-18T05:44:13Z 2020-12-02T15:07:09Z
#> 504  2020-11-18T05:44:09Z 2020-12-02T15:07:07Z
#> 505  2020-11-18T05:44:04Z 2020-12-02T15:07:05Z
#> 506  2020-11-18T05:44:01Z 2020-12-02T15:07:03Z
#> 507  2020-11-18T05:43:57Z 2020-12-02T15:07:02Z
#> 508  2020-11-18T05:43:53Z 2020-12-02T15:06:59Z
#> 509  2020-11-18T05:43:50Z 2020-12-02T15:06:57Z
#> 510  2020-11-18T05:43:46Z 2020-12-02T15:06:55Z
#> 511  2020-11-18T05:43:42Z 2020-12-02T15:06:53Z
#> 512  2020-11-18T05:43:37Z 2020-12-02T15:06:51Z
#> 513  2020-11-18T05:43:34Z 2020-12-02T15:06:49Z
#> 514  2020-11-18T05:43:29Z 2020-12-02T15:06:47Z
#> 515  2020-11-18T05:43:23Z 2020-12-02T15:06:45Z
#> 516  2020-11-18T05:43:19Z 2020-12-02T15:06:43Z
#> 517  2020-11-18T05:43:08Z 2020-12-02T15:06:41Z
#> 518  2020-11-27T06:39:49Z 2020-12-02T15:05:27Z
#> 519  2020-11-27T06:39:19Z 2020-12-02T15:05:25Z
#> 520  2020-11-27T06:39:05Z 2020-12-02T15:05:23Z
#> 521  2020-11-27T06:38:45Z 2020-12-02T15:05:21Z
#> 522  2020-11-27T06:38:15Z 2020-12-02T15:05:19Z
#> 523  2020-11-27T06:38:06Z 2020-12-02T15:05:17Z
#> 524  2020-11-27T06:37:54Z 2020-12-02T15:05:15Z
#> 525  2020-11-27T06:37:47Z 2020-12-02T15:05:13Z
#> 526  2020-11-27T06:37:21Z 2020-12-02T15:05:11Z
#> 527  2020-11-27T06:37:02Z 2020-12-02T15:05:09Z
#> 528  2020-11-27T06:36:55Z 2020-12-02T15:05:07Z
#> 529  2020-11-27T06:36:35Z 2020-12-02T15:05:05Z
#> 530  2020-11-27T06:36:32Z 2020-12-02T15:05:03Z
#> 531  2020-11-27T06:36:09Z 2020-12-02T15:05:01Z
#> 532  2020-11-27T06:35:57Z 2020-12-02T15:05:00Z
#> 533  2020-11-27T06:35:30Z 2020-12-02T15:04:57Z
#> 534  2020-11-27T06:35:10Z 2020-12-02T15:04:55Z
#> 535  2020-11-27T06:34:54Z 2020-12-02T15:04:53Z
#> 536  2020-11-27T06:34:43Z 2020-12-02T15:04:51Z
#> 537  2020-11-27T06:33:54Z 2020-12-02T15:04:49Z
#> 538  2020-11-27T06:33:23Z 2020-12-02T15:04:47Z
#> 539  2020-11-27T06:32:58Z 2020-12-02T15:04:46Z
#> 540  2020-11-27T06:31:56Z 2020-12-02T15:04:43Z
#> 541  2020-11-27T06:31:52Z 2020-12-02T15:04:41Z
#> 542  2020-11-27T06:31:18Z 2020-12-02T15:04:39Z
#> 543  2020-11-27T06:31:15Z 2020-12-02T15:04:37Z
#> 544  2020-11-27T06:31:08Z 2020-12-02T15:04:35Z
#> 545  2020-11-27T06:30:35Z 2020-12-02T15:04:33Z
#> 546  2020-11-27T06:30:18Z 2020-12-02T15:04:31Z
#> 547  2020-11-27T06:29:46Z 2020-12-02T15:04:29Z
#> 548  2020-11-27T06:29:33Z 2020-12-02T15:04:27Z
#> 549  2020-11-27T06:29:07Z 2020-12-02T15:04:25Z
#> 550  2020-11-27T06:28:56Z 2020-12-02T15:04:23Z
#> 551  2020-11-27T06:28:51Z 2020-12-02T15:04:21Z
#> 552  2020-11-27T06:28:42Z 2020-12-02T15:04:19Z
#> 553  2020-11-27T06:28:38Z 2020-12-02T15:04:17Z
#> 554  2020-10-15T12:52:37Z 2020-10-19T18:06:03Z
#> 555  2020-10-16T05:29:00Z 2020-10-19T18:04:22Z
#> 556  2020-10-15T13:50:53Z 2020-10-19T17:58:04Z
#> 557  2020-10-15T12:09:07Z 2020-10-19T17:53:22Z
#> 558  2020-10-16T05:11:28Z 2020-10-19T17:50:43Z
#> 559  2020-10-15T13:25:56Z 2020-10-19T17:46:42Z
#> 560  2020-10-16T05:05:50Z 2020-10-19T17:46:22Z
#> 561  2020-10-15T13:21:59Z 2020-10-19T17:44:42Z
#> 562  2020-10-15T13:13:09Z 2020-10-19T17:40:42Z
#> 563  2020-10-15T11:35:36Z 2020-10-19T17:35:42Z
#> 564  2020-10-15T12:48:31Z 2020-10-19T17:28:02Z
#> 565  2020-10-15T11:09:35Z 2020-10-19T17:19:22Z
#> 566  2020-10-16T05:15:11Z 2020-10-19T17:18:02Z
#> 567  2020-10-15T12:07:45Z 2020-10-19T17:17:22Z
#> 568  2020-10-16T04:22:46Z 2020-10-19T17:16:42Z
#> 569  2020-10-15T12:23:07Z 2020-10-19T17:10:02Z
#> 570  2020-10-15T11:22:15Z 2020-10-19T17:09:22Z
#> 571  2020-10-15T12:16:10Z 2020-10-19T17:05:22Z
#> 572  2020-10-15T11:38:37Z 2020-10-19T17:01:23Z
#> 573  2020-10-16T07:56:12Z 2020-10-19T17:00:11Z
#> 574  2020-10-15T13:49:47Z 2020-10-19T16:57:44Z
#> 575  2020-10-15T11:51:26Z 2020-10-19T16:51:02Z
#> 576  2020-10-15T11:44:23Z 2020-10-19T16:47:03Z
#> 577  2020-10-15T13:21:23Z 2020-10-19T16:45:24Z
#> 578  2020-10-15T11:11:48Z 2020-10-19T16:43:03Z
#> 579  2020-10-16T07:33:01Z 2020-10-19T16:41:48Z
#> 580  2020-10-15T11:24:26Z 2020-10-19T16:32:42Z
#> 581  2020-10-16T07:42:44Z 2020-10-19T16:31:42Z
#> 582  2020-10-15T11:21:23Z 2020-10-19T16:30:22Z
#> 583  2020-10-15T11:17:20Z 2020-10-19T16:27:22Z
#> 584  2020-10-15T12:48:04Z 2020-10-19T16:26:02Z
#> 585  2020-10-16T07:57:51Z 2020-10-19T16:24:42Z
#> 586  2020-10-16T07:08:31Z 2020-10-19T16:23:22Z
#> 587  2020-10-16T07:17:48Z 2020-10-19T16:13:42Z
#> 588  2020-10-16T07:34:40Z 2020-10-19T16:09:22Z
#> 589  2020-10-16T06:44:20Z 2020-10-19T16:08:02Z
#> 590  2020-10-16T07:45:16Z 2020-10-19T15:59:02Z
#> 591  2020-10-16T07:39:22Z 2020-10-19T15:55:02Z
#> 592  2020-10-16T06:19:59Z 2020-10-19T15:50:22Z
#> 593  2020-10-16T06:56:56Z 2020-10-19T15:41:02Z
#> 594  2020-10-16T07:14:29Z 2020-10-19T15:37:22Z
#> 595  2020-10-16T06:46:40Z 2020-10-19T15:34:22Z
#> 596  2020-10-16T05:56:40Z 2020-10-19T15:33:02Z
#> 597  2020-10-16T06:31:54Z 2020-10-19T15:24:02Z
#> 598  2020-10-16T06:06:06Z 2020-10-19T15:22:42Z
#> 599  2020-10-16T06:53:29Z 2020-10-19T15:20:42Z
#> 600  2020-10-16T06:52:00Z 2020-10-19T15:20:22Z
#> 601  2020-10-16T06:22:26Z 2020-10-19T15:16:22Z
#> 602  2020-10-16T05:33:33Z 2020-10-19T15:15:02Z
#> 603  2020-10-16T05:43:37Z 2020-10-19T15:05:23Z
#> 604  2020-10-16T06:27:43Z 2020-10-19T15:02:02Z
#> 605  2020-10-16T05:11:04Z 2020-10-19T14:58:22Z
#> 606  2020-10-16T05:21:44Z 2020-10-19T14:49:42Z
#> 607  2020-10-16T06:03:13Z 2020-10-19T14:46:42Z
#> 608  2020-10-16T05:35:32Z 2020-10-19T14:44:22Z
#> 609  2020-10-16T04:46:51Z 2020-10-19T14:43:22Z
#> 610  2020-10-16T04:40:37Z 2020-10-19T14:40:02Z
#> 611  2020-10-16T04:57:56Z 2020-10-19T14:36:22Z
#> 612  2020-10-16T07:02:34Z 2020-10-19T14:34:22Z
#> 613  2020-10-16T04:22:21Z 2020-10-19T14:29:22Z
#> 614  2020-10-16T04:16:14Z 2020-10-19T14:25:02Z
#> 615  2020-10-16T06:44:46Z 2020-10-19T14:23:42Z
#> 616  2020-10-16T04:33:31Z 2020-10-19T14:20:02Z
#> 617  2020-10-16T05:18:28Z 2020-10-19T14:16:22Z
#> 618  2020-10-14T17:57:33Z 2020-10-19T14:14:22Z
#> 619  2020-10-16T05:13:06Z 2020-10-19T14:13:02Z
#> 620  2020-10-15T13:49:02Z 2020-10-19T14:12:42Z
#> 621  2020-10-15T13:39:25Z 2020-10-19T14:08:22Z
#> 622  2020-10-16T06:20:23Z 2020-10-19T14:06:22Z
#> 623  2020-10-15T14:05:27Z 2020-10-19T14:03:02Z
#> 624  2020-10-16T04:57:31Z 2020-10-19T14:01:42Z
#> 625  2020-10-16T04:54:15Z 2020-10-19T13:59:22Z
#> 626  2020-10-16T04:50:35Z 2020-10-19T13:56:42Z
#> 627  2020-10-15T13:11:06Z 2020-10-19T13:54:42Z
#> 628  2020-10-15T13:02:31Z 2020-10-19T13:50:42Z
#> 629  2020-10-16T05:57:04Z 2020-10-19T13:49:02Z
#> 630  2020-10-15T13:27:03Z 2020-10-19T13:46:02Z
#> 631  2020-10-16T04:33:05Z 2020-10-19T13:44:42Z
#> 632  2020-10-16T05:51:44Z 2020-10-19T13:43:42Z
#> 633  2020-10-16T04:29:41Z 2020-10-19T13:42:02Z
#> 634  2020-10-15T12:40:42Z 2020-10-19T13:37:02Z
#> 635  2020-10-15T13:45:17Z 2020-10-19T13:34:42Z
#> 636  2020-10-15T13:44:30Z 2020-10-19T13:34:22Z
#> 637  2020-10-15T12:34:12Z 2020-10-19T13:32:42Z
#> 638  2020-10-16T05:33:57Z 2020-10-19T13:30:05Z
#> 639  2020-10-14T09:00:47Z 2020-10-19T11:55:28Z
#> 640  2020-10-14T08:59:55Z 2020-10-19T11:55:08Z
#> 641  2020-10-14T08:59:37Z 2020-10-19T11:54:47Z
#> 642  2020-10-14T08:58:49Z 2020-10-19T11:54:27Z
#> 643  2020-10-14T08:58:37Z 2020-10-19T11:54:07Z
#> 644  2020-10-14T08:57:58Z 2020-10-19T11:53:47Z
#> 645  2020-10-14T08:56:52Z 2020-10-19T11:53:27Z
#> 646  2020-10-14T08:56:26Z 2020-10-19T11:53:07Z
#> 647  2020-10-14T08:53:44Z 2020-10-19T11:52:47Z
#> 648  2020-10-14T08:47:15Z 2020-10-19T11:52:27Z
#> 649  2020-10-14T08:46:36Z 2020-10-19T11:52:07Z
#> 650  2020-10-14T08:44:53Z 2020-10-19T11:51:46Z
#> 651  2020-10-14T08:44:31Z 2020-10-19T11:51:26Z
#> 652  2020-10-14T08:42:25Z 2020-10-19T11:51:06Z
#> 653  2020-10-14T08:41:22Z 2020-10-19T11:50:46Z
#> 654  2020-10-14T08:40:58Z 2020-10-19T11:50:26Z
#> 655  2020-10-14T08:39:02Z 2020-10-19T11:50:06Z
#> 656  2020-10-14T08:37:23Z 2020-10-19T11:49:46Z
#> 657  2020-10-14T08:35:32Z 2020-10-19T11:49:26Z
#> 658  2020-10-14T08:35:17Z 2020-10-19T11:49:06Z
#> 659  2020-10-14T08:33:07Z 2020-10-19T11:48:46Z
#> 660  2020-10-14T08:32:03Z 2020-10-19T11:48:25Z
#> 661  2020-10-14T08:30:36Z 2020-10-19T11:48:05Z
#> 662  2020-10-14T08:28:51Z 2020-10-19T11:47:45Z
#> 663  2020-10-14T08:24:49Z 2020-10-19T11:47:25Z
#> 664  2020-10-14T08:24:02Z 2020-10-19T11:47:05Z
#> 665  2020-10-14T08:21:47Z 2020-10-19T11:46:45Z
#> 666  2020-10-14T08:18:51Z 2020-10-19T11:46:25Z
#> 667  2020-10-14T08:18:35Z 2020-10-19T11:46:05Z
#> 668  2020-10-14T08:12:09Z 2020-10-19T11:45:44Z
#> 669  2020-10-14T08:11:55Z 2020-10-19T11:45:24Z
#> 670  2020-10-14T08:08:45Z 2020-10-19T11:45:05Z
#> 671  2020-10-14T08:06:13Z 2020-10-19T11:44:44Z
#> 672  2020-10-14T08:05:48Z 2020-10-19T11:44:24Z
#> 673  2020-10-14T08:04:04Z 2020-10-19T11:44:04Z
#> 674  2020-10-14T08:02:46Z 2020-10-19T11:43:44Z
#> 675  2020-10-06T09:21:19Z 2020-10-19T11:43:24Z
#> 676  2020-10-06T09:17:44Z 2020-10-19T11:43:04Z
#> 677  2020-10-06T09:14:44Z 2020-10-19T11:42:44Z
#> 678  2020-10-06T09:14:20Z 2020-10-19T11:42:23Z
#> 679  2020-10-06T09:08:59Z 2020-10-19T11:42:03Z
#> 680  2020-10-06T09:06:59Z 2020-10-19T11:41:43Z
#> 681  2020-10-06T09:06:14Z 2020-10-19T11:41:23Z
#> 682  2020-10-06T09:01:25Z 2020-10-19T11:41:03Z
#> 683  2020-10-06T08:58:27Z 2020-10-19T11:40:43Z
#> 684  2020-10-06T08:56:32Z 2020-10-19T11:40:23Z
#> 685  2020-10-06T08:55:05Z 2020-10-19T11:40:03Z
#> 686  2020-10-06T08:51:17Z 2020-10-19T11:39:43Z
#> 687  2020-10-06T08:50:13Z 2020-10-19T11:39:22Z
#> 688  2020-10-06T08:47:43Z 2020-10-19T11:39:02Z
#> 689  2020-10-06T08:45:54Z 2020-10-19T11:38:42Z
#> 690  2020-10-06T08:42:46Z 2020-10-19T11:38:22Z
#> 691  2020-10-06T08:41:56Z 2020-10-19T11:38:02Z
#> 692  2020-10-06T08:39:45Z 2020-10-19T11:37:42Z
#> 693  2020-10-06T08:37:21Z 2020-10-19T11:37:22Z
#> 694  2020-10-06T08:29:07Z 2020-10-19T11:37:02Z
#> 695  2020-10-06T08:25:04Z 2020-10-19T11:36:42Z
#> 696  2020-10-06T08:22:30Z 2020-10-19T11:36:21Z
#> 697  2020-10-06T08:21:51Z 2020-10-19T11:36:01Z
#> 698  2020-10-06T08:18:58Z 2020-10-19T11:35:41Z
#> 699  2020-10-06T08:18:42Z 2020-10-19T11:35:21Z
#> 700  2020-10-06T08:14:13Z 2020-10-19T11:35:01Z
#> 701  2020-10-06T08:11:48Z 2020-10-19T11:34:41Z
#> 702  2020-10-06T08:06:15Z 2020-10-19T11:34:21Z
#> 703  2020-10-06T08:03:14Z 2020-10-19T11:34:01Z
#> 704  2020-10-06T07:58:25Z 2020-10-19T11:33:41Z
#> 705  2020-10-06T07:51:28Z 2020-10-19T11:33:20Z
#> 706  2020-10-06T07:49:03Z 2020-10-19T11:33:00Z
#> 707  2020-10-06T07:48:10Z 2020-10-19T11:32:40Z
#> 708  2020-10-06T07:23:14Z 2020-10-19T11:32:20Z
#> 709  2020-10-06T07:21:51Z 2020-10-19T11:32:00Z
#> 710  2020-10-06T07:19:07Z 2020-10-19T11:31:40Z
#> 711  2020-10-06T07:17:57Z 2020-10-19T11:31:20Z
#> 712  2020-10-06T07:17:43Z 2020-10-19T11:31:00Z
#> 713  2020-10-06T07:17:34Z 2020-10-19T11:30:40Z
#> 714  2020-10-06T07:13:13Z 2020-10-19T11:30:20Z
#> 715  2020-10-06T07:12:11Z 2020-10-19T11:29:59Z
#> 716  2020-10-06T07:10:44Z 2020-10-19T11:29:39Z
#> 717  2020-10-06T07:09:21Z 2020-10-19T11:29:19Z
#> 718  2020-10-06T07:05:37Z 2020-10-19T11:28:59Z
#> 719  2020-10-06T07:03:44Z 2020-10-19T11:28:39Z
#> 720  2020-10-06T07:03:22Z 2020-10-19T11:28:19Z
#> 721  2020-10-06T07:03:01Z 2020-10-19T11:27:59Z
#> 722  2020-10-06T07:02:55Z 2020-10-19T11:27:39Z
#> 723  2020-10-06T06:59:52Z 2020-10-19T11:27:19Z
#> 724  2020-10-06T06:57:16Z 2020-10-19T11:26:58Z
#> 725  2020-10-06T06:55:54Z 2020-10-19T11:26:38Z
#> 726  2020-10-06T06:55:03Z 2020-10-19T11:26:18Z
#> 727  2020-10-06T06:54:23Z 2020-10-19T11:25:58Z
#> 728  2020-10-06T06:54:18Z 2020-10-19T11:25:38Z
#> 729  2020-10-06T06:49:35Z 2020-10-19T11:25:18Z
#> 730  2020-10-06T06:46:26Z 2020-10-19T11:24:58Z
#> 731  2020-10-06T06:44:43Z 2020-10-19T11:24:38Z
#> 732  2020-10-06T06:43:55Z 2020-10-19T11:24:18Z
#> 733  2020-10-06T06:43:05Z 2020-10-19T11:23:57Z
#> 734  2020-10-06T06:40:45Z 2020-10-19T11:23:37Z
#> 735  2020-10-06T06:38:12Z 2020-10-19T11:23:17Z
#> 736  2020-10-06T06:37:45Z 2020-10-19T11:22:57Z
#> 737  2020-10-06T06:37:27Z 2020-10-19T11:22:37Z
#> 738  2020-10-06T06:36:42Z 2020-10-19T11:22:17Z
#> 739  2020-10-06T06:35:46Z 2020-10-19T11:21:57Z
#> 740  2020-10-06T06:33:33Z 2020-10-19T11:21:37Z
#> 741  2020-10-06T06:33:23Z 2020-10-19T11:21:17Z
#> 742  2020-10-06T06:33:07Z 2020-10-19T11:20:57Z
#> 743  2020-10-06T06:32:50Z 2020-10-19T11:20:36Z
#> 744  2020-10-06T06:32:09Z 2020-10-19T11:20:16Z
#> 745  2020-10-06T06:31:38Z 2020-10-19T11:19:56Z
#> 746  2020-10-06T06:28:36Z 2020-10-19T11:19:36Z
#> 747  2020-10-06T06:28:25Z 2020-10-19T11:19:16Z
#> 748  2020-10-06T06:26:32Z 2020-10-19T11:18:56Z
#> 749  2020-10-06T06:25:50Z 2020-10-19T11:18:36Z
#> 750  2020-10-06T06:25:26Z 2020-10-19T11:18:16Z
#> 751  2020-10-06T06:25:08Z 2020-10-19T11:17:55Z
#> 752  2020-10-06T06:20:52Z 2020-10-19T11:17:36Z
#> 753  2020-10-06T06:20:44Z 2020-10-19T11:17:15Z
#> 754  2020-10-06T06:17:26Z 2020-10-19T11:16:55Z
#> 755  2020-10-06T06:16:30Z 2020-10-19T11:16:35Z
#> 756  2020-10-06T06:15:55Z 2020-10-19T11:16:15Z
#> 757  2020-10-06T06:15:23Z 2020-10-19T11:15:55Z
#> 758  2020-10-06T06:13:43Z 2020-10-19T11:15:35Z
#> 759  2020-10-06T06:12:23Z 2020-10-19T11:15:15Z
#> 760  2020-10-06T06:12:19Z 2020-10-19T11:14:54Z
#> 761  2020-10-06T06:11:42Z 2020-10-19T11:14:34Z
#> 762  2020-10-06T06:11:15Z 2020-10-19T11:14:14Z
#> 763  2020-10-06T06:06:29Z 2020-10-19T11:13:54Z
#> 764  2020-10-06T06:05:01Z 2020-10-19T11:13:34Z
#> 765  2020-10-06T06:04:00Z 2020-10-19T11:13:14Z
#> 766  2020-10-06T06:00:56Z 2020-10-19T11:12:54Z
#> 767  2020-10-06T06:00:29Z 2020-10-19T11:12:34Z
#> 768  2020-10-06T06:00:04Z 2020-10-19T11:12:14Z
#> 769  2020-10-06T05:57:21Z 2020-10-19T11:11:54Z
#> 770  2020-10-06T05:56:18Z 2020-10-19T11:11:33Z
#> 771  2020-10-06T05:54:19Z 2020-10-19T11:11:13Z
#> 772  2020-10-06T05:54:06Z 2020-10-19T11:10:53Z
#> 773  2020-10-06T05:53:56Z 2020-10-19T11:10:33Z
#> 774  2020-10-06T05:49:48Z 2020-10-19T11:10:13Z
#> 775  2020-10-06T05:46:58Z 2020-10-19T11:09:53Z
#> 776  2020-10-06T05:44:22Z 2020-10-19T11:09:33Z
#> 777  2020-10-06T05:43:52Z 2020-10-19T11:09:13Z
#> 778  2020-10-06T05:37:53Z 2020-10-19T11:08:52Z
#> 779  2020-10-06T05:35:18Z 2020-10-19T11:08:32Z
#> 780  2020-10-06T05:34:29Z 2020-10-19T11:08:12Z
#> 781  2020-10-06T05:30:18Z 2020-10-19T11:07:52Z
#> 782  2020-10-06T05:27:51Z 2020-10-19T11:07:32Z
#> 783  2020-10-06T05:26:14Z 2020-10-19T11:07:12Z
#> 784  2020-10-06T05:24:50Z 2020-10-19T11:06:52Z
#> 785  2020-10-06T05:22:16Z 2020-10-19T11:06:32Z
#> 786  2020-10-06T05:21:17Z 2020-10-19T11:06:12Z
#> 787  2020-10-06T05:19:16Z 2020-10-19T11:05:51Z
#> 788  2020-10-06T05:17:30Z 2020-10-19T11:05:31Z
#> 789  2020-10-06T05:14:43Z 2020-10-19T11:05:11Z
#> 790  2020-10-06T05:13:48Z 2020-10-19T11:04:51Z
#> 791  2020-10-06T05:12:00Z 2020-10-19T11:04:31Z
#> 792  2020-10-06T05:09:58Z 2020-10-19T11:04:11Z
#> 793  2020-10-06T05:03:45Z 2020-10-19T11:03:51Z
#> 794  2020-10-06T04:59:23Z 2020-10-19T11:03:31Z
#> 795  2020-10-06T04:58:04Z 2020-10-19T11:03:11Z
#> 796  2020-10-06T04:57:24Z 2020-10-19T11:02:50Z
#> 797  2020-10-06T04:54:48Z 2020-10-19T11:02:31Z
#> 798  2020-10-06T04:54:32Z 2020-10-19T11:02:10Z
#> 799  2020-10-06T04:50:01Z 2020-10-19T11:01:50Z
#> 800  2020-10-06T04:47:37Z 2020-10-19T11:01:30Z
#> 801  2020-10-06T04:42:57Z 2020-10-19T11:01:10Z
#> 802  2020-10-06T04:39:00Z 2020-10-19T11:00:50Z
#> 803  2020-10-06T04:37:22Z 2020-10-19T11:00:31Z
#> 804  2020-10-06T04:36:21Z 2020-10-19T11:00:31Z
#> 805  2020-10-06T04:35:59Z 2020-10-19T10:59:50Z
#> 806  2020-10-06T04:35:47Z 2020-10-19T10:59:29Z
#> 807  2020-10-06T04:26:08Z 2020-10-19T10:59:09Z
#> 808  2020-10-05T15:42:36Z 2020-10-19T10:58:49Z
#> 809  2020-10-05T15:36:10Z 2020-10-19T10:58:29Z
#> 810  2020-10-05T15:33:02Z 2020-10-19T10:58:09Z
#> 811  2020-10-05T15:32:34Z 2020-10-19T10:57:49Z
#> 812  2020-10-05T15:32:10Z 2020-10-19T10:57:29Z
#> 813  2020-10-05T15:24:22Z 2020-10-19T10:57:09Z
#> 814  2020-10-05T15:21:53Z 2020-10-19T10:56:48Z
#> 815  2020-10-05T15:18:10Z 2020-10-19T10:56:28Z
#> 816  2020-10-05T15:16:14Z 2020-10-19T10:56:08Z
#> 817  2020-10-05T15:08:35Z 2020-10-19T10:55:48Z
#> 818  2020-10-05T15:03:19Z 2020-10-19T10:55:28Z
#> 819  2020-10-05T15:02:25Z 2020-10-19T10:55:08Z
#> 820  2020-10-05T15:01:37Z 2020-10-19T10:54:48Z
#> 821  2020-10-05T15:01:14Z 2020-10-19T10:54:28Z
#> 822  2020-10-05T14:56:06Z 2020-10-19T10:54:08Z
#> 823  2020-10-05T14:52:20Z 2020-10-19T10:53:27Z
#> 824  2020-10-05T14:49:56Z 2020-10-19T10:53:07Z
#> 825  2020-10-05T14:47:55Z 2020-10-19T10:52:47Z
#> 826  2020-10-05T14:47:40Z 2020-10-19T10:52:27Z
#> 827  2020-10-05T14:36:36Z 2020-10-19T10:52:07Z
#> 828  2020-10-05T14:30:05Z 2020-10-19T10:51:47Z
#> 829  2020-10-05T14:25:27Z 2020-10-19T10:51:27Z
#> 830  2020-10-05T14:23:29Z 2020-10-19T10:51:07Z
#> 831  2020-10-05T14:21:39Z 2020-10-19T10:50:46Z
#> 832  2020-10-05T14:15:35Z 2020-10-19T10:50:26Z
#> 833  2020-10-05T14:10:31Z 2020-10-19T10:50:06Z
#> 834  2020-10-05T14:09:47Z 2020-10-19T10:49:46Z
#> 835  2020-10-05T14:09:14Z 2020-10-19T10:49:26Z
#> 836  2020-10-05T14:07:41Z 2020-10-19T10:49:06Z
#> 837  2020-10-05T14:06:29Z 2020-10-19T10:48:46Z
#> 838  2020-10-05T14:02:04Z 2020-10-19T10:48:25Z
#> 839  2020-10-05T14:01:36Z 2020-10-19T10:48:05Z
#> 840  2020-10-05T14:01:12Z 2020-10-19T10:47:45Z
#> 841  2020-10-05T14:00:49Z 2020-10-19T10:47:25Z
#> 842  2020-10-05T13:59:21Z 2020-10-19T10:47:05Z
#> 843  2020-10-05T13:57:55Z 2020-10-19T10:46:45Z
#> 844  2020-10-05T13:52:56Z 2020-10-19T10:46:25Z
#> 845  2020-10-05T13:52:21Z 2020-10-19T10:46:05Z
#> 846  2020-10-05T13:49:01Z 2020-10-19T10:45:45Z
#> 847  2020-10-05T13:47:07Z 2020-10-19T10:45:25Z
#> 848  2020-10-05T13:46:11Z 2020-10-19T10:45:04Z
#> 849  2020-10-05T13:45:27Z 2020-10-19T10:44:44Z
#> 850  2020-10-05T13:36:57Z 2020-10-19T10:44:24Z
#> 851  2020-10-05T13:36:33Z 2020-10-19T10:44:04Z
#> 852  2020-10-05T13:29:22Z 2020-10-19T10:43:44Z
#> 853  2020-10-05T13:26:30Z 2020-10-19T10:43:24Z
#> 854  2020-10-05T13:25:04Z 2020-10-19T10:43:04Z
#> 855  2020-10-05T13:23:41Z 2020-10-19T10:42:44Z
#> 856  2020-10-05T13:20:20Z 2020-10-19T10:42:24Z
#> 857  2020-10-05T13:07:19Z 2020-10-19T10:42:04Z
#> 858  2020-10-05T13:06:52Z 2020-10-19T10:41:43Z
#> 859  2020-10-05T13:05:36Z 2020-10-19T10:41:23Z
#> 860  2020-10-05T13:00:29Z 2020-10-19T10:40:43Z
#> 861  2020-10-05T12:56:46Z 2020-10-19T10:40:23Z
#> 862  2020-10-05T12:53:44Z 2020-10-19T10:40:03Z
#> 863  2020-10-05T12:47:32Z 2020-10-19T10:39:43Z
#> 864  2020-10-05T12:46:49Z 2020-10-19T10:39:23Z
#> 865  2020-10-05T12:46:05Z 2020-10-19T10:39:02Z
#> 866  2020-10-05T12:41:29Z 2020-10-19T10:38:43Z
#> 867  2020-10-05T12:37:53Z 2020-10-19T10:38:22Z
#> 868  2020-10-05T12:33:09Z 2020-10-19T10:38:02Z
#> 869  2020-10-05T12:32:30Z 2020-10-19T10:37:42Z
#> 870  2020-10-05T12:32:04Z 2020-10-19T10:37:22Z
#> 871  2020-10-14T17:15:47Z 2020-10-14T17:15:47Z
#> 872  2020-10-14T17:09:02Z 2020-10-14T17:09:02Z
#> 873  2020-10-14T17:04:58Z 2020-10-14T17:04:58Z
#> 874  2020-10-14T17:02:00Z 2020-10-14T17:02:00Z
#> 875  2020-10-13T07:34:29Z 2020-10-14T07:31:31Z
#> 876  2020-10-13T08:21:45Z 2020-10-14T07:20:10Z
#> 877  2020-10-13T08:18:07Z 2020-10-14T07:17:30Z
#> 878  2020-10-13T08:11:44Z 2020-10-14T07:13:30Z
#> 879  2020-10-13T08:10:10Z 2020-10-14T07:12:31Z
#> 880  2020-10-13T08:04:41Z 2020-10-14T07:09:50Z
#> 881  2020-10-13T08:03:53Z 2020-10-14T07:09:31Z
#> 882  2020-10-13T08:00:37Z 2020-10-14T07:06:50Z
#> 883  2020-10-13T08:00:12Z 2020-10-14T07:06:30Z
#> 884  2020-10-13T07:53:44Z 2020-10-14T07:01:11Z
#> 885  2020-10-13T07:46:43Z 2020-10-14T06:56:30Z
#> 886  2020-10-13T07:45:54Z 2020-10-14T06:55:51Z
#> 887  2020-10-13T07:36:03Z 2020-10-14T06:49:50Z
#> 888  2020-06-18T08:32:07Z 2020-09-03T15:10:05Z
#> 889  2020-06-18T08:32:05Z 2020-09-03T15:09:45Z
#> 890  2020-06-18T08:32:03Z 2020-09-03T15:09:24Z
#> 891  2020-06-18T08:32:02Z 2020-09-03T15:09:04Z
#> 892  2020-06-18T08:32:00Z 2020-09-03T15:08:46Z
#> 893  2020-06-18T08:31:57Z 2020-09-03T15:08:24Z
#> 894  2020-06-18T08:31:55Z 2020-09-03T15:08:04Z
#> 895  2020-06-18T08:31:51Z 2020-09-03T15:07:28Z
#> 896  2020-06-18T08:31:50Z 2020-09-03T15:07:04Z
#> 897  2020-06-18T08:31:49Z 2020-09-03T15:06:44Z
#> 898  2020-06-18T08:31:48Z 2020-09-03T15:06:24Z
#> 899  2020-06-18T08:31:47Z 2020-09-03T15:06:05Z
#> 900  2020-06-18T08:31:46Z 2020-09-03T15:05:44Z
#> 901  2020-06-18T08:31:45Z 2020-09-03T15:05:24Z
#> 902  2020-06-18T08:31:43Z 2020-09-03T15:05:05Z
#> 903  2020-06-18T08:31:42Z 2020-09-03T15:04:44Z
#> 904  2020-06-18T08:31:41Z 2020-09-03T15:04:24Z
#> 905  2020-06-18T08:31:40Z 2020-09-03T15:04:04Z
#> 906  2020-06-18T08:31:39Z 2020-09-03T15:03:45Z
#> 907  2020-06-18T08:31:38Z 2020-09-03T15:03:24Z
#> 908  2020-06-18T08:31:36Z 2020-09-03T15:03:04Z
#> 909  2020-06-18T08:31:35Z 2020-09-03T15:02:44Z
#> 910  2020-06-18T08:31:34Z 2020-09-03T15:02:24Z
#> 911  2020-06-18T08:31:33Z 2020-09-03T15:02:04Z
#> 912  2020-06-18T08:31:32Z 2020-09-03T15:01:45Z
#> 913  2020-06-18T08:31:31Z 2020-09-03T15:01:24Z
#> 914  2020-06-18T08:31:30Z 2020-09-03T15:01:04Z
#> 915  2020-06-18T08:31:28Z 2020-09-03T15:00:44Z
#> 916  2020-06-18T08:31:27Z 2020-09-03T15:00:25Z
#> 917  2020-06-18T08:31:26Z 2020-09-03T15:00:05Z
#> 918  2020-06-18T08:31:24Z 2020-09-03T14:59:45Z
#> 919  2020-06-18T08:31:19Z 2020-09-03T14:59:24Z
#> 920  2020-06-18T08:31:17Z 2020-09-03T14:59:05Z
#> 921  2020-06-18T08:31:16Z 2020-09-03T14:58:44Z
#> 922  2020-06-18T08:31:15Z 2020-09-03T14:58:24Z
#> 923  2020-06-18T08:31:13Z 2020-09-03T14:58:04Z
#> 924  2020-06-18T08:31:12Z 2020-09-03T14:57:44Z
#> 925  2020-06-18T08:31:11Z 2020-09-03T14:57:24Z
#> 926  2020-06-18T08:31:10Z 2020-09-03T14:57:04Z
#> 927  2020-06-18T08:31:08Z 2020-09-03T14:56:45Z
#> 928  2020-06-18T08:31:07Z 2020-09-03T14:56:24Z
#> 929  2020-06-18T08:31:05Z 2020-09-03T14:56:04Z
#> 930  2020-06-18T08:31:04Z 2020-09-03T14:55:44Z
#> 931  2020-06-18T08:31:03Z 2020-09-03T14:55:24Z
#> 932  2020-06-18T08:31:01Z 2020-09-03T14:55:05Z
#> 933  2020-06-18T08:30:56Z 2020-09-03T14:54:44Z
#> 934  2020-06-18T08:30:55Z 2020-09-03T14:54:24Z
#> 935  2020-06-18T08:30:54Z 2020-09-03T14:54:04Z
#> 936  2020-06-18T08:30:51Z 2020-09-03T14:53:44Z
#> 937  2020-06-18T08:30:46Z 2020-09-03T14:53:24Z
#> 938  2020-06-18T08:30:43Z 2020-09-03T14:53:04Z
#> 939  2020-06-18T08:30:42Z 2020-09-03T14:52:45Z
#> 940  2020-06-18T08:30:41Z 2020-09-03T14:52:24Z
#> 941  2020-06-18T08:30:39Z 2020-09-03T14:52:04Z
#> 942  2020-06-18T08:30:38Z 2020-09-03T14:51:44Z
#> 943  2020-06-18T08:30:37Z 2020-09-03T14:51:37Z
#> 944  2020-06-18T08:30:33Z 2020-09-03T14:50:56Z
#> 945  2020-06-18T08:30:32Z 2020-09-03T14:50:08Z
#> 946  2020-06-18T08:30:30Z 2020-09-03T14:50:05Z
#> 947  2020-06-18T08:30:29Z 2020-09-03T14:49:24Z
#> 948  2020-06-18T08:30:28Z 2020-09-03T14:49:04Z
#> 949  2020-06-18T08:30:27Z 2020-09-03T14:48:45Z
#> 950  2020-06-18T08:30:26Z 2020-09-03T14:48:33Z
#> 951  2020-06-18T08:30:25Z 2020-09-03T14:48:20Z
#> 952  2020-06-18T08:30:21Z 2020-09-03T14:47:26Z
#> 953  2020-06-18T08:30:20Z 2020-09-03T14:47:04Z
#> 954  2020-06-18T08:30:19Z 2020-09-03T14:46:45Z
#> 955  2020-06-18T08:30:17Z 2020-09-03T14:46:25Z
#> 956  2020-06-18T08:30:14Z 2020-09-03T14:46:05Z
#> 957  2020-06-18T08:30:11Z 2020-09-03T14:45:45Z
#> 958  2020-06-18T08:30:09Z 2020-09-03T14:45:24Z
#> 959  2020-06-18T08:30:05Z 2020-09-03T14:45:04Z
#> 960  2020-06-18T08:30:03Z 2020-09-03T14:44:44Z
#> 961  2020-06-18T08:30:00Z 2020-09-03T14:44:26Z
#> 962  2020-06-18T08:29:59Z 2020-09-03T14:44:05Z
#> 963  2020-06-18T08:29:58Z 2020-09-03T14:43:44Z
#> 964  2020-06-18T08:29:57Z 2020-09-03T14:43:25Z
#> 965  2020-06-18T08:29:56Z 2020-09-03T14:43:05Z
#> 966  2020-06-18T08:29:56Z 2020-09-03T14:42:45Z
#> 967  2020-06-18T08:29:51Z 2020-09-03T14:41:25Z
#> 968  2020-06-18T08:29:51Z 2020-09-03T14:41:04Z
#> 969  2020-06-18T08:29:49Z 2020-09-03T14:40:44Z
#> 970  2020-06-18T08:29:48Z 2020-09-03T14:40:24Z
#> 971  2020-06-18T08:29:47Z 2020-09-03T14:40:04Z
#> 972  2020-06-18T08:29:46Z 2020-09-03T14:39:45Z
#> 973  2020-06-18T08:29:45Z 2020-09-03T14:39:32Z
#> 974  2020-06-18T08:29:43Z 2020-09-03T14:39:05Z
#> 975  2020-06-18T08:29:42Z 2020-09-03T14:38:45Z
#> 976  2020-06-18T08:29:41Z 2020-09-03T14:38:25Z
#> 977  2020-06-18T08:29:37Z 2020-09-03T14:37:44Z
#> 978  2020-06-18T08:29:36Z 2020-09-03T14:37:28Z
#> 979  2020-06-18T08:29:35Z 2020-09-03T14:37:04Z
#> 980  2020-06-18T08:29:34Z 2020-09-03T14:36:44Z
#> 981  2020-06-18T08:29:33Z 2020-09-03T14:36:24Z
#> 982  2020-06-18T08:29:32Z 2020-09-03T14:36:04Z
#> 983  2020-06-18T08:29:31Z 2020-09-03T14:35:44Z
#> 984  2020-06-18T08:29:31Z 2020-09-03T14:35:24Z
#> 985  2020-06-18T08:29:30Z 2020-09-03T14:35:05Z
#> 986  2020-06-18T08:29:29Z 2020-09-03T14:34:44Z
#> 987  2020-06-18T08:29:28Z 2020-09-03T14:34:24Z
#> 988  2020-06-18T08:29:27Z 2020-09-03T14:34:04Z
#> 989  2020-06-18T08:29:26Z 2020-09-03T14:33:44Z
#> 990  2020-06-18T08:29:24Z 2020-09-03T14:33:24Z
#> 991  2020-06-18T08:29:24Z 2020-09-03T14:33:04Z
#> 992  2020-06-18T08:29:23Z 2020-09-03T14:32:45Z
#> 993  2020-06-18T08:29:22Z 2020-09-03T14:32:24Z
#> 994  2020-06-18T08:29:21Z 2020-09-03T14:32:05Z
#> 995  2020-06-18T08:29:20Z 2020-09-03T14:31:44Z
#> 996  2020-06-18T08:29:19Z 2020-09-03T14:31:25Z
#> 997  2020-06-18T08:29:18Z 2020-09-03T14:31:05Z
#> 998  2020-06-18T08:29:16Z 2020-09-03T14:30:44Z
#> 999  2020-06-18T08:29:15Z 2020-09-03T14:30:25Z
#> 1000 2020-06-18T08:29:14Z 2020-09-03T14:30:09Z
#> 1001 2020-06-18T08:29:13Z 2020-09-03T14:29:44Z
#> 1002 2020-06-18T08:29:12Z 2020-09-03T14:29:24Z
#> 1003 2020-06-18T08:29:11Z 2020-09-03T14:29:04Z
#> 1004 2020-06-18T08:29:10Z 2020-09-03T14:28:44Z
#> 1005 2020-06-18T08:29:09Z 2020-09-03T14:28:24Z
#> 1006 2020-06-18T08:29:08Z 2020-09-03T14:28:06Z
#> 1007 2020-06-18T08:29:07Z 2020-09-03T14:27:44Z
#> 1008 2020-06-18T08:29:06Z 2020-09-03T14:27:25Z
#> 1009 2020-06-18T08:29:05Z 2020-09-03T14:27:04Z
#> 1010 2020-06-18T08:29:04Z 2020-09-03T14:26:44Z
#> 1011 2020-06-18T08:29:03Z 2020-09-03T14:26:25Z
#> 1012 2020-06-18T08:29:02Z 2020-09-03T14:26:05Z
#> 1013 2020-06-18T08:29:01Z 2020-09-03T14:25:45Z
#> 1014 2020-06-18T08:28:59Z 2020-09-03T14:25:24Z
#> 1015 2020-06-18T08:28:59Z 2020-09-03T14:25:05Z
#> 1016 2020-06-18T08:28:57Z 2020-09-03T14:24:45Z
#> 1017 2020-06-18T08:28:56Z 2020-09-03T14:24:25Z
#> 1018 2020-06-18T08:28:56Z 2020-09-03T14:24:06Z
#> 1019 2020-06-18T08:28:55Z 2020-09-03T14:23:45Z
#> 1020 2020-06-18T08:28:54Z 2020-09-03T14:23:25Z
#> 1021 2020-06-18T08:28:53Z 2020-09-03T14:23:05Z
#> 1022 2020-06-18T08:28:52Z 2020-09-03T14:22:54Z
#> 1023 2020-06-18T08:28:51Z 2020-09-03T14:22:24Z
#> 1024 2020-06-18T08:28:50Z 2020-09-03T14:22:04Z
#> 1025 2020-06-18T08:28:49Z 2020-09-03T14:21:45Z
#> 1026 2020-06-18T08:28:48Z 2020-09-03T14:21:31Z
#> 1027 2020-06-18T08:28:46Z 2020-09-03T14:20:46Z
#> 1028 2020-06-18T08:28:45Z 2020-09-03T14:20:25Z
#> 1029 2020-06-18T08:28:44Z 2020-09-03T14:20:05Z
#> 1030 2020-06-18T08:28:43Z 2020-09-03T14:19:45Z
#> 1031 2020-06-18T08:28:42Z 2020-09-03T14:19:24Z
#> 1032 2020-06-18T08:28:41Z 2020-09-03T14:19:04Z
#> 1033 2020-06-18T08:28:40Z 2020-09-03T14:18:44Z
#> 1034 2020-06-18T08:28:39Z 2020-09-03T14:18:25Z
#> 1035 2020-06-18T08:28:38Z 2020-09-03T14:18:05Z
#> 1036 2020-06-18T08:28:37Z 2020-09-03T14:17:52Z
#> 1037 2020-06-18T08:28:36Z 2020-09-03T14:17:30Z
#> 1038 2020-06-18T08:28:35Z 2020-09-03T14:17:07Z
#> 1039 2020-06-18T08:28:34Z 2020-09-03T14:16:50Z
#> 1040 2020-06-18T08:28:33Z 2020-09-03T14:16:25Z
#> 1041 2020-06-18T08:28:32Z 2020-09-03T14:16:04Z
#> 1042 2020-06-18T08:28:31Z 2020-09-03T14:15:46Z
#> 1043 2020-06-18T08:28:30Z 2020-09-03T14:15:26Z
#> 1044 2020-06-18T08:28:29Z 2020-09-03T14:15:05Z
#> 1045 2020-06-18T08:28:28Z 2020-09-03T14:14:44Z
#> 1046 2020-06-18T08:28:27Z 2020-09-03T14:14:26Z
#> 1047 2020-06-18T08:28:27Z 2020-09-03T14:14:05Z
#> 1048 2020-06-18T08:28:26Z 2020-09-03T14:13:45Z
#> 1049 2020-06-18T08:28:24Z 2020-09-03T14:13:25Z
#> 1050 2020-06-18T08:28:23Z 2020-09-03T14:13:04Z
#> 1051 2020-06-18T08:28:21Z 2020-09-03T14:12:45Z
#> 1052 2020-06-18T08:28:20Z 2020-09-03T14:12:24Z
#> 1053 2020-06-18T08:28:20Z 2020-09-03T14:12:04Z
#> 1054 2020-06-18T08:28:19Z 2020-09-03T14:11:45Z
#> 1055 2020-06-18T08:28:18Z 2020-09-03T14:11:25Z
#> 1056 2020-06-18T08:28:17Z 2020-09-03T14:11:06Z
#> 1057 2020-06-18T08:28:16Z 2020-09-03T14:10:44Z
#> 1058 2020-06-18T08:28:15Z 2020-09-03T14:10:24Z
#> 1059 2020-06-18T08:28:14Z 2020-09-03T14:10:04Z
#> 1060 2020-06-18T08:28:13Z 2020-09-03T14:09:45Z
#> 1061 2020-06-18T08:28:12Z 2020-09-03T14:09:33Z
#> 1062 2020-06-18T08:28:12Z 2020-09-03T14:09:04Z
#> 1063 2020-06-18T08:28:10Z 2020-09-03T14:08:45Z
#> 1064 2020-06-18T08:28:09Z 2020-09-03T14:08:24Z
#> 1065 2020-06-18T08:28:08Z 2020-09-03T14:08:05Z
#> 1066 2020-06-18T08:28:07Z 2020-09-03T14:07:44Z
#> 1067 2020-06-18T08:28:07Z 2020-09-03T14:07:25Z
#> 1068 2020-06-18T08:28:06Z 2020-09-03T14:07:05Z
#> 1069 2020-06-18T08:28:05Z 2020-09-03T14:06:45Z
#> 1070 2020-06-18T08:28:04Z 2020-09-03T14:06:28Z
#> 1071 2020-06-18T08:28:02Z 2020-09-03T14:05:57Z
#> 1072 2020-06-18T08:28:00Z 2020-09-03T14:05:33Z
#> 1073 2020-06-18T08:27:59Z 2020-09-03T14:05:13Z
#> 1074 2020-06-18T08:27:58Z 2020-09-03T14:04:47Z
#> 1075 2020-06-18T08:27:57Z 2020-09-03T14:04:35Z
#> 1076 2020-06-18T08:27:56Z 2020-09-03T14:04:08Z
#> 1077 2020-06-18T08:27:55Z 2020-09-03T14:03:54Z
#> 1078 2020-06-18T08:27:54Z 2020-09-03T14:03:31Z
#> 1079 2020-06-18T08:27:54Z 2020-09-03T14:03:08Z
#> 1080 2020-06-18T08:27:53Z 2020-09-03T14:02:50Z
#> 1081 2020-06-18T08:27:52Z 2020-09-03T14:02:28Z
#> 1082 2020-06-18T08:27:51Z 2020-09-03T14:02:09Z
#> 1083 2020-06-18T08:27:50Z 2020-09-03T14:01:50Z
#> 1084 2020-06-18T08:27:49Z 2020-09-03T14:01:42Z
#> 1085 2020-06-18T08:27:48Z 2020-09-03T14:01:07Z
#> 1086 2020-06-18T08:27:47Z 2020-09-03T14:00:48Z
#> 1087 2020-06-18T08:27:46Z 2020-09-03T14:00:29Z
#> 1088 2020-06-18T08:27:45Z 2020-09-03T14:00:14Z
#> 1089 2020-06-18T08:27:44Z 2020-09-03T13:59:50Z
#> 1090 2020-06-18T08:27:43Z 2020-09-03T13:59:38Z
#> 1091 2020-06-18T08:27:42Z 2020-09-03T13:59:11Z
#> 1092 2020-06-18T08:27:42Z 2020-09-03T13:58:51Z
#> 1093 2020-06-18T08:27:41Z 2020-09-03T13:58:28Z
#> 1094 2020-06-18T08:27:40Z 2020-09-03T13:58:09Z
#> 1095 2020-06-18T08:27:39Z 2020-09-03T13:57:46Z
#> 1096 2020-06-18T08:27:38Z 2020-09-03T13:57:32Z
#> 1097 2020-06-18T08:27:37Z 2020-09-03T13:57:07Z
#> 1098 2020-06-18T08:27:37Z 2020-09-03T13:56:48Z
#> 1099 2020-06-18T08:27:36Z 2020-09-03T13:56:26Z
#> 1100 2020-06-18T08:27:34Z 2020-09-03T13:56:11Z
#> 1101 2020-06-18T08:27:33Z 2020-09-03T13:55:49Z
#> 1102 2020-06-18T08:27:32Z 2020-09-03T13:55:24Z
#> 1103 2020-06-18T08:27:32Z 2020-09-03T13:55:13Z
#> 1104 2020-06-18T08:27:31Z 2020-09-03T13:54:47Z
#> 1105 2020-06-18T08:27:30Z 2020-09-03T13:54:32Z
#> 1106 2020-06-18T08:27:29Z 2020-09-03T13:54:09Z
#> 1107 2020-06-18T08:27:29Z 2020-09-03T13:53:49Z
#> 1108 2020-06-18T08:27:28Z 2020-09-03T13:53:27Z
#> 1109 2020-06-18T08:27:27Z 2020-09-03T13:53:15Z
#> 1110 2020-06-18T08:27:26Z 2020-09-03T13:52:55Z
#> 1111 2020-06-18T08:27:26Z 2020-09-03T13:52:49Z
#> 1112 2020-06-18T08:27:25Z 2020-09-03T13:52:09Z
#> 1113 2020-06-18T08:27:24Z 2020-09-03T13:51:51Z
#> 1114 2020-06-18T08:27:22Z 2020-09-03T13:51:28Z
#> 1115 2020-06-18T08:27:21Z 2020-09-03T13:51:06Z
#> 1116 2020-06-18T08:27:20Z 2020-09-03T13:50:53Z
#> 1117 2020-06-18T08:27:20Z 2020-09-03T13:50:30Z
#> 1118 2020-06-18T08:27:19Z 2020-09-03T13:50:13Z
#> 1119 2020-06-18T08:27:18Z 2020-09-03T13:49:48Z
#> 1120 2020-06-18T08:27:16Z 2020-09-03T13:49:08Z
#> 1121 2020-06-18T08:27:15Z 2020-09-03T13:48:51Z
#> 1122 2020-06-18T08:27:14Z 2020-09-03T13:48:24Z
#> 1123 2020-06-18T08:27:14Z 2020-09-03T13:48:12Z
#> 1124 2020-06-18T08:27:13Z 2020-09-03T13:47:48Z
#> 1125 2020-06-18T08:27:12Z 2020-09-03T13:47:27Z
#> 1126 2020-06-18T08:27:11Z 2020-09-03T13:47:08Z
#> 1127 2020-06-18T08:27:10Z 2020-09-03T13:46:46Z
#> 1128 2020-06-18T08:27:09Z 2020-09-03T13:46:27Z
#> 1129 2020-06-18T08:27:09Z 2020-09-03T13:46:14Z
#> 1130 2020-06-18T08:27:08Z 2020-09-03T13:45:49Z
#> 1131 2020-06-18T08:27:07Z 2020-09-03T13:45:29Z
#> 1132 2020-06-18T08:27:07Z 2020-09-03T13:45:08Z
#> 1133 2020-06-18T08:27:06Z 2020-09-03T13:44:48Z
#> 1134 2020-06-18T08:27:05Z 2020-09-03T13:44:26Z
#> 1135 2020-06-18T08:27:04Z 2020-09-03T13:44:07Z
#> 1136 2020-06-18T08:27:04Z 2020-09-03T13:43:46Z
#> 1137 2020-06-18T08:27:03Z 2020-09-03T13:43:25Z
#> 1138 2020-06-18T08:27:02Z 2020-09-03T13:43:07Z
#> 1139 2020-06-18T08:27:01Z 2020-09-03T13:42:45Z
#> 1140 2020-06-18T08:27:00Z 2020-09-03T13:42:26Z
#> 1141 2020-06-18T08:26:59Z 2020-09-03T13:42:04Z
#> 1142 2020-06-18T08:26:57Z 2020-09-03T13:41:49Z
#> 1143 2020-06-18T08:26:56Z 2020-09-03T13:41:31Z
#> 1144 2020-06-18T08:26:55Z 2020-09-03T13:41:07Z
#> 1145 2020-06-18T08:26:54Z 2020-09-03T13:40:46Z
#> 1146 2020-06-18T08:26:53Z 2020-09-03T13:40:24Z
#> 1147 2020-06-18T08:26:53Z 2020-09-03T13:40:06Z
#> 1148 2020-06-18T08:26:51Z 2020-09-03T13:39:47Z
#> 1149 2020-06-18T08:26:51Z 2020-09-03T13:39:26Z
#> 1150 2020-06-18T08:26:49Z 2020-09-03T13:39:04Z
#> 1151 2020-06-18T08:26:49Z 2020-09-03T13:38:44Z
#> 1152 2020-06-18T08:26:48Z 2020-09-03T13:38:24Z
#> 1153 2020-06-18T08:26:48Z 2020-09-03T13:38:04Z
#> 1154 2020-06-18T08:26:47Z 2020-09-03T13:37:44Z
#> 1155 2020-06-18T08:26:46Z 2020-09-03T13:37:24Z
#> 1156 2020-06-18T08:26:45Z 2020-09-03T13:37:04Z
#> 1157 2020-06-18T08:26:45Z 2020-09-03T13:36:44Z
#> 1158 2020-06-18T08:26:44Z 2020-09-03T13:36:24Z
#> 1159 2020-06-18T08:26:43Z 2020-09-03T13:36:04Z
#> 1160 2020-06-18T08:26:42Z 2020-09-03T13:35:44Z
#> 1161 2020-06-18T08:26:41Z 2020-09-03T13:35:24Z
#> 1162 2020-06-18T08:26:40Z 2020-09-03T13:35:04Z
#> 1163 2020-06-18T08:26:40Z 2020-09-03T13:34:44Z
#> 1164 2020-06-18T08:26:39Z 2020-09-03T13:34:24Z
#> 1165 2020-06-18T08:26:38Z 2020-09-03T13:34:04Z
#> 1166 2020-06-18T08:26:38Z 2020-09-03T13:33:44Z
#> 1167 2020-06-18T08:26:37Z 2020-09-03T13:33:24Z
#> 1168 2020-06-18T08:26:36Z 2020-09-03T13:33:04Z
#> 1169 2020-06-18T08:26:35Z 2020-09-03T13:32:44Z
#> 1170 2020-06-18T08:26:34Z 2020-09-03T13:32:24Z
#> 1171 2020-06-18T08:26:34Z 2020-09-03T13:32:04Z
#> 1172 2020-06-18T08:26:29Z 2020-09-03T13:31:44Z
#> 1173 2020-06-18T08:26:28Z 2020-09-03T13:31:24Z
#> 1174 2020-06-18T08:26:27Z 2020-09-03T13:31:04Z
#> 1175 2020-06-18T08:26:27Z 2020-09-03T13:30:44Z
#> 1176 2020-06-18T08:26:25Z 2020-09-03T13:30:24Z
#> 1177 2020-06-18T08:26:25Z 2020-09-03T13:30:16Z
#> 1178 2020-06-18T08:26:24Z 2020-09-03T13:29:44Z
#> 1179 2020-06-18T08:26:23Z 2020-09-03T13:29:24Z
#> 1180 2020-06-18T08:26:21Z 2020-09-03T13:29:04Z
#> 1181 2020-06-18T08:26:21Z 2020-09-03T13:28:44Z
#> 1182 2020-06-18T08:26:20Z 2020-09-03T13:28:24Z
#> 1183 2020-06-18T08:26:19Z 2020-09-03T13:28:04Z
#> 1184 2020-06-18T08:26:18Z 2020-09-03T13:27:45Z
#> 1185 2020-06-18T08:26:18Z 2020-09-03T13:27:24Z
#> 1186 2020-06-18T08:26:17Z 2020-09-03T13:27:04Z
#> 1187 2020-06-18T08:26:17Z 2020-09-03T13:26:44Z
#> 1188 2020-06-18T08:26:16Z 2020-09-03T13:26:24Z
#> 1189 2020-06-18T08:26:15Z 2020-09-03T13:26:04Z
#> 1190 2020-06-18T08:26:14Z 2020-09-03T13:25:44Z
#> 1191 2020-06-18T08:26:13Z 2020-09-03T13:25:24Z
#> 1192 2020-06-18T08:26:12Z 2020-09-03T13:25:04Z
#> 1193 2020-06-18T08:26:12Z 2020-09-03T13:24:44Z
#> 1194 2020-06-18T08:26:11Z 2020-09-03T13:24:24Z
#> 1195 2020-06-18T08:26:11Z 2020-09-03T13:24:04Z
#> 1196 2020-06-18T08:26:10Z 2020-09-03T13:23:44Z
#> 1197 2020-06-18T08:26:09Z 2020-09-03T13:23:24Z
#> 1198 2020-06-18T08:26:08Z 2020-09-03T13:23:04Z
#> 1199 2020-06-18T08:26:08Z 2020-09-03T13:22:44Z
#> 1200 2020-06-18T08:26:07Z 2020-09-03T13:22:24Z
#> 1201 2020-06-18T08:26:07Z 2020-09-03T13:22:04Z
#> 1202 2020-06-18T08:26:06Z 2020-09-03T13:21:44Z
#> 1203 2020-06-18T08:26:05Z 2020-09-03T13:21:24Z
#> 1204 2020-06-18T08:26:04Z 2020-09-03T13:21:04Z
#> 1205 2020-06-18T08:26:04Z 2020-09-03T13:20:44Z
#> 1206 2020-06-18T08:26:02Z 2020-09-03T13:20:24Z
#> 1207 2020-06-18T08:26:02Z 2020-09-03T13:20:04Z
#> 1208 2020-06-18T08:26:01Z 2020-09-03T13:19:44Z
#> 1209 2020-06-18T08:26:00Z 2020-09-03T13:19:24Z
#> 1210 2020-06-18T08:25:59Z 2020-09-03T13:19:04Z
#> 1211 2020-06-18T08:25:58Z 2020-09-03T13:18:44Z
#> 1212 2020-06-18T08:25:57Z 2020-09-03T13:18:24Z
#> 1213 2020-06-18T08:25:57Z 2020-09-03T13:18:04Z
#> 1214 2020-06-18T08:25:56Z 2020-09-03T13:17:44Z
#> 1215 2020-06-18T08:25:56Z 2020-09-03T13:17:24Z
#> 1216 2020-06-18T08:25:54Z 2020-09-03T13:17:04Z
#> 1217 2020-06-18T08:25:51Z 2020-09-03T13:16:44Z
#> 1218 2020-06-18T08:25:50Z 2020-09-03T13:16:24Z
#> 1219 2020-06-18T08:25:49Z 2020-09-03T13:16:04Z
#> 1220 2020-06-18T08:25:49Z 2020-09-03T13:15:44Z
#> 1221 2020-06-18T08:25:48Z 2020-09-03T13:15:24Z
#> 1222 2020-06-18T08:25:46Z 2020-09-03T13:15:04Z
#> 1223 2020-06-18T08:25:45Z 2020-09-03T13:14:44Z
#> 1224 2020-06-18T08:25:45Z 2020-09-03T13:14:24Z
#> 1225 2020-06-18T08:25:43Z 2020-09-03T13:14:04Z
#> 1226 2020-06-18T08:25:42Z 2020-09-03T13:13:44Z
#> 1227 2020-06-18T08:25:41Z 2020-09-03T13:13:24Z
#> 1228 2020-06-18T08:25:41Z 2020-09-03T13:13:04Z
#> 1229 2020-06-18T08:25:40Z 2020-09-03T13:12:45Z
#> 1230 2020-06-18T08:25:39Z 2020-09-03T13:12:24Z
#> 1231 2020-06-18T08:25:38Z 2020-09-03T13:12:04Z
#> 1232 2020-06-18T08:25:38Z 2020-09-03T13:11:44Z
#> 1233 2020-06-18T08:25:37Z 2020-09-03T13:11:24Z
#> 1234 2020-06-18T08:25:37Z 2020-09-03T13:11:04Z
#> 1235 2020-06-18T08:25:36Z 2020-09-03T13:10:44Z
#> 1236 2020-06-18T08:25:35Z 2020-09-03T13:10:24Z
#> 1237 2020-06-18T08:25:35Z 2020-09-03T13:10:04Z
#> 1238 2020-06-18T08:25:34Z 2020-09-03T13:09:44Z
#> 1239 2020-06-18T08:25:33Z 2020-09-03T13:09:24Z
#> 1240 2020-06-18T08:25:32Z 2020-09-03T13:09:04Z
#> 1241 2020-06-18T08:25:31Z 2020-09-03T13:08:44Z
#> 1242 2020-06-18T08:25:31Z 2020-09-03T13:08:24Z
#> 1243 2020-06-18T08:25:30Z 2020-09-03T13:08:04Z
#> 1244 2020-06-18T08:25:29Z 2020-09-03T13:07:44Z
#> 1245 2020-06-18T08:25:28Z 2020-09-03T13:07:24Z
#> 1246 2020-06-18T08:34:47Z 2020-06-18T08:34:47Z
#> 1247 2020-06-18T08:34:46Z 2020-06-18T08:34:46Z
#> 1248 2020-06-18T08:34:45Z 2020-06-18T08:34:45Z
#> 1249 2020-06-18T08:34:43Z 2020-06-18T08:34:43Z
#> 1250 2020-06-18T08:34:42Z 2020-06-18T08:34:42Z
#> 1251 2020-06-18T08:34:40Z 2020-06-18T08:34:40Z
#> 1252 2020-06-18T08:34:39Z 2020-06-18T08:34:39Z
#> 1253 2020-06-18T08:34:38Z 2020-06-18T08:34:38Z
#> 1254 2020-06-18T08:34:37Z 2020-06-18T08:34:37Z
#> 1255 2020-06-18T08:34:36Z 2020-06-18T08:34:36Z
#> 1256 2020-06-18T08:34:34Z 2020-06-18T08:34:34Z
#> 1257 2020-06-18T08:34:33Z 2020-06-18T08:34:33Z
#> 1258 2020-06-18T08:34:31Z 2020-06-18T08:34:31Z
#> 1259 2020-06-18T08:34:30Z 2020-06-18T08:34:30Z
#> 1260 2020-06-18T08:34:29Z 2020-06-18T08:34:29Z
#> 1261 2020-06-18T08:34:27Z 2020-06-18T08:34:27Z
#> 1262 2020-06-18T08:34:26Z 2020-06-18T08:34:26Z
#> 1263 2020-06-18T08:34:24Z 2020-06-18T08:34:24Z
#> 1264 2020-06-18T08:34:23Z 2020-06-18T08:34:23Z
#> 1265 2020-06-18T08:34:22Z 2020-06-18T08:34:22Z
#> 1266 2020-06-18T08:34:20Z 2020-06-18T08:34:20Z
#> 1267 2020-06-18T08:34:19Z 2020-06-18T08:34:19Z
#> 1268 2020-06-18T08:34:18Z 2020-06-18T08:34:18Z
#> 1269 2020-06-18T08:34:16Z 2020-06-18T08:34:16Z
#> 1270 2020-06-18T08:34:15Z 2020-06-18T08:34:15Z
#> 1271 2020-06-18T08:34:14Z 2020-06-18T08:34:14Z
#> 1272 2020-06-18T08:34:13Z 2020-06-18T08:34:13Z
#> 1273 2020-06-18T08:34:12Z 2020-06-18T08:34:12Z
#> 1274 2020-06-18T08:34:09Z 2020-06-18T08:34:09Z
#> 1275 2020-06-18T08:34:08Z 2020-06-18T08:34:08Z
#> 1276 2020-06-18T08:34:07Z 2020-06-18T08:34:07Z
#> 1277 2020-06-18T08:34:05Z 2020-06-18T08:34:05Z
#> 1278 2020-06-18T08:34:04Z 2020-06-18T08:34:04Z
#> 1279 2020-06-18T08:34:03Z 2020-06-18T08:34:03Z
#> 1280 2020-06-18T08:34:02Z 2020-06-18T08:34:02Z
#> 1281 2020-06-18T08:34:00Z 2020-06-18T08:34:00Z
#> 1282 2020-06-18T08:33:59Z 2020-06-18T08:33:59Z
#> 1283 2020-06-18T08:33:58Z 2020-06-18T08:33:58Z
#> 1284 2020-06-18T08:33:57Z 2020-06-18T08:33:57Z
#> 1285 2020-06-18T08:33:56Z 2020-06-18T08:33:56Z
#> 1286 2020-06-18T08:33:54Z 2020-06-18T08:33:54Z
#> 1287 2020-06-18T08:33:53Z 2020-06-18T08:33:53Z
#> 1288 2020-06-18T08:33:52Z 2020-06-18T08:33:52Z
#> 1289 2020-06-18T08:33:51Z 2020-06-18T08:33:51Z
#> 1290 2020-06-18T08:33:50Z 2020-06-18T08:33:50Z
#> 1291 2020-06-18T08:33:48Z 2020-06-18T08:33:48Z
#> 1292 2020-06-18T08:33:47Z 2020-06-18T08:33:47Z
#> 1293 2020-06-18T08:33:46Z 2020-06-18T08:33:46Z
#> 1294 2020-06-18T08:33:45Z 2020-06-18T08:33:45Z
#> 1295 2020-06-18T08:33:43Z 2020-06-18T08:33:43Z
#> 1296 2020-06-18T08:33:42Z 2020-06-18T08:33:42Z
#> 1297 2020-06-18T08:33:41Z 2020-06-18T08:33:41Z
#> 1298 2020-06-18T08:33:39Z 2020-06-18T08:33:39Z
#> 1299 2020-06-18T08:33:38Z 2020-06-18T08:33:38Z
#> 1300 2020-06-18T08:33:36Z 2020-06-18T08:33:36Z
#> 1301 2020-06-18T08:33:35Z 2020-06-18T08:33:35Z
#> 1302 2020-06-18T08:33:34Z 2020-06-18T08:33:34Z
#> 1303 2020-06-18T08:33:32Z 2020-06-18T08:33:32Z
#> 1304 2020-06-18T08:33:31Z 2020-06-18T08:33:31Z
#> 1305 2020-06-18T08:33:30Z 2020-06-18T08:33:30Z
#> 1306 2020-06-18T08:33:28Z 2020-06-18T08:33:28Z
#> 1307 2020-06-18T08:33:26Z 2020-06-18T08:33:26Z
#> 1308 2020-06-18T08:33:25Z 2020-06-18T08:33:25Z
#> 1309 2020-06-18T08:33:24Z 2020-06-18T08:33:24Z
#> 1310 2020-06-18T08:33:21Z 2020-06-18T08:33:21Z
#> 1311 2020-06-18T08:33:20Z 2020-06-18T08:33:20Z
#> 1312 2020-06-18T08:33:19Z 2020-06-18T08:33:19Z
#> 1313 2020-06-18T08:33:17Z 2020-06-18T08:33:17Z
#> 1314 2020-06-18T08:33:16Z 2020-06-18T08:33:16Z
#> 1315 2020-06-18T08:33:14Z 2020-06-18T08:33:14Z
#> 1316 2020-06-18T08:33:13Z 2020-06-18T08:33:13Z
#> 1317 2020-06-18T08:33:11Z 2020-06-18T08:33:11Z
#> 1318 2020-06-18T08:33:10Z 2020-06-18T08:33:10Z
#> 1319 2020-06-18T08:33:08Z 2020-06-18T08:33:08Z
#> 1320 2020-06-18T08:33:06Z 2020-06-18T08:33:06Z
#> 1321 2020-06-18T08:33:02Z 2020-06-18T08:33:02Z
#> 1322 2020-06-18T08:33:01Z 2020-06-18T08:33:01Z
#> 1323 2020-06-18T08:33:00Z 2020-06-18T08:33:00Z
#> 1324 2020-06-18T08:32:58Z 2020-06-18T08:32:58Z
#> 1325 2020-06-18T08:32:57Z 2020-06-18T08:32:57Z
#> 1326 2020-06-18T08:32:56Z 2020-06-18T08:32:56Z
#> 1327 2020-06-18T08:32:54Z 2020-06-18T08:32:54Z
#> 1328 2020-06-18T08:32:52Z 2020-06-18T08:32:52Z
#> 1329 2020-06-18T08:32:50Z 2020-06-18T08:32:50Z
#> 1330 2020-06-18T08:32:49Z 2020-06-18T08:32:49Z
#> 1331 2020-06-18T08:32:48Z 2020-06-18T08:32:48Z
#> 1332 2020-06-18T08:32:47Z 2020-06-18T08:32:47Z
#> 1333 2020-06-18T08:32:46Z 2020-06-18T08:32:46Z
#> 1334 2020-06-18T08:32:45Z 2020-06-18T08:32:45Z
#> 1335 2020-06-18T08:32:43Z 2020-06-18T08:32:43Z
#> 1336 2020-06-18T08:32:42Z 2020-06-18T08:32:42Z
#> 1337 2020-06-18T08:32:41Z 2020-06-18T08:32:41Z
#> 1338 2020-06-18T08:32:39Z 2020-06-18T08:32:39Z
#> 1339 2020-06-18T08:32:38Z 2020-06-18T08:32:38Z
#> 1340 2020-06-18T08:32:37Z 2020-06-18T08:32:37Z
#> 1341 2020-06-18T08:32:36Z 2020-06-18T08:32:36Z
#> 1342 2020-06-18T08:32:34Z 2020-06-18T08:32:34Z
#> 1343 2020-06-18T08:32:33Z 2020-06-18T08:32:33Z
#> 1344 2020-06-18T08:32:32Z 2020-06-18T08:32:32Z
#> 1345 2020-06-18T08:32:31Z 2020-06-18T08:32:31Z
#> 1346 2020-06-18T08:32:29Z 2020-06-18T08:32:29Z
#> 1347 2020-06-18T08:32:28Z 2020-06-18T08:32:28Z
#> 1348 2020-06-18T08:32:26Z 2020-06-18T08:32:26Z
#> 1349 2020-06-18T08:32:25Z 2020-06-18T08:32:25Z
#> 1350 2020-06-18T08:32:22Z 2020-06-18T08:32:22Z
#> 1351 2020-06-18T08:32:21Z 2020-06-18T08:32:21Z
#> 1352 2020-06-18T08:32:18Z 2020-06-18T08:32:18Z
#> 1353 2020-06-18T08:32:17Z 2020-06-18T08:32:17Z
#> 1354 2020-06-18T08:32:16Z 2020-06-18T08:32:16Z
#> 1355 2020-06-18T08:32:13Z 2020-06-18T08:32:13Z
#> 1356 2020-06-18T08:32:12Z 2020-06-18T08:32:12Z
#> 1357 2020-06-18T08:32:11Z 2020-06-18T08:32:11Z
#> 1358 2020-06-18T08:32:09Z 2020-06-18T08:32:09Z
#> 1359 2020-06-18T08:32:08Z 2020-06-18T08:32:08Z
#> 1360 2020-06-18T08:31:52Z 2020-06-18T08:31:52Z
#> 1361 2020-06-18T08:30:36Z 2020-06-18T08:30:36Z
#> 1362 2020-06-18T08:30:34Z 2020-06-18T08:30:34Z
#> 1363 2020-06-18T08:30:24Z 2020-06-18T08:30:24Z
#> 1364 2020-06-18T08:29:55Z 2020-06-18T08:29:55Z
#> 1365 2020-06-18T08:29:54Z 2020-06-18T08:29:54Z
#> 1366 2020-06-18T08:29:52Z 2020-06-18T08:29:52Z
#> 1367 2020-06-18T08:29:39Z 2020-06-18T08:29:39Z
#> 1368 2020-06-18T08:28:47Z 2020-06-18T08:28:47Z
#> 1369 2020-06-18T08:28:03Z 2020-06-18T08:28:03Z
#> 1370 2020-06-18T08:27:17Z 2020-06-18T08:27:17Z
#> 1371 2020-03-30T14:17:58Z 2020-03-30T14:18:10Z
#> 1372 2020-02-13T11:38:32Z 2020-02-13T11:38:37Z
#> 1373 2020-01-28T12:26:02Z 2020-01-28T12:26:09Z
#> 1374 2020-01-28T12:25:26Z 2020-01-28T12:25:32Z
#> 1375 2020-01-13T14:11:42Z 2020-01-13T14:12:07Z
#> 1376 2020-01-13T14:10:43Z 2020-01-13T14:10:49Z
#> 1377 2020-01-13T14:08:40Z 2020-01-13T14:09:06Z
#> 1378 2020-01-13T14:06:13Z 2020-01-13T14:06:43Z
#> 1379 2020-01-09T11:12:37Z 2020-01-09T11:12:43Z
#> 1380 2019-11-26T17:57:52Z 2019-11-26T17:57:59Z
#> 1381 2019-11-25T17:07:03Z 2019-11-25T17:07:14Z
#> 1382 2019-10-15T15:03:33Z 2019-10-15T15:03:52Z
#> 1383 2019-10-14T09:47:58Z 2019-10-14T09:48:08Z
#> 1384 2019-10-14T09:46:59Z 2019-10-14T09:47:23Z
#> 1385 2019-10-14T09:38:04Z 2019-10-14T09:38:48Z
#> 1386 2019-10-11T10:53:12Z 2019-10-11T10:53:39Z
#> 1387 2019-10-10T09:59:45Z 2019-10-10T10:00:01Z
#> 1388 2019-10-10T09:56:11Z 2019-10-10T09:59:46Z
#> 1389 2019-10-10T09:45:49Z 2019-10-10T09:55:51Z
#> 1390 2019-10-10T09:45:26Z 2019-10-10T09:55:50Z
#> 1391 2019-10-09T15:01:31Z 2019-10-09T15:01:54Z
#> 1392 2019-10-09T14:59:37Z 2019-10-09T14:59:45Z
#> 1393 2019-10-09T14:54:50Z 2019-10-09T14:55:27Z
#> 1394 2019-10-09T14:55:13Z 2019-10-09T14:55:25Z
#> 1395 2019-10-09T14:53:24Z 2019-10-09T14:53:37Z
#> 1396 2019-10-09T14:51:12Z 2019-10-09T14:52:17Z
#> 1397 2019-10-09T14:50:47Z 2019-10-09T14:51:07Z
#> 1398 2019-10-09T14:50:20Z 2019-10-09T14:50:32Z
#> 1399 2019-10-09T14:45:45Z 2019-10-09T14:49:51Z
#> 1400 2019-10-09T14:41:10Z 2019-10-09T14:41:32Z
#> 1401 2019-10-09T14:40:45Z 2019-10-09T14:41:02Z
#> 1402 2019-10-09T14:38:42Z 2019-10-09T14:39:27Z
#> 1403 2019-10-09T14:38:19Z 2019-10-09T14:39:25Z
#> 1404 2019-10-09T14:39:12Z 2019-10-09T14:39:22Z
#> 1405 2019-10-09T14:36:22Z 2019-10-09T14:37:34Z
#> 1406 2019-10-07T17:24:07Z 2019-10-07T17:24:13Z
#> 1407 2019-10-07T17:19:47Z 2019-10-07T17:19:55Z
#> 1408 2019-09-23T11:30:00Z 2019-09-23T11:32:06Z
#> 1409 2019-09-23T11:22:00Z 2019-09-23T11:22:16Z
#> 1410 2019-09-23T11:05:15Z 2019-09-23T11:07:33Z
#> 1411 2019-09-23T11:02:27Z 2019-09-23T11:04:09Z
#> 1412 2019-09-16T17:42:45Z 2019-09-16T17:42:58Z
#> 1413 2019-09-16T17:41:32Z 2019-09-16T17:41:52Z
#> 1414 2019-09-16T17:40:00Z 2019-09-16T17:40:12Z
#> 1415 2019-09-16T17:25:57Z 2019-09-16T17:26:24Z
#> 1416 2019-09-16T17:24:33Z 2019-09-16T17:24:50Z
#> 1417 2019-09-15T03:50:13Z 2019-09-15T03:50:24Z
#> 1418 2019-09-15T03:47:39Z 2019-09-15T03:47:59Z
#> 1419 2019-09-12T17:22:41Z 2019-09-12T17:23:20Z
#> 1420 2019-09-12T17:22:18Z 2019-09-12T17:22:27Z
#> 1421 2019-09-12T17:05:31Z 2019-09-12T17:05:51Z
#> 1422 2019-08-22T09:35:02Z 2019-08-22T09:35:11Z
#> 1423 2019-08-21T14:34:13Z 2019-08-21T14:34:44Z
#> 1424 2019-08-21T14:33:16Z 2019-08-21T14:33:53Z
#> 1425 2019-08-20T14:32:24Z 2019-08-20T14:32:32Z
#> 1426 2019-08-19T17:04:09Z 2019-08-19T17:04:37Z
#> 1427 2019-08-19T10:57:59Z 2019-08-19T10:58:07Z
#> 1428 2019-08-19T10:56:58Z 2019-08-19T10:57:05Z
#> 1429 2019-08-14T10:08:04Z 2019-08-14T10:08:25Z
#> 1430                 <NA> 2019-08-13T16:44:03Z
#> 1431                 <NA> 2019-08-13T16:43:52Z
#> 1432 2019-08-01T11:21:44Z 2019-08-13T16:43:35Z
#> 1433 2019-08-01T11:21:00Z 2019-08-13T16:43:27Z
#> 1434 2019-08-01T11:19:02Z 2019-08-13T16:43:16Z
#> 1435                 <NA> 2019-08-13T16:43:13Z
#> 1436 2019-08-01T11:16:13Z 2019-08-13T16:43:02Z
#> 1437                 <NA> 2019-08-13T16:42:59Z
#> 1438 2019-08-01T11:02:08Z 2019-08-13T16:41:55Z
#> 1439                 <NA> 2019-08-13T16:41:43Z
#> 1440 2019-08-13T14:54:48Z 2019-08-13T14:54:54Z
#> 1441 2019-08-13T14:48:11Z 2019-08-13T14:48:21Z
#> 1442 2019-08-13T12:48:45Z 2019-08-13T12:49:35Z
#> 1443 2019-06-28T15:15:53Z 2019-08-06T15:31:56Z
#> 1444 2019-08-02T14:23:51Z 2019-08-02T14:23:51Z
#> 1445 2019-07-29T19:07:24Z 2019-07-29T19:07:24Z
#> 1446                 <NA> 2019-07-29T18:56:52Z
#> 1447                 <NA> 2019-07-29T18:35:55Z
#> 1448                 <NA> 2019-07-29T18:25:49Z
#> 1449 2019-07-29T18:09:20Z 2019-07-29T18:09:20Z
#> 1450 2019-07-29T18:06:54Z 2019-07-29T18:06:54Z
#> 1451 2019-07-02T15:31:35Z 2019-07-02T15:31:35Z
#> 1452 2019-07-02T15:30:27Z 2019-07-02T15:30:27Z
#> 1453 2019-07-02T15:28:45Z 2019-07-02T15:28:45Z
#> 1454 2019-07-02T15:27:25Z 2019-07-02T15:27:25Z
#> 1455 2019-06-28T17:08:40Z 2019-06-28T17:08:40Z
#> 1456 2019-06-28T17:06:34Z 2019-06-28T17:06:34Z
#> 1457 2019-06-28T16:59:28Z 2019-06-28T16:59:28Z
#> 1458 2019-06-28T15:41:34Z 2019-06-28T15:41:34Z
#> 1459 2019-06-28T15:36:38Z 2019-06-28T15:36:38Z
#> 1460 2019-06-28T15:35:05Z 2019-06-28T15:35:05Z
#> 1461 2019-06-28T15:33:26Z 2019-06-28T15:33:26Z
#> 1462 2019-06-28T15:27:10Z 2019-06-28T15:27:10Z
#> 1463 2019-06-28T15:25:32Z 2019-06-28T15:25:32Z
#> 1464 2019-06-28T15:21:32Z 2019-06-28T15:21:32Z
#> 1465 2019-06-28T15:01:49Z 2019-06-28T15:01:49Z
#> 1466 2019-06-28T14:57:18Z 2019-06-28T14:57:18Z
#> 1467 2019-06-26T12:50:10Z 2019-06-26T12:50:10Z
#> 1468 2019-05-28T17:48:14Z 2019-05-28T17:48:14Z
#> 1469 2019-05-28T17:43:10Z 2019-05-28T17:43:10Z
#> 1470 2019-05-28T17:41:32Z 2019-05-28T17:41:32Z
#> 1471 2019-05-28T17:39:25Z 2019-05-28T17:39:25Z
#> 1472 2019-05-28T17:38:40Z 2019-05-28T17:38:40Z
#> 1473 2019-05-28T17:37:26Z 2019-05-28T17:37:26Z
#> 1474 2019-05-28T17:33:22Z 2019-05-28T17:33:22Z
#> 1475 2019-05-28T17:32:22Z 2019-05-28T17:32:22Z
#> 1476 2019-05-28T17:30:30Z 2019-05-28T17:30:30Z
#> 1477 2019-05-28T17:29:49Z 2019-05-28T17:29:49Z
#> 1478 2019-05-28T11:54:05Z 2019-05-28T11:54:05Z
#> 1479 2019-05-28T11:44:19Z 2019-05-28T11:44:19Z
#> 1480 2019-05-28T11:14:20Z 2019-05-28T11:14:20Z
#> 1481 2019-05-28T11:03:17Z 2019-05-28T11:03:17Z
#> 1482 2019-05-28T10:50:37Z 2019-05-28T10:50:37Z
#> 1483 2019-05-27T17:26:34Z 2019-05-27T17:26:34Z
#> 1484 2019-05-27T15:41:40Z 2019-05-27T15:41:40Z
#> 1485 2019-05-27T15:03:58Z 2019-05-27T15:03:58Z
#> 1486 2019-05-27T14:59:12Z 2019-05-27T14:59:12Z
#> 1487 2019-05-23T11:55:39Z 2019-05-23T11:55:39Z
#> 1488 2019-05-21T11:57:46Z 2019-05-21T11:57:46Z
#> 1489 2019-05-20T17:18:33Z 2019-05-20T17:18:33Z
#> 1490 2019-05-20T17:16:17Z 2019-05-20T17:16:17Z
#> 1491 2019-05-20T15:49:46Z 2019-05-20T15:49:46Z
#> 1492 2019-05-20T12:14:38Z 2019-05-20T12:14:38Z
#> 1493 2019-05-17T16:42:26Z 2019-05-17T16:42:26Z
#> 1494 2019-05-17T15:13:06Z 2019-05-17T15:13:06Z
#> 1495 2019-05-17T15:04:21Z 2019-05-17T15:04:21Z
#> 1496 2019-05-17T14:11:52Z 2019-05-17T14:11:52Z
#> 1497 2019-05-16T10:56:56Z 2019-05-16T10:56:56Z
#> 1498 2019-05-16T10:54:33Z 2019-05-16T10:54:33Z
#> 1499 2019-05-16T10:51:26Z 2019-05-16T10:51:26Z
#> 1500 2019-05-16T10:45:25Z 2019-05-16T10:45:25Z
#> 1501 2019-05-16T10:42:57Z 2019-05-16T10:42:57Z
#> 1502 2019-05-16T10:41:00Z 2019-05-16T10:41:00Z
#> 1503 2019-05-16T10:38:42Z 2019-05-16T10:38:42Z
#> 1504 2019-05-16T09:57:54Z 2019-05-16T09:57:54Z
#> 1505 2019-05-16T09:50:25Z 2019-05-16T09:50:25Z
#> 1506 2019-05-16T09:47:31Z 2019-05-16T09:47:31Z
#> 1507 2019-05-16T09:45:06Z 2019-05-16T09:45:06Z
#> 1508 2019-05-16T09:42:51Z 2019-05-16T09:42:51Z
#> 1509 2019-05-16T09:40:59Z 2019-05-16T09:40:59Z
#> 1510 2019-05-15T16:36:06Z 2019-05-15T16:36:06Z
#> 1511 2019-05-14T14:55:08Z 2019-05-14T14:55:08Z
#> 1512 2019-05-14T14:37:40Z 2019-05-14T14:37:40Z
#> 1513 2019-05-14T11:42:09Z 2019-05-14T11:42:09Z
#> 1514 2019-05-10T14:54:41Z 2019-05-10T14:54:41Z
#> 1515 2019-02-12T12:25:20Z 2019-02-18T15:43:13Z
#> 1516 2019-02-13T17:48:40Z 2019-02-13T17:48:40Z
#> 1517 2019-02-13T14:49:31Z 2019-02-13T14:49:31Z
#> 1518 2019-02-13T11:40:26Z 2019-02-13T11:40:26Z
#> 1519 2019-02-12T11:04:12Z 2019-02-12T11:04:12Z
#> 1520 2018-12-24T13:12:33Z 2018-12-24T13:12:33Z
#> 1521 2018-12-21T17:51:54Z 2018-12-21T17:51:54Z
#> 1522 2018-12-21T15:50:39Z 2018-12-21T15:50:39Z
#> 1523 2018-12-21T12:18:13Z 2018-12-21T12:18:13Z
#> 1524 2018-12-19T14:22:20Z 2018-12-19T14:22:20Z
#> 1525 2018-10-03T17:57:35Z 2018-11-30T05:44:15Z
#> 1526 2018-10-03T17:33:21Z 2018-11-30T05:43:48Z
#> 1527                 <NA> 2018-11-30T05:41:30Z
#> 1528                 <NA> 2018-11-30T05:02:44Z
#> 1529 2017-06-06T16:48:00Z 2018-11-30T04:43:38Z
#> 1530 2017-08-25T13:10:02Z 2018-11-30T04:40:01Z
#> 1531 2017-08-23T09:11:41Z 2018-11-30T04:30:36Z
#> 1532 2017-08-22T11:45:57Z 2018-11-30T04:30:24Z
#> 1533 2017-07-13T09:26:23Z 2018-11-30T04:25:18Z
#> 1534 2017-06-09T11:42:50Z 2018-11-30T04:24:20Z
#> 1535 2017-06-09T11:42:37Z 2018-11-30T04:24:02Z
#> 1536 2017-06-09T11:42:44Z 2018-11-30T04:23:13Z
#> 1537 2017-08-22T16:05:24Z 2018-11-30T02:39:30Z
#> 1538 2017-07-13T14:52:29Z 2018-11-30T02:37:58Z
#> 1539 2017-06-09T17:12:43Z 2018-11-30T02:37:03Z
#> 1540 2017-08-18T12:35:40Z 2018-11-30T02:17:51Z
#> 1541 2017-07-13T09:21:34Z 2018-11-30T02:17:14Z
#> 1542 2018-08-13T14:45:03Z 2018-11-30T01:22:07Z
#> 1543 2017-08-28T10:05:45Z 2018-11-30T01:10:46Z
#> 1544 2017-08-23T12:19:24Z 2018-11-30T01:08:56Z
#> 1545 2017-07-13T15:11:56Z 2018-11-30T01:07:58Z
#> 1546 2017-07-06T13:47:16Z 2018-11-30T01:07:55Z
#> 1547 2017-06-09T11:29:07Z 2018-11-30T01:06:36Z
#> 1548 2017-08-28T04:52:59Z 2018-11-30T00:54:09Z
#> 1549 2017-08-21T12:50:19Z 2018-11-30T00:51:12Z
#> 1550 2017-06-09T05:35:10Z 2018-11-30T00:47:50Z
#> 1551 2018-11-20T11:44:40Z 2018-11-30T00:10:27Z
#> 1552 2018-11-20T12:06:23Z 2018-11-30T00:10:24Z
#> 1553 2018-10-03T17:57:35Z 2018-11-30T00:09:41Z
#> 1554 2018-10-03T17:33:21Z 2018-11-30T00:07:36Z
#> 1555                 <NA> 2018-11-30T00:05:18Z
#> 1556                 <NA> 2018-11-30T00:05:03Z
#> 1557 2017-08-28T10:56:09Z 2018-11-29T23:51:36Z
#> 1558 2017-07-04T14:07:12Z 2018-11-29T23:48:02Z
#> 1559 2017-07-13T09:25:08Z 2018-11-29T23:28:44Z
#> 1560 2017-07-04T08:35:18Z 2018-11-29T23:28:04Z
#> 1561 2017-06-09T11:42:43Z 2018-11-29T23:27:43Z
#> 1562 2017-05-25T10:54:22Z 2018-11-29T23:22:28Z
#> 1563 2018-10-03T17:57:40Z 2018-10-17T14:59:08Z
#> 1564 2018-10-03T17:33:21Z 2018-10-17T14:58:52Z
#> 1565                 <NA> 2018-10-12T13:25:51Z
#> 1566                 <NA> 2018-10-12T13:25:45Z
#> 1567                 <NA> 2018-08-28T11:55:19Z
#> 1568 2018-08-01T16:27:43Z 2018-08-13T02:02:30Z
#> 1569 2017-06-09T17:12:43Z 2018-06-15T14:58:02Z