Spaces:
Build error
Build error
added sth
Browse files- README.md +6 -5
- app.py +48 -0
- nepal_citizenship.txt +974 -0
- requirements.txt +2 -0
README.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: streamlit
|
| 7 |
-
sdk_version: 1.
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Shree5GPT
|
| 3 |
+
emoji: 🌖
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: yellow
|
| 6 |
sdk: streamlit
|
| 7 |
+
sdk_version: 1.25.0
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
+
license: afl-3.0
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import torch
|
| 3 |
+
from transformers import DistilBertTokenizer, DistilBertForQuestionAnswering
|
| 4 |
+
|
| 5 |
+
def find_answer(question, context, model, tokenizer):
|
| 6 |
+
# Tokenize the input question and context
|
| 7 |
+
inputs = tokenizer.encode_plus(question, context, add_special_tokens=True, return_tensors="pt")
|
| 8 |
+
input_ids = inputs["input_ids"].tolist()[0]
|
| 9 |
+
|
| 10 |
+
# Get the logits for the start and end positions
|
| 11 |
+
with torch.no_grad():
|
| 12 |
+
output = model(**inputs)
|
| 13 |
+
|
| 14 |
+
start_logits = output['start_logits']
|
| 15 |
+
end_logits = output['end_logits']
|
| 16 |
+
|
| 17 |
+
# Find the start and end positions with the highest probabilities
|
| 18 |
+
start_idx = torch.argmax(start_logits)
|
| 19 |
+
end_idx = torch.argmax(end_logits)
|
| 20 |
+
|
| 21 |
+
# Get the answer from the original context using the tokens between start and end positions
|
| 22 |
+
answer = tokenizer.decode(input_ids[start_idx:end_idx+1], skip_special_tokens=True)
|
| 23 |
+
return answer
|
| 24 |
+
|
| 25 |
+
def main():
|
| 26 |
+
st.title("Shree5 GPT: By Tech Ninja Group")
|
| 27 |
+
|
| 28 |
+
text = st.text_area('Enter your citizenship-related question:', max_chars=512)
|
| 29 |
+
|
| 30 |
+
# Load the DistilBERT model and tokenizer
|
| 31 |
+
model_name = "distilbert-base-uncased"
|
| 32 |
+
tokenizer = DistilBertTokenizer.from_pretrained(model_name)
|
| 33 |
+
model = DistilBertForQuestionAnswering.from_pretrained(model_name)
|
| 34 |
+
|
| 35 |
+
# Read the context from the text file
|
| 36 |
+
with open("nepal_citizenship.txt", "r", encoding="utf-8") as file:
|
| 37 |
+
context = file.read()
|
| 38 |
+
|
| 39 |
+
if text:
|
| 40 |
+
answer = find_answer(text, context, model, tokenizer)
|
| 41 |
+
|
| 42 |
+
if answer:
|
| 43 |
+
st.markdown(f"**Answer:** {answer}")
|
| 44 |
+
else:
|
| 45 |
+
st.markdown("No answer found in the provided context for the given question.")
|
| 46 |
+
|
| 47 |
+
if __name__ == "__main__":
|
| 48 |
+
main()
|
nepal_citizenship.txt
ADDED
|
@@ -0,0 +1,974 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
|
| 3 |
+
Nepal Citizenship Rules, 2063 (2006)
|
| 4 |
+
|
| 5 |
+
Date of Publication in Nepal Gazette 2063.8.29 (15 Dec. 2006)
|
| 6 |
+
Amendment
|
| 7 |
+
|
| 8 |
+
Nepal Citizenship (First Amendment) Rules, 2063 2063.10.15 (29 Jan. 2007)
|
| 9 |
+
|
| 10 |
+
In exercise of the powers conferred by Section 23 of the Nepal Citizenship Act, 2006, Government of Nepal has framed the following Rules:
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
1. Short title and commencement: (1) These rules may be called the "Nepal Citizenship Rules, 2063 (2006)."
|
| 14 |
+
(2) These Rules shall commence immediately.
|
| 15 |
+
|
| 16 |
+
2. Definitions: Unless the subject or the context otherwise requires, in this Rules ,-
|
| 17 |
+
(a) "Act" means the Nepal Citizenship Act, 2063 (2006).
|
| 18 |
+
|
| 19 |
+
(b) "Ministry" means Ministry of Home Affairs, Government of Nepal.
|
| 20 |
+
|
| 21 |
+
(c) "Local Body" means the Village Development Committee or Municipality formed pursuant to the laws in force; and this term also includes the Sub-municipal Corporation and Municipal Corporation.
|
| 22 |
+
3. Procedures for obtaining certificate of citizenship of Nepal by descent:
|
| 23 |
+
(1) A citizen of Nepal, who has completed the age of Sixteen years and intends to obtain the certificate of citizenship of Nepal by descent, has to make an application, in the format referred to in Schedule-1, and accompanied by the following documents, to the concerned Chief District Officer:
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
(a) The certificate of citizenship of Nepal of his or her father or mother or relative within three generations of his or her lineage,
|
| 27 |
+
(b) A recommendation made by the concerned Local Body setting out his or her birth place and relationship or a certificate of birth registration,
|
| 28 |
+
(c) In the case where the certificate of citizenship of a relative within three generations of his or her lineage has been submitted pursuant to Clause (a), a relationship certificate setting out the relationship with that relative.
|
| 29 |
+
(2) The certificate of citizenship of Nepal may, based on the following documents, be provided to a citizen of Nepal who fails to submit the evidence referred to in Sub-rule (1) along with the application:
|
| 30 |
+
(a) An on the spot deed of public inquiry, in the format referred to in Schedule-3, executed by local inhabitants, who have obtained the certificate of citizenship of Nepal,
|
| 31 |
+
, in presence of a representative of the Local Body, setting out that the applicant is a citizen of Nepal by descent by virtue of that his father or mother is a citizen of Nepal and that he or she was born in Nepal and has been residing permanently within the territory of Nepal continuingly,
|
| 32 |
+
(b) Identification, in the format referred to in Schedule-4, made on the spot by three citizens of Nepal, who reside in the concerned Ward and have obtained the certificate of citizenship of Nepal.
|
| 33 |
+
Provided that, if the authority making recommendation for citizenship or providing citizenship
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
considers that the identifying persons have made identification doubtfully, such an authority may make further inquiry into the matter.
|
| 37 |
+
(3) If a person who was found within the territory of Nepal and has completed the age of Sixteen years but the whereabouts of his or her father or mother are not known intends to obtain the certificate of citizenship of Nepal, such a person has to make an application, in the format referred to in Schedule-1, accompanied by the following documents, to the concerned Chief District Officer:
|
| 38 |
+
(a) Where such a person has been brought up by a children home or orphan children protection organization or association or orphanage which has obtained approval from the Government of Nepal, the recommendation of such a home, organization, association or orphanage,
|
| 39 |
+
(b) Where any person has obtained guardianship of and maintained and subsisted that person in accordance with the laws in force, a copy of the certificate of citizenship of such a person,
|
| 40 |
+
(c) Identification made by the chief of organization maintaining and subsisting that person in the organization referred to in Clause (a) or by the person maintaining and subsisting that person pursuant to Clause (b).
|
| 41 |
+
(4) If it is required to further inquire into the matter in relation to the fatherhood or motherhood of the applicant pursuant to Sub-rule (3), a recommendation of the Local Body or police report may be required, as per necessity.
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
(5) If, in examining the application received pursuant to Sub-rule(1) or (3), the applicant is found to be eligible to obtain the certificate of citizenship of Nepal by descent, the certificate of citizenship of Nepal by descent may be issued to him or her.
|
| 45 |
+
(6) The column of the certificate of citizenship of the person, whose fatherhood or motherhood has not been settled, where the name of father or mother is to be specified shall indicate the matter that the fatherhood or motherhood has not been traced out and specify the name, surname and address of the guardian.
|
| 46 |
+
(7) The certificate of citizenship may be issued also based on the registration records prepared by and provisional slips distributed by the citizenship teams deputed from time to time prior to the commencement of this Rule.
|
| 47 |
+
(8) The list of persons who make application for the certificate of citizenship of Nepal pursuant to Sub-rule (2) has to be made public on the same day.
|
| 48 |
+
4. Procedures for obtaining the certificate of citizenship of Nepal by birth:
|
| 49 |
+
(1) If a citizen of Nepal who has completed the age of Sixteen years intends to obtain the certificate of citizenship of Nepal by birth pursuant to Sub- section (1) of Section 4 of the Act, such a citizen shall have to make an application, accompanied by the following documents, to the concerned Chief District Officer, in the format referred to in Schedule-1:
|
| 50 |
+
(a) A recommendation made by the concerned Local Body setting out the matter that the applicant was born within Nepal and has been permanently residing in Nepal continuingly,
|
| 51 |
+
(b) Land ownership registration certificate or tenancy right certificate or household certificate in his or her name or
|
| 52 |
+
|
| 53 |
+
|
| 54 |
+
in the name of his or her family or an evidence indicating the inclusion of his or her name or his or her father�s or mother�s name in the electoral rolls prepared by the Election Commission.
|
| 55 |
+
Explanation: For the purposes of this Clause, "family" includes father, mother, step mother, son, unmarried daughter and also daughter-in-law whether living in an undivided family or living separately.
|
| 56 |
+
(2) A person who intends to obtain the certificate of citizenship pursuant to Sub-rule (1) shall have to make an application to the Chief District Officer prior to the election of the Constituent Assembly.
|
| 57 |
+
(3) The certificate of citizenship of Nepal may, pursuant to Sub- section (4) of Section 8 of the Act, and based on the following documents, be provided to a citizen of Nepal who fails to submit the evidence referred to in Sub-rule (1) along with the application:
|
| 58 |
+
(a) An on the spot deed of public inquiry, in the format referred to in Schedule-5, executed by local inhabitants, who have obtained the certificate of citizenship of Nepal, in presence of a representative of the Local Body, setting out that the applicant was born in Nepal and has been residing permanently within the territory of Nepal continuingly,
|
| 59 |
+
(b) Identification, in the format referred to in Schedule-4, made on the spot by three citizens of Nepal, who reside in the concerned Ward and have obtained the certificate of citizenship of Nepal.
|
| 60 |
+
Provided that, if the authority making recommendation for citizenship or providing citizenship
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
considers that the identifying persons have made identification doubtfully, such an authority may make further inquiry into the matter.
|
| 64 |
+
(4) The Chief District Officer shall have to make decision on the applications received within the period referred to in Sub-section (3) of Section 4 of the Act within One month from the date of registration of such applications.
|
| 65 |
+
(5) If, in examining the application received pursuant to Sub-rule (1) or (3), the applicant is found to be eligible to obtain the certificate of citizenship of Nepal by birth, the certificate of citizenship of Nepal by birth may be issued to him or her
|
| 66 |
+
(6) The list of persons who make application for the certificate of citizenship of Nepal pursuant to Sub-rule (3) has to be made public on the same day.
|
| 67 |
+
5. Procedures for obtaining certificate of naturalized citizenship of Nepal on the basis of matrimonial relationship: (1) If a foreign woman who has matrimonial relationship with a citizen of Nepal intends to obtain the citizenship of Nepal, she has to make an application, accompanied by the following documents, to the concerned Chief District Officer, in the format referred to in Schedule-7:
|
| 68 |
+
(a) A recommendation made by the concerned Local Body specifying the matrimonial relationship with the citizen of Nepal,
|
| 69 |
+
(b) A proof showing that action has been instituted by her to renounce the foreign citizenship.
|
| 70 |
+
(2) If, in examining the application received pursuant to Sub-rule (1), the applicant is found to be eligible to obtain the certificate of naturalized
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
citizenship of Nepal, the certificate of naturalized citizenship of Nepal may be issued to her.
|
| 74 |
+
6. Information to be given to applicant: If, in examining application received pursuant to Rule 3 or 4, any applicant is found ineligible to obtain the certificate of citizenship of Nepal, a decision has to be made to that effect and information given to the applicant within seven days.
|
| 75 |
+
7. Other procedures for obtaining certificate of naturalized citizenship of Nepal: (1) In the case of an offspring born to a woman citizen of Nepal who has got married to a foreign citizen, an application, accompanied by the following documents, has to be made to the Chief District Officer, in the format referred to in Schedule-7:
|
| 76 |
+
(a) A copy of the certificate of citizenship of Nepal of the mother,
|
| 77 |
+
(b) A recommendation made by the concerned Local Body setting out that he or she was born in Nepal and has been permanently residing in Nepal,
|
| 78 |
+
(c) A proof that he or she has not obtained the citizenship of a foreign country on the basis of his or her father's citizenship.
|
| 79 |
+
(2) If any foreign citizen who has fulfilled the terms and conditions set forth in Sub-section (4) of Section 5 of the Act intends to acquire the citizenship of Nepal, he or she has to make an application, accompanied by the recommendation of the Local Body related with his or her abode, to the concerned Chief District Officer, in the format referred to in Schedule-7.
|
| 80 |
+
(3) On receipt of an application pursuant to Sub-rule (1) or (2), the Chief District Officer may, if he or she considers necessary, inquire the Mayor of the concerned Municipality or Chairperson of the Village
|
| 81 |
+
|
| 82 |
+
|
| 83 |
+
Development Committee into the matter and, if the applicant is found to have fulfilled the terms and conditions set forth in Sub-section (4) of Section 5 of the Act, forward the application, along with his or her opinion, to the Ministry.
|
| 84 |
+
(4) Upon making examination of the application received pursuant to Sub-rule (3), the Ministry may provide the certificate of naturalized citizenship of Nepal in the format referred to in Schedule-8.
|
| 85 |
+
(5) If, out of the offspring of the person who has acquired the naturalized citizenship of Nepal pursuant to Sub-section (5) of Section 5 of the Act, any offspring who was born prior to the acquisition of such citizenship by that person intends to acquire the naturalized citizenship of Nepal, he or she may make an application to the concerned Chief District Officer in the format referred to in Schedule-7. The application has to be accompanied by a relationship certification letter, a copy of the father's or mother's certificate of citizenship and a recommendation made by the Local Body that he or she has been residing in Nepal.
|
| 86 |
+
(6) If, in examining any application received pursuant to Sub-rule (5), the applicant is found to be eligible to obtain the certificate of naturalized citizenship, the certificate of naturalized citizenship may be issued to him or her.
|
| 87 |
+
8. Authority to issue certificate of citizenship: (1) The Chief District Officer shall have the power to issue the certificate of citizenship of Nepal by descent, by birth, by the reason of matrimonial naturalized and certificate of naturalized citizenship of Nepal to those offspring of a person having obtained naturalized citizenship of Nepal who were born prior to the obtaining of such citizenship by that person.
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
?(2) The Chief District Officer may delegate the powers conferred to him or her under Sub-rule (1) to his or her subordinate officer employee or to the chief of a team deputed by the Government of Nepal to distribute citizenship, from time to time.
|
| 91 |
+
?(3) ..................
|
| 92 |
+
|
| 93 |
+
(4) The Ministry shall have the power to issue the certificate of naturalized citizenship of Nepal other than that set forth in Sub-rule (1).
|
| 94 |
+
(5) The Council of Ministers, Government of Nepal, shall have the power to grant the honorary citizenship of Nepal to be granted pursuant to Section 6 of the Act.
|
| 95 |
+
(6) After a decision has been made to grant citizenship pursuant to Sub-rule (5), the Ministry shall issue the certificate of honorary citizenship of Nepal.
|
| 96 |
+
(7) The authority issuing the certificate of citizenship pursuant to these Rules shall issue the certificate of citizenship of Nepal by descent or by birth in the format referred to in Schedule-2 and the certificate of naturalized citizenship of Nepal in the format referred to in Schedule-8.
|
| 97 |
+
9. Procedures for renouncing citizenship of Nepal: (1) If any citizen of Nepal intends to renounce the citizenship of Nepal, he or she shall have to give information thereof, accompanied by the original copy of the certificate of citizenship of Nepal, in the format referred to in Schedule-9, to the concerned Chief District Officer if he or she is domiciled within Nepal and to the concerned Nepalese ambassador or the chief of Nepalese mission or the consul general or the consul if he or she is domiciled in a foreign country.
|
| 98 |
+
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
? Amended by the First Amendment.
|
| 102 |
+
? Deleted by the First Amendment.
|
| 103 |
+
|
| 104 |
+
|
| 105 |
+
(2) Where information has been given abroad pursuant to Sub-rule (1), the Nepalese ambassador or the chief of Nepalese mission or the consul general or the consul shall forward the full details thereof to the Ministry through the Ministry of Foreign Affairs within seven days.
|
| 106 |
+
(3) The Ministry shall forward the information received pursuant to Sub-rule (2) to the concerned Chief District Officer.
|
| 107 |
+
(4) On receipt of the information pursuant to Sub-rule (1), the Chief District Officer shall register such information in the register maintained in the format referred to in Schedule-10; and the citizenship of Nepal of such person shall cease to exist from the date of such registration.
|
| 108 |
+
10. Decision making authority: If there arises a question of whether a citizen of Nepal has acquired the citizenship of a foreign country pursuant to Sub- section (5) of Section 10 of the Act, the Ministry shall decide that question.
|
| 109 |
+
11. Procedures for resumption of citizenship of Nepal: (1) If any person who has renounced the citizenship of Nepal pursuant to Section 11 of the Act and gone abroad intends to acquire the citizenship of Nepal again, such a person shall have to make an application, in the format referred to in Schedule-11, accompanied by a proof showing the renunciation of foreign citizenship, to the Ministry or the concerned Chief District Officer that has previously issued the certificate of citizenship to that person.
|
| 110 |
+
(2) On receipt of an application with information referred to in Sub- rule (1), the authority referred to in Rule 8 shall give information of the registration of that information in the format referred to in Schedule-12 and issue the certificate of citizenship of Nepal containing the same details as mentioned in the previous certificate of citizenship.
|
| 111 |
+
12. Procedures for revocation of certificate of citizenship: If it is proved that any person has obtained the certificate of citizenship of Nepal by giving
|
| 112 |
+
|
| 113 |
+
|
| 114 |
+
false details pursuant to Section 12 of the Act, the following authority shall revoke such a certificate of citizenship of Nepal:
|
| 115 |
+
(a) The Ministry, if the certificate was issued by it,
|
| 116 |
+
|
| 117 |
+
(b) The concerned Chief District Office, if the certificate was issued by the District Administration Office or other body,
|
| 118 |
+
(c) Information along with the details of the certificate of citizenship of Nepal revoked by the Chief District Officer pursuant to Clause (b) shall be forwarded to the Regional Administration Office and the Ministry.
|
| 119 |
+
13. Records of certificate of citizenship to be maintained: The records of the certificate of citizenship as referred to in Section 15 of the Act shall be maintained as follows:
|
| 120 |
+
(a) Details relating to citizenship shall be recorded and maintained systematically, and such details may also be maintained in electronic means.
|
| 121 |
+
(b) The District Administration Offices shall have to forward monthly details of the distribution of the certificates of citizenship to the Regional administration Office and the Ministry.
|
| 122 |
+
14. Procedures for correction of details: (1) A person who intends to get corrected any matter contained in the certificate of citizenship of Nepal pursuant to Sub-sections (1) and (3) of Section 17 of the Act has to make an application to the Ministry or the Chief District Officer.
|
| 123 |
+
(2) If an application is made pursuant to Sub-rule (1), the Ministry or the Chief District Officer may, upon making necessary inquiry into the matter, take back the certificate of citizenship previously issued and provide another certificate of citizenship, as amended, pursuant to Sub-section (2) of Section 17 of the Act.
|
| 124 |
+
|
| 125 |
+
|
| 126 |
+
15. Power to depute citizenship teams: (1) The Government of Nepal may depute teams for the distribution of the certificates of citizenship pursuant to Sub-section (1) of Section 22 of the Act.
|
| 127 |
+
(2) In deputing a team pursuant to Sub-rule (1), the team shall be deputed in such a way that its chief is at least gazetted third class employee and it consists of other employees of the civil service itself.
|
| 128 |
+
(3) A team deputed pursuant to Sub-rule (1) shall distribute the certificates of citizenship of Nepal, subject to the direction given by the Government of Nepal pursuant to Sub-section (2) of Section 22 of the Act.
|
| 129 |
+
(4) A person who is not satisfied with the decision made by the team deputed pursuant to Sub-rule (1) not to issue the certificate of citizenship of Nepal may make an application to the concerned Chief District Officer within thirty days. The decision made by the Chief District Officer in this respect shall be final.
|
| 130 |
+
(5) The certificate of citizenship distribution team shall collect and maintain records of the minors who have not obtained the certificate of citizenship and the persons who have become major and are eligible to acquire citizenship but who could not obtain the certificate of citizen while the team was in mission.
|
| 131 |
+
16. Procedures for obtaining certificate of citizenship by the family member of employee: (1) If the family of any employee intends to obtain the certificate of citizenship of Nepal from the District Administration Office in the district where such employee is in service, he or she has to make an application, in the format referred to in Schedule-1, accompanied by the following documents, to the Chief District Officer:
|
| 132 |
+
(a) The certificate of citizenship of Nepal of his or her father or mother,
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
(b) A recommendation by the office where the employee is in service,
|
| 136 |
+
(c) In the case of a married woman, the certificate of citizenship of her husband and the marriage registration evidence.
|
| 137 |
+
(2) The office issuing the citizenship shall issue the certificate of citizenship based on the documents received pursuant to Sub-rule (1), maintain the records of the certificate of citizenship so granted in that office and also give information thereof to the District Administration Office of the district where the concerned employee has permanent address.
|
| 138 |
+
Explanation: (1) For the purposes of this Rule, "employee" means an employee whose salary and allowance is paid from the funds of the Government of Nepal or an employee of a corporation or a teacher or professor.
|
| 139 |
+
(3) "Family" means the husband, wife, son, unmarried daughter, adopted son, unmarried adopted daughter, father, mother or step mother of the employee referred to in Clause (1) who lives with, and has to be maintained by the employee, and this term also includes, in the case of a male employee and unmarried woman employee, his or her grand-father and grand-mother, and in the case of a married employee, his or her mother-in- law and father-in-law.
|
| 140 |
+
17. Provisions relating to directives and procedures: The Ministry may, subject to the Act and this Rule, issue necessary directives and frame and enforce procedures, as required.
|
| 141 |
+
18. Power to alter Schedules: The Government of Nepal may, by a Notification in the Nepal Gazette, make amendment or alteration in the Schedules, as required.
|
| 142 |
+
|
| 143 |
+
|
| 144 |
+
19. Repeal and saving: (1) The Nepal Citizenship Rules, 2049 (1992) is hereby repealed.
|
| 145 |
+
(2) Any act done and action taken under the Nepal Citizenship Rules, 2049 (1992) shall be deemed to have been done and taken under these Rules.
|
| 146 |
+
|
| 147 |
+
|
| 148 |
+
|
| 149 |
+
|
| 150 |
+
|
| 151 |
+
|
| 152 |
+
|
| 153 |
+
|
| 154 |
+
|
| 155 |
+
|
| 156 |
+
|
| 157 |
+
|
| 158 |
+
|
| 159 |
+
|
| 160 |
+
|
| 161 |
+
|
| 162 |
+
|
| 163 |
+
|
| 164 |
+
|
| 165 |
+
|
| 166 |
+
?Schedule-1
|
| 167 |
+
(Relating to Sub-rules (1) and (3) of Rule 3, Sub-rule (1) of Rule 4 and Sub-rule (1) of Rule
|
| 168 |
+
16)
|
| 169 |
+
|
| 170 |
+
|
| 171 |
+
|
| 172 |
+
The Chief District Officer, District Administration Office,
|
| 173 |
+
������
|
| 174 |
+
|
| 175 |
+
Subject: Request for Obtaining Nepali Citizenship Certificate
|
| 176 |
+
|
| 177 |
+
Passport size Photograph of the applicant showing both ears
|
| 178 |
+
|
| 179 |
+
|
| 180 |
+
Dear Sir/Madam,
|
| 181 |
+
|
| 182 |
+
Since I am a citizen of Nepal by descent/birth, I hereby submit this application along with recommendation for obtaining a Nepali Citizenship Certificate having stated the following details and having affixed a stamp of Rs. 5/-.
|
| 183 |
+
|
| 184 |
+
1. Full Name (in block):�� 6. Name of the father:��.................
|
| 185 |
+
|
| 186 |
+
Address�............................
|
| 187 |
+
|
| 188 |
+
Citizenship��...................
|
| 189 |
+
|
| 190 |
+
2. Sex:��.. 7. Name of the mother:�........�..
|
| 191 |
+
|
| 192 |
+
Address...............................�.
|
| 193 |
+
|
| 194 |
+
Citizenship...................��..
|
| 195 |
+
|
| 196 |
+
3. Place of Birth (in block):�. 8. Name of the husband/wife:........�..
|
| 197 |
+
|
| 198 |
+
Address�................................
|
| 199 |
+
|
| 200 |
+
Citizenship...................��..
|
| 201 |
+
|
| 202 |
+
|
| 203 |
+
|
| 204 |
+
? Altered by a Notification in Nepal Gazette 2066.4.19 (3 Aug. 2009) of Government of Nepal, Ministry of Home Affairs
|
| 205 |
+
|
| 206 |
+
|
| 207 |
+
|
| 208 |
+
|
| 209 |
+
4. Permanent Address: District�...�
|
| 210 |
+
|
| 211 |
+
VDC/Municipality/Sub/ Metropolis...............
|
| 212 |
+
|
| 213 |
+
Ward No��..
|
| 214 |
+
|
| 215 |
+
5. Date of Birth (AD):
|
| 216 |
+
........�Year...........�.Month�....�.Day�...
|
| 217 |
+
|
| 218 |
+
9. Name and Address of the guardian:�.............
|
| 219 |
+
|
| 220 |
+
|
| 221 |
+
|
| 222 |
+
|
| 223 |
+
The aforesaid contents are true and correct. If found to be false, I shall be liable according to the laws.
|
| 224 |
+
|
| 225 |
+
Faithfully yours,
|
| 226 |
+
|
| 227 |
+
Signature of the applicant:��. Date:����������.
|
| 228 |
+
|
| 229 |
+
|
| 230 |
+
Recommendation by VDC/Municipality/Sub /Metropolis
|
| 231 |
+
|
| 232 |
+
|
| 233 |
+
|
| 234 |
+
I know well Mr./Mrs./Miss.........................................����..........., aged....���, the son/daughter/wife of Mr./Mrs. ��....................��who has born on�����at Ward No.............of.............�����.VDC/Municipality/Sub/Metropolis and currently permanently living at Ward No.........of VDC/Municipality/Sub/Metropolis,
|
| 235 |
+
whose name has been stated herein below. To the best of my knowledge, the aforementioned contents about him/her are true and correct. The Citizenship certificate may be issued to him/her on the basis of birth/descent. The aforementioned contents are true and correct and if found to be false, I shall be liable according to law.
|
| 236 |
+
Date:- ��.. The authority making the recommendation
|
| 237 |
+
|
| 238 |
+
Seal of Office �. Signature:��
|
| 239 |
+
|
| 240 |
+
Name and Address:�� Designation:����
|
| 241 |
+
|
| 242 |
+
|
| 243 |
+
Forwarded by DC/Municipality/Sub/Metropolis for conducting public
|
| 244 |
+
inquiry and identification
|
| 245 |
+
|
| 246 |
+
|
| 247 |
+
|
| 248 |
+
As Mr./Mrs./Miss......................����.........................., a resident of Ward No of
|
| 249 |
+
........................�����.VDC/Municipality/Sub/Metropolis and the son/daughter/wife of Mr./Mrs , failed to submit the evidence specified by the Act
|
| 250 |
+
and Rules, therefore, this application has been forwarded having followed the process of on- the-spot public inquiry and identification for decision of conferring citizenship on him/her on the basis of descent/birth.
|
| 251 |
+
|
| 252 |
+
|
| 253 |
+
Date:- ��.. Signature:���
|
| 254 |
+
|
| 255 |
+
Seal of Office �. Name and Address:�� Designation:����
|
| 256 |
+
|
| 257 |
+
To be filled in by the Office:
|
| 258 |
+
|
| 259 |
+
|
| 260 |
+
The applicant has the relationship of
|
| 261 |
+
������.with me. It does not make any difference in the future in case citizenship certificate is conferred on him/her on the basis of descent/birth. If otherwise proved, I shall be liable according to the laws. The person signing on the deed of identification being present in person at the office������..
|
| 262 |
+
Name:�� Citizenship:���..
|
| 263 |
+
Signature:����.
|
| 264 |
+
|
| 265 |
+
Date:����.
|
| 266 |
+
|
| 267 |
+
It is true and correct that the identification has been made in accordance with the contents referred to herein above and the deed has been signed in my presence. The contents are true and correct and if found otherwise, I, the applicant, shall be liable as per the laws.
|
| 268 |
+
Name:�� Signature:����.
|
| 269 |
+
Date:����.
|
| 270 |
+
|
| 271 |
+
|
| 272 |
+
Name, surname and address of the persons executing the deed of inquiry
|
| 273 |
+
|
| 274 |
+
1.
|
| 275 |
+
|
| 276 |
+
2.
|
| 277 |
+
|
| 278 |
+
3.
|
| 279 |
+
|
| 280 |
+
4.
|
| 281 |
+
|
| 282 |
+
5.
|
| 283 |
+
|
| 284 |
+
Name, surname and address of the persons identifying the applicant
|
| 285 |
+
|
| 286 |
+
|
| 287 |
+
|
| 288 |
+
1.
|
| 289 |
+
|
| 290 |
+
2.
|
| 291 |
+
|
| 292 |
+
3.
|
| 293 |
+
|
| 294 |
+
Decision:
|
| 295 |
+
|
| 296 |
+
|
| 297 |
+
|
| 298 |
+
On the basis of the recommendation made in this schedule, the identification signature of the applicant dated ............���. and the following evidence, I find it appropriate to confer citizenship on him/her and submit accordingly for a decision to that effect.
|
| 299 |
+
|
| 300 |
+
|
| 301 |
+
|
| 302 |
+
|
| 303 |
+
Evidence attached:
|
| 304 |
+
|
| 305 |
+
|
| 306 |
+
|
| 307 |
+
|
| 308 |
+
Number of the citizenship certificate distributed
|
| 309 |
+
|
| 310 |
+
One who identifies the applicant
|
| 311 |
+
|
| 312 |
+
One who submits for decision
|
| 313 |
+
|
| 314 |
+
One who approves the case
|
| 315 |
+
|
| 316 |
+
|
| 317 |
+
|
| 318 |
+
|
| 319 |
+
Date:
|
| 320 |
+
|
| 321 |
+
|
| 322 |
+
?Schedule-2
|
| 323 |
+
(Relating to Sub-rule (7) of Rule 8)
|
| 324 |
+
|
| 325 |
+
Government of Nepal
|
| 326 |
+
|
| 327 |
+
Ministry of Home Affairs
|
| 328 |
+
|
| 329 |
+
District Administration Office, .............
|
| 330 |
+
|
| 331 |
+
Certificate of Ne pali Citizenship
|
| 332 |
+
|
| 333 |
+
Cit. Cert. No.
|
| 334 |
+
|
| 335 |
+
|
| 336 |
+
|
| 337 |
+
Affix a recent photograph of 2.5? cm size showing both ears
|
| 338 |
+
|
| 339 |
+
Name and Surname: Sex:
|
| 340 |
+
|
| 341 |
+
Place of Birth:
|
| 342 |
+
|
| 343 |
+
Permanent Address: District:
|
| 344 |
+
|
| 345 |
+
VDC/Municipality/Sub/Metropolis: Ward No.:
|
| 346 |
+
|
| 347 |
+
|
| 348 |
+
Date of Birth: ...............Year...........Month Day
|
| 349 |
+
|
| 350 |
+
Name of Father:
|
| 351 |
+
|
| 352 |
+
Address: Citizenship:
|
| 353 |
+
|
| 354 |
+
Name of Mother:
|
| 355 |
+
|
| 356 |
+
Address: Citizenship:
|
| 357 |
+
|
| 358 |
+
Name of Husband/Wife:
|
| 359 |
+
|
| 360 |
+
Address: Citizenship:
|
| 361 |
+
|
| 362 |
+
|
| 363 |
+
|
| 364 |
+
|
| 365 |
+
|
| 366 |
+
|
| 367 |
+
|
| 368 |
+
? Altered by a Notification in Nepal Gazette 2066.4.19 (3 Aug. 2009) of Government of Nepal, Ministry of Home Affairs
|
| 369 |
+
|
| 370 |
+
|
| 371 |
+
|
| 372 |
+
Government of Nepal has issued the Citizenship Certificate with following details: Citizenship Certificate No.
|
| 373 |
+
Full Name (in block): Date of Birth (AD): Year
|
| 374 |
+
Place of Birth (in block):
|
| 375 |
+
Month
|
| 376 |
+
Day
|
| 377 |
+
VDC/Municipality/Sub/Metropolis:
|
| 378 |
+
Ward No:
|
| 379 |
+
|
| 380 |
+
This Citizenship Certificate has been issued in accordacne with the Citizenship act, 2063 (2006)
|
| 381 |
+
|
| 382 |
+
Signature of the person obtaining the certificate: Type of the Citizenship:
|
| 383 |
+
|
| 384 |
+
Thumb-Impression
|
| 385 |
+
|
| 386 |
+
Authority Issuing the certificate: Signature:
|
| 387 |
+
Name and Surname: Designation:
|
| 388 |
+
Date:
|
| 389 |
+
|
| 390 |
+
In case anyone finds this certificate, please hand it over to the nearest District Administration Office or a Police Office.
|
| 391 |
+
|
| 392 |
+
|
| 393 |
+
|
| 394 |
+
Schedule-3
|
| 395 |
+
|
| 396 |
+
(Relating to Clause (a) of Sub-rule (2) of Rule 3)
|
| 397 |
+
|
| 398 |
+
Format of the on the Spot Public Inquiry (By descent)
|
| 399 |
+
Whereas, in relation to the application made by Mr./Miss/Mrs ,
|
| 400 |
+
son/daughter/wife of Mr./Mrs..............................................., a resident of Ward
|
| 401 |
+
No...........of........................Village Development Committee/Municipality/Sub- municipal Corporation/Municipal Corporation of this...................District, to the District Administration Office,..................../to team number deputed
|
| 402 |
+
by.....................for the distribution of citizenship, for the certificate of citizenship of Nepal, we have been inquired into the matter and we hereby agree to execute public inquiry;
|
| 403 |
+
Now, therefore, we hereby execute this deed of the on the spot public inquiry to the effect that the said applicant is the son/daughter/wife of Mr./Mrs.................................., the applicant is a citizen of Nepal by descent, it will not be otherwise if the certificate of citizenship of Nepal by descent is granted to him or her, and we shall be liable to the consequences according to law, if any details mentioned herein are proved to be otherwise, and have signed it and submitted to the Government of Nepal through the District Administration Office..................../citizenship distribution team number............
|
| 404 |
+
|
| 405 |
+
SN
|
| 406 |
+
|
| 407 |
+
|
| 408 |
+
3.
|
| 409 |
+
|
| 410 |
+
In presence of: Served by:
|
| 411 |
+
|
| 412 |
+
Name, surname: Designation: Signature:
|
| 413 |
+
Date:
|
| 414 |
+
|
| 415 |
+
Chairperson/Mayor or representative of the Village Development Committee/Municipality/sub-municipal Corporation/Municipal Corporation:
|
| 416 |
+
1.
|
| 417 |
+
|
| 418 |
+
2.
|
| 419 |
+
|
| 420 |
+
3.
|
| 421 |
+
|
| 422 |
+
|
| 423 |
+
|
| 424 |
+
|
| 425 |
+
|
| 426 |
+
Schedule-4
|
| 427 |
+
|
| 428 |
+
(Relating to Clause (b) of Sub-rule (2) of Rule 3)
|
| 429 |
+
|
| 430 |
+
Format of Identification (By descent)
|
| 431 |
+
|
| 432 |
+
For the purpose of office
|
| 433 |
+
|
| 434 |
+
We, the below-mentioned citizens of Nepal, have appeared at the site of public inquiry and, with our free will and consent, made and signed this identification before the District Administration Office/citizenship distribution team number......................., to the effect that..............., who is the son/daughter/wife of
|
| 435 |
+
Mr./Mrs.............................., a permanent resident of ward No.........,..............
|
| 436 |
+
VDC/Municipality/Sub-municipal Corporation /Municipal Corporation, is a citizen of Nepal, that the said applicant is the offspring of the descent, that it will not be otherwise if the certificate of citizenship of Nepal by descent is granted to him or her, and that we shall be liable to the consequences according to law if any details mentioned herein are proved to be otherwise.
|
| 437 |
+
|
| 438 |
+
SN
|
| 439 |
+
|
| 440 |
+
|
| 441 |
+
|
| 442 |
+
Identification served by (employee's): Certified by: Name: Name:
|
| 443 |
+
Designation: Designation:
|
| 444 |
+
|
| 445 |
+
Signature: Signature:
|
| 446 |
+
|
| 447 |
+
Date: Date:
|
| 448 |
+
|
| 449 |
+
|
| 450 |
+
Schedule-5
|
| 451 |
+
|
| 452 |
+
(Relating to Clause (a) of Sub-rule (3) of Rule 4)
|
| 453 |
+
|
| 454 |
+
Format of the on the Spot Public Inquiry (By birth)
|
| 455 |
+
Whereas, in relation to the application made by Mr./Miss/Mrs ,
|
| 456 |
+
son/daughter/wife of Mr./Mrs.................................., a resident of Ward No........
|
| 457 |
+
of........................................Village Development Committee/Municipality/Sub- municipal Corporation/Municipal Corporation of this........................District, to the District Administration Office,........................................................../to team
|
| 458 |
+
number.....................deputed by.....................for the distribution of citizenship, for the certificate of citizenship of Nepal, we have been inquired into the matter and we hereby agree to execute public inquiry;
|
| 459 |
+
Now, therefore, we hereby execute this deed of on the spot public inquiry to the effect that the said applicant is the son/daughter/wife of Mr./Mrs..................................., it is true and correct that the applicant was born within the territory of Nepal before the last day of the month of Chaitra of the year 2046 (12 April 1990), and it is also true and correct that the said applicant has been permanently residing in the said place till now since his or her birth, and the applicant is really eligible to obtain the certificate of citizenship of Nepal by birth, it will not be otherwise if the certificate of citizenship of Nepal by birth is granted to him or her, and we shall be liable to the consequences according to law if any details mentioned herein are proved to be otherwise, and we have signed it and submitted it to the Government of Nepal through the District Administration Office......................................../citizenship distribution team number..................
|
| 460 |
+
|
| 461 |
+
|
| 462 |
+
|
| 463 |
+
|
| 464 |
+
|
| 465 |
+
SN
|
| 466 |
+
|
| 467 |
+
In presence of: Served by:
|
| 468 |
+
|
| 469 |
+
Name, surname: Designation; Signature;
|
| 470 |
+
Date:
|
| 471 |
+
|
| 472 |
+
Chairperson/Mayor or representative of the Village Development Committee/Municipality/Sub-municipal Corporation/Municipal Corporation:
|
| 473 |
+
|
| 474 |
+
|
| 475 |
+
Schedule-6
|
| 476 |
+
|
| 477 |
+
(Relating to Clause (b) of Sub-rule (3) of Rule 4)
|
| 478 |
+
|
| 479 |
+
Format of Identification
|
| 480 |
+
|
| 481 |
+
(By birth)
|
| 482 |
+
|
| 483 |
+
For the purpose of office
|
| 484 |
+
|
| 485 |
+
We, the below-mentioned citizens of Nepal, have appeared at the site of public inquiry and, with our free will and consent, made and signed this identification before the District Administration Office/citizenship distribution team number.............., to the effect that...................................................... who is the
|
| 486 |
+
son/daughter/wife of Mr./Mrs........................................................., a permanent
|
| 487 |
+
resident of Ward No................., ..........................................VDC/ Municipality/
|
| 488 |
+
Sub-municipal Corporation /Municipal Corporation, is a citizen of Nepal, that it is true and correct that the said applicant was born within the territory of Nepal before the last day of the month of Chaitra of the year 2046 (12 April 1990), and has been permanently residing in the said place till this date since his or her birth, and that it will not be otherwise if the certificate of citizenship of Nepal by birth is granted to him or her, and that we shall be liable to the consequences according to law if any details mentioned herein are proved to be otherwise.
|
| 489 |
+
|
| 490 |
+
SN
|
| 491 |
+
|
| 492 |
+
Identification served by (employee's): Certified by:
|
| 493 |
+
|
| 494 |
+
Name: Name:
|
| 495 |
+
|
| 496 |
+
Designation: Designation:
|
| 497 |
+
|
| 498 |
+
Signature: Signature:
|
| 499 |
+
|
| 500 |
+
Date: Date:
|
| 501 |
+
|
| 502 |
+
|
| 503 |
+
?Schedule-7
|
| 504 |
+
(Relating to Sub-rule (1) of Rule 5 and Sub-rules (1), (2) and (5) of Rule 7)
|
| 505 |
+
|
| 506 |
+
|
| 507 |
+
|
| 508 |
+
The Chief District Officer, District Administration Office,
|
| 509 |
+
������
|
| 510 |
+
|
| 511 |
+
Subject: Request for Obtaining Nepali Citizenship Certificate
|
| 512 |
+
|
| 513 |
+
Passport size photograph of the applicant showing both ears
|
| 514 |
+
|
| 515 |
+
|
| 516 |
+
Dear Sir/Madam,
|
| 517 |
+
|
| 518 |
+
Since I have fulfilled the terms and conditions referred to in Section 5 of the Nepal Citizenship Act, 2006 as in the capacity of being the son/daughter/ foreign woman having matrimonial relationship with a citizen of Nepal, I hereby submit this application for obtaining a naturalized Nepali Citizenship Certificate along with recommendation therefor having stated the following details and having affixed a stamp of Rs. 5/-.
|
| 519 |
+
1. My personal details:
|
| 520 |
+
|
| 521 |
+
(a) Full Name (in block letters):��
|
| 522 |
+
|
| 523 |
+
(b) Sex:��..
|
| 524 |
+
|
| 525 |
+
(c) Place of Birth (in block letters):�.
|
| 526 |
+
|
| 527 |
+
(d) Date of Birth:�Year�.Month��.Day�.(in Bikram era)
|
| 528 |
+
|
| 529 |
+
�Year�.Month��.Day�.(in AD)
|
| 530 |
+
|
| 531 |
+
(e) Father�s Details:
|
| 532 |
+
|
| 533 |
+
a. Name and surname
|
| 534 |
+
|
| 535 |
+
b. Address
|
| 536 |
+
|
| 537 |
+
|
| 538 |
+
|
| 539 |
+
? Altered by a Notification in Nepal Gazette 2066.4.19 (3 Aug. 2009) of Government of Nepal, Ministry of Home Affairs
|
| 540 |
+
|
| 541 |
+
|
| 542 |
+
c. Citizenship
|
| 543 |
+
|
| 544 |
+
(f) Mother�s details:
|
| 545 |
+
|
| 546 |
+
a. Name and surname
|
| 547 |
+
|
| 548 |
+
b. Address
|
| 549 |
+
|
| 550 |
+
c. Citizenship
|
| 551 |
+
|
| 552 |
+
(g) The age completed:
|
| 553 |
+
|
| 554 |
+
(h) Religion:
|
| 555 |
+
|
| 556 |
+
(i) Details of Spouse:
|
| 557 |
+
|
| 558 |
+
a. Name and surname
|
| 559 |
+
|
| 560 |
+
b. Address
|
| 561 |
+
|
| 562 |
+
c. Citizenship
|
| 563 |
+
|
| 564 |
+
2. Number of years having domiciled in Nepal:
|
| 565 |
+
|
| 566 |
+
(a) In case of son or daughter of a Nepali citizen:-
|
| 567 |
+
|
| 568 |
+
(1) Nationality of the father:
|
| 569 |
+
|
| 570 |
+
(2) Evidence showing whether or not the citizenship has been obtained from the country of the father
|
| 571 |
+
(b) In case of a foreign woman having matrimonial relationship with a Nepali citizen:-
|
| 572 |
+
(The date on which the marriage was solemnized with Mr���)
|
| 573 |
+
|
| 574 |
+
(c) In case of other foreigner (at least Fifteen years):-
|
| 575 |
+
|
| 576 |
+
3. Place of Permanent residence in Nepal:
|
| 577 |
+
|
| 578 |
+
(a) District�� VDC/Municipality/Sub/Metropolis Ward No��.. Street (Tole) ���
|
| 579 |
+
(b) The date on which one has been living continuously in the place referred to in Clause (a): ���.
|
| 580 |
+
|
| 581 |
+
|
| 582 |
+
4. Details of the family currently accompanying and number of members:
|
| 583 |
+
|
| 584 |
+
(a) Son
|
| 585 |
+
5. I know speaking and writing the Nepali or the language speaking in Nepal.
|
| 586 |
+
|
| 587 |
+
6. My livelihood:
|
| 588 |
+
|
| 589 |
+
(a) Means:�
|
| 590 |
+
|
| 591 |
+
(b) Qualification:�.
|
| 592 |
+
|
| 593 |
+
(c) Current profession:�..
|
| 594 |
+
|
| 595 |
+
7. Details as to whether citizenship of a foreign country has not been obtained, relinquished, or taken actions to be relinquished:-
|
| 596 |
+
(a) Name of the country in which I was citizen earlier��
|
| 597 |
+
|
| 598 |
+
(b) whether the citizenship of the country referred to in Clause (a) has not been obtained, relinquished on , or taken actions to be relinquished.
|
| 599 |
+
(c) I have submitted to Government of Nepal on ����.the evidence showing that the citizenship of the country referred to in Clause (a) has not been obtained to date or relinquished or taken actions to be relinquished. A copy thereof is attached herewith.
|
| 600 |
+
8. I have not been convicted of any offence involving moral turpitude. The aforesaid contents are true and correct. If found to be false, I shall be liable according to the laws.
|
| 601 |
+
Faithfully yours,
|
| 602 |
+
Signature of the applicant:��.
|
| 603 |
+
Date:����������.
|
| 604 |
+
Right
|
| 605 |
+
|
| 606 |
+
Recommendation by VDC/Municipality/Sub/Metropolis
|
| 607 |
+
|
| 608 |
+
I know well Mr./Mrs./Miss ����..,aged ���, the son/daughter/wife of Mr/Mrs����, who has born in ���country and permanently residing at Ward No. ..of
|
| 609 |
+
�����.VDC/Municipality/Sub/Metropolis. To the best of my knowledge, the aforementioned contents about him/her are true and correct and if found to be false, I shall be liable according to law.
|
| 610 |
+
Date:- ��.. The authority making the recommendation Name and Seal of Office �. Signature:��
|
| 611 |
+
Name and Address:�� Designation:����
|
| 612 |
+
|
| 613 |
+
|
| 614 |
+
?Schedule-8
|
| 615 |
+
(Relating to Sub-rule (4) of Rule 7 and Sub-rule (7) of Rule 8) Part A
|
| 616 |
+
Government of Nepal
|
| 617 |
+
|
| 618 |
+
Ministry of Home Affairs
|
| 619 |
+
|
| 620 |
+
District Administration Office, .............
|
| 621 |
+
|
| 622 |
+
Certificate of Naturalized Nepali Citizenship
|
| 623 |
+
|
| 624 |
+
Cit. Cert. No.
|
| 625 |
+
|
| 626 |
+
|
| 627 |
+
|
| 628 |
+
Affix a recent photograph of 2.5? cm size showing both ears
|
| 629 |
+
|
| 630 |
+
Name and Surname: Sex:
|
| 631 |
+
|
| 632 |
+
Place of Birth:
|
| 633 |
+
|
| 634 |
+
Permanent Address: District:
|
| 635 |
+
|
| 636 |
+
VDC/Municipality/Sub/Metropolis: Ward No.:
|
| 637 |
+
|
| 638 |
+
|
| 639 |
+
Date of Birth: ...............Year...........Month Day
|
| 640 |
+
|
| 641 |
+
Name of Father:
|
| 642 |
+
|
| 643 |
+
Address: Citizenship:
|
| 644 |
+
|
| 645 |
+
Name of Mother:
|
| 646 |
+
|
| 647 |
+
Address: Citizenship:
|
| 648 |
+
|
| 649 |
+
Name of Husband/Wife:
|
| 650 |
+
|
| 651 |
+
Address: Citizenship:
|
| 652 |
+
|
| 653 |
+
|
| 654 |
+
|
| 655 |
+
|
| 656 |
+
? Altered by a Notification in Nepal Gazette 2066.4.19 (3 Aug. 2009) of Government of Nepal, Ministry of Home Affairs
|
| 657 |
+
|
| 658 |
+
|
| 659 |
+
|
| 660 |
+
|
| 661 |
+
|
| 662 |
+
Government of Nepal has issued the Nepali Citizenship Certificate with following details: Citizenship Certificate No.
|
| 663 |
+
Full Name (in block):
|
| 664 |
+
Permanent Address (in block): District
|
| 665 |
+
VDC/Municipality/Sub/Metropolis:
|
| 666 |
+
|
| 667 |
+
|
| 668 |
+
|
| 669 |
+
Ward No:
|
| 670 |
+
|
| 671 |
+
|
| 672 |
+
|
| 673 |
+
This Naturalized Citizenship Certificate has been issued in accordacne with the Citizenship Act, 2063 (2006)
|
| 674 |
+
Decision Date: ..........................
|
| 675 |
+
|
| 676 |
+
Signature of the person obtaining the certificate:
|
| 677 |
+
|
| 678 |
+
|
| 679 |
+
Thumb-Impression
|
| 680 |
+
|
| 681 |
+
Right
|
| 682 |
+
|
| 683 |
+
|
| 684 |
+
|
| 685 |
+
Authority Issuing the certificate: Signature:
|
| 686 |
+
Name and Surname:
|
| 687 |
+
|
| 688 |
+
Designation: Date:
|
| 689 |
+
|
| 690 |
+
In case anyone finds this certificate, please hand it over to the nearest District Administration Office or a Police Office.
|
| 691 |
+
|
| 692 |
+
|
| 693 |
+
|
| 694 |
+
Part B
|
| 695 |
+
|
| 696 |
+
Government of Nepal
|
| 697 |
+
|
| 698 |
+
Ministry of Home Affairs
|
| 699 |
+
|
| 700 |
+
District Administration Office, .............
|
| 701 |
+
|
| 702 |
+
Certificate of Matrimonial Naturalized Ne pali Citizenship
|
| 703 |
+
|
| 704 |
+
Cit. Cert. No.
|
| 705 |
+
|
| 706 |
+
|
| 707 |
+
|
| 708 |
+
Affix a recent photograph of 2.5? cm size showing both ears
|
| 709 |
+
|
| 710 |
+
Name and Surname: Sex:
|
| 711 |
+
|
| 712 |
+
Place of Birth:
|
| 713 |
+
|
| 714 |
+
Permanent Address: District:
|
| 715 |
+
|
| 716 |
+
VDC/Municipality/Sub/Metropolis: Ward No.:
|
| 717 |
+
|
| 718 |
+
|
| 719 |
+
Date of Birth: ...............Year...........Month Day
|
| 720 |
+
|
| 721 |
+
Name of Father:
|
| 722 |
+
|
| 723 |
+
Address: Citizenship:
|
| 724 |
+
|
| 725 |
+
Name of Mother:
|
| 726 |
+
|
| 727 |
+
Address: Citizenship:
|
| 728 |
+
|
| 729 |
+
Name of Husband/Wife:
|
| 730 |
+
|
| 731 |
+
Address: Citizenship:
|
| 732 |
+
|
| 733 |
+
|
| 734 |
+
|
| 735 |
+
Government of Nepal has issued the Citizenship Certificate with following details: Citizenship Certificate No.
|
| 736 |
+
Full Name (in block): Sex:
|
| 737 |
+
|
| 738 |
+
Date of Birth (AD): Year
|
| 739 |
+
Permanent Address (in block): District
|
| 740 |
+
|
| 741 |
+
|
| 742 |
+
This Matrimonial Naturalized Citizenship Certificate has been issued in accordacne with the Citizenship act, 2063 (2006)
|
| 743 |
+
Decision Date: ..........................
|
| 744 |
+
|
| 745 |
+
Signature of the person obtaining the certificate:
|
| 746 |
+
|
| 747 |
+
|
| 748 |
+
Thumb-Impression
|
| 749 |
+
|
| 750 |
+
Right
|
| 751 |
+
|
| 752 |
+
|
| 753 |
+
Authority Issuing the certificate: Signature:
|
| 754 |
+
Name and Surname: Designation:
|
| 755 |
+
Date:
|
| 756 |
+
|
| 757 |
+
|
| 758 |
+
In case anyone finds this certificate, please hand it over to the nearest District Administration Office or a Police Office.
|
| 759 |
+
|
| 760 |
+
|
| 761 |
+
Schedule-9
|
| 762 |
+
|
| 763 |
+
(Relating to Sub-rule (1) of Rule 9)
|
| 764 |
+
|
| 765 |
+
To,
|
| 766 |
+
|
| 767 |
+
----------------------------------
|
| 768 |
+
|
| 769 |
+
---------------------------------.
|
| 770 |
+
|
| 771 |
+
Dear sir/madam,
|
| 772 |
+
|
| 773 |
+
Whereas, it is necessary for me to renounce the citizenship of Nepal for the following reasons;
|
| 774 |
+
|
| 775 |
+
|
| 776 |
+
Now, therefore, I hereby give information of the renunciation. I humbly request for the registration of this information.
|
| 777 |
+
1.
|
| 778 |
+
|
| 779 |
+
2.
|
| 780 |
+
|
| 781 |
+
3.
|
| 782 |
+
|
| 783 |
+
|
| 784 |
+
Other details:
|
| 785 |
+
|
| 786 |
+
Place of my current domicile:---------------------
|
| 787 |
+
|
| 788 |
+
Number of my citizenship certificate:
|
| 789 |
+
|
| 790 |
+
Date of issue of the certificate of citizenship:
|
| 791 |
+
|
| 792 |
+
\Place of issue of the certificate of citizenship: Father's name:
|
| 793 |
+
My age:
|
| 794 |
+
|
| 795 |
+
Short description of my family members:
|
| 796 |
+
|
| 797 |
+
|
| 798 |
+
Name Age Address Details relating to certificate of citizenship 1.
|
| 799 |
+
2.
|
| 800 |
+
|
| 801 |
+
3.
|
| 802 |
+
|
| 803 |
+
Thumb impressions Citizenship renouncing person's photograph
|
| 804 |
+
|
| 805 |
+
|
| 806 |
+
|
| 807 |
+
|
| 808 |
+
Citizenship renouncing person's: Signature:
|
| 809 |
+
Name, surname:
|
| 810 |
+
|
| 811 |
+
Previous address:
|
| 812 |
+
|
| 813 |
+
Address of present domicile:
|
| 814 |
+
|
| 815 |
+
www.lawcommission.gov.np
|
| 816 |
+
|
| 817 |
+
Schedule-10
|
| 818 |
+
|
| 819 |
+
(Relating to Sub-rule (4) of Rule 9)
|
| 820 |
+
|
| 821 |
+
Details of citizenship renouncing person
|
| 822 |
+
SN
|
| 823 |
+
citizenship
|
| 824 |
+
of Nepal
|
| 825 |
+
members
|
| 826 |
+
|
| 827 |
+
|
| 828 |
+
|
| 829 |
+
|
| 830 |
+
|
| 831 |
+
|
| 832 |
+
|
| 833 |
+
|
| 834 |
+
|
| 835 |
+
|
| 836 |
+
|
| 837 |
+
|
| 838 |
+
|
| 839 |
+
|
| 840 |
+
|
| 841 |
+
|
| 842 |
+
|
| 843 |
+
|
| 844 |
+
|
| 845 |
+
|
| 846 |
+
|
| 847 |
+
|
| 848 |
+
|
| 849 |
+
|
| 850 |
+
|
| 851 |
+
|
| 852 |
+
|
| 853 |
+
|
| 854 |
+
|
| 855 |
+
|
| 856 |
+
|
| 857 |
+
|
| 858 |
+
|
| 859 |
+
|
| 860 |
+
40
|
| 861 |
+
www.lawcommission.gov.np
|
| 862 |
+
|
| 863 |
+
|
| 864 |
+
Schedule-11
|
| 865 |
+
|
| 866 |
+
(Relating to Sub-rule (1) of Rule 11)
|
| 867 |
+
|
| 868 |
+
Informant's photograph (Passport size photograph showing both ears)
|
| 869 |
+
|
| 870 |
+
|
| 871 |
+
o,---------- -- --------
|
| 872 |
+
|
| 873 |
+
---------- -- ----------------.
|
| 874 |
+
|
| 875 |
+
Subject: Application for registration for the purpose of resumption of citizenship of Nepal.
|
| 876 |
+
|
| 877 |
+
|
| 878 |
+
Dear sir/madam,
|
| 879 |
+
|
| 880 |
+
Whereas, I, a citizen of Nepal, have renounced the citizenship of -----------------
|
| 881 |
+
-------(country) and come to Nepal and resided here;
|
| 882 |
+
|
| 883 |
+
Now, therefore, I hereby request that the following details be registered pursuant to Section 11 of the Nepal Citizenship Act, 2006.
|
| 884 |
+
1. Full name and surname:
|
| 885 |
+
|
| 886 |
+
2. Place of birth:
|
| 887 |
+
|
| 888 |
+
3. Date of birth:
|
| 889 |
+
|
| 890 |
+
4. Age completed:
|
| 891 |
+
|
| 892 |
+
5. Certificate of citizenship number:
|
| 893 |
+
|
| 894 |
+
6. Date of issue of certificate of citizenship:
|
| 895 |
+
|
| 896 |
+
7. Type of citizenship:
|
| 897 |
+
|
| 898 |
+
|
| 899 |
+
8. Date of coming back to, and domiciled in, Nepal:
|
| 900 |
+
|
| 901 |
+
9. Place of present domicile: ---------------------District--------------------
|
| 902 |
+
VDC/ Municipality/ Sub-municipal Corporation/ Municipal Corporation
|
| 903 |
+
|
| 904 |
+
10. Father's name, surname and address:
|
| 905 |
+
|
| 906 |
+
11. Father's certificate of citizenship number:
|
| 907 |
+
|
| 908 |
+
|
| 909 |
+
|
| 910 |
+
|
| 911 |
+
Date: Sincerely,
|
| 912 |
+
Informant's: Signature:
|
| 913 |
+
Thumb impressions:
|
| 914 |
+
|
| 915 |
+
|
| 916 |
+
|
| 917 |
+
Right Left
|
| 918 |
+
|
| 919 |
+
|
| 920 |
+
Schedule-12
|
| 921 |
+
|
| 922 |
+
(Relating to Sub-rule (2) of Rule 11)
|
| 923 |
+
|
| 924 |
+
Government of Nepal
|
| 925 |
+
|
| 926 |
+
---------------------Office
|
| 927 |
+
|
| 928 |
+
Subject: Registration of information.
|
| 929 |
+
|
| 930 |
+
The information, as referred to in Section 11 of the Nepal Citizenship Act, 2006, of Miss/Mrs............................................., age of..............years, at present
|
| 931 |
+
residing at Ward No.........., ...............................VDC/ Municipality/Sub-
|
| 932 |
+
municipal Corporation/ Municipal Corporation,..................District,....................
|
| 933 |
+
Zone........................, Nepal, son/daughter of Mr ,
|
| 934 |
+
a resident of Ward No............., ...................................VDC/ Municipality/ Sub- municipal Corporation/ Municipal Corporation, District,
|
| 935 |
+
has been registered.
|
| 936 |
+
|
| 937 |
+
|
| 938 |
+
Informant's: Signature:
|
| 939 |
+
Thumb impressions:
|
| 940 |
+
|
| 941 |
+
Right Left
|
| 942 |
+
|
| 943 |
+
Informant's photograph (Passport size photograph showing both ears)
|
| 944 |
+
|
| 945 |
+
|
| 946 |
+
|
| 947 |
+
|
| 948 |
+
|
| 949 |
+
|
| 950 |
+
|
| 951 |
+
Date of registration of information: Information registering authority's:
|
| 952 |
+
|
| 953 |
+
Signature: Name, surname: Designation: Office:
|
| 954 |
+
|
| 955 |
+
|
| 956 |
+
|
| 957 |
+
|
| 958 |
+
|
| 959 |
+
|
| 960 |
+
|
| 961 |
+
|
| 962 |
+
|
| 963 |
+
|
| 964 |
+
|
| 965 |
+
|
| 966 |
+
|
| 967 |
+
|
| 968 |
+
|
| 969 |
+
|
| 970 |
+
|
| 971 |
+
|
| 972 |
+
|
| 973 |
+
|
| 974 |
+
|
requirements.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
torch
|
| 2 |
+
transformers
|