Showing posts with label jobsalary. Show all posts
Showing posts with label jobsalary. Show all posts

LocationsSeeder

LocationsSeeder

<?php

namespace Database\Seeders;

use App\Models\Location;

class LocationsSeeder
{
    public function seed()
    {
        echo "Seeding locations...\n";

        // India
        $india = $this->createLocation(null, 'India', 'india', 'country', 'IN');
        echo "✓ Created India\n";

        // Indian States

        $andhraPradesh = $this->createLocation($india->id, 'Andhra Pradesh', 'andhra-pradesh', 'state', 'IN');
        $arunachalPradesh = $this->createLocation($india->id, 'Arunachal Pradesh', 'arunachal-pradesh', 'state', 'IN');
        $assam = $this->createLocation($india->id, 'Assam', 'assam', 'state', 'IN');
        $bihar = $this->createLocation($india->id, 'Bihar', 'bihar', 'state', 'IN');
        $chhattisgarh = $this->createLocation($india->id, 'Chhattisgarh', 'chhattisgarh', 'state', 'IN');
        $goa = $this->createLocation($india->id, 'Goa', 'goa', 'state', 'IN');
        $gujarat = $this->createLocation($india->id, 'Gujarat', 'gujarat', 'state', 'IN');
        $haryana = $this->createLocation($india->id, 'Haryana', 'haryana', 'state', 'IN');
        $himachalPradesh = $this->createLocation($india->id, 'Himachal Pradesh', 'himachal-pradesh', 'state', 'IN');
        $jharkhand = $this->createLocation($india->id, 'Jharkhand', 'jharkhand', 'state', 'IN');
        $karnataka = $this->createLocation($india->id, 'Karnataka', 'karnataka', 'state', 'IN');
        $kerala = $this->createLocation($india->id, 'Kerala', 'kerala', 'state', 'IN');
        $madhyaPradesh = $this->createLocation($india->id, 'Madhya Pradesh', 'madhya-pradesh', 'state', 'IN');
        $maharashtra = $this->createLocation($india->id, 'Maharashtra', 'maharashtra', 'state', 'IN');
        $manipur = $this->createLocation($india->id, 'Manipur', 'manipur', 'state', 'IN');
        $meghalaya = $this->createLocation($india->id, 'Meghalaya', 'meghalaya', 'state', 'IN');
        $mizoram = $this->createLocation($india->id, 'Mizoram', 'mizoram', 'state', 'IN');
        $nagaland = $this->createLocation($india->id, 'Nagaland', 'nagaland', 'state', 'IN');
        $odisha = $this->createLocation($india->id, 'Odisha', 'odisha', 'state', 'IN');
        $punjab = $this->createLocation($india->id, 'Punjab', 'punjab', 'state', 'IN');
        $rajasthan = $this->createLocation($india->id, 'Rajasthan', 'rajasthan', 'state', 'IN');
        $sikkim = $this->createLocation($india->id, 'Sikkim', 'sikkim', 'state', 'IN');
        $tamilNadu = $this->createLocation($india->id, 'Tamil Nadu', 'tamil-nadu', 'state', 'IN');
        $telangana = $this->createLocation($india->id, 'Telangana', 'telangana', 'state', 'IN');
        $tripura = $this->createLocation($india->id, 'Tripura', 'tripura', 'state', 'IN');
        $uttarakhand = $this->createLocation($india->id, 'Uttarakhand', 'uttarakhand', 'state', 'IN');
        $uttarPradesh = $this->createLocation($india->id, 'Uttar Pradesh', 'uttar-pradesh', 'state', 'IN');
        $westBengal = $this->createLocation($india->id, 'West Bengal', 'west-bengal', 'state', 'IN');
        $andamanNicobar = $this->createLocation($india->id, 'Andaman and Nicobar Islands', 'andaman-nicobar', 'state', 'IN');
        $chandigarh = $this->createLocation($india->id, 'Chandigarh', 'chandigarh', 'state', 'IN');
        $dnhdd = $this->createLocation($india->id, 'DNHDD', 'dnhdd', 'state', 'IN');
        $delhi = $this->createLocation($india->id, 'Delhi', 'delhi', 'state', 'IN');
        $jammuKashmir = $this->createLocation($india->id, 'Jammu and Kashmir', 'jammu-and-kashmir', 'state', 'IN');
        $ladakh = $this->createLocation($india->id, 'Ladakh', 'ladakh', 'state', 'IN');
        $lakshadweep = $this->createLocation($india->id, 'Lakshadweep', 'lakshadweep', 'state', 'IN');
        $puducherry = $this->createLocation($india->id, 'Puducherry', 'puducherry', 'state', 'IN');

        echo "✓ Created all Indian states and Union Teritoris \n";

        // Districts in India
        // Andaman and Nicobar Islands Districts
        $portBlair = $this->createLocation($andamanNicobar->id, 'Port Blair', 'port-blair', 'district', 'IN');
        $garacharma = $this->createLocation($andamanNicobar->id, 'Garacharma', 'garacharma', 'district', 'IN');
        $prothrapur = $this->createLocation($andamanNicobar->id, 'Prothrapur', 'prothrapur', 'district', 'IN');
        echo "Created All Andaman and Nicobar Islands Districts \n";

        // Andhra Pradesh Districts
        $visakhapatnam = $this->createLocation($andhraPradesh->id, 'Visakhapatnam', 'visakhapatnam', 'district', 'IN');
        $vijayawada = $this->createLocation($andhraPradesh->id, 'Vijayawada', 'vijayawada', 'district', 'IN');
        $guntur = $this->createLocation($andhraPradesh->id, 'Guntur', 'guntur', 'district', 'IN');
        $nellore = $this->createLocation($andhraPradesh->id, 'Nellore', 'nellore', 'district', 'IN');
        $kurnool = $this->createLocation($andhraPradesh->id, 'Kurnool', 'kurnool', 'district', 'IN');
        $kadapa = $this->createLocation($andhraPradesh->id, 'Kadapa', 'kadapa', 'district', 'IN');
        $rajahmundry = $this->createLocation($andhraPradesh->id, 'Rajahmundry', 'rajahmundry', 'district', 'IN');
        $kakinada = $this->createLocation($andhraPradesh->id, 'Kakinada', 'kakinada', 'district', 'IN');
        $nizamabad = $this->createLocation($andhraPradesh->id, 'Nizamabad', 'nizamabad', 'district', 'IN');
        $tirupati = $this->createLocation($andhraPradesh->id, 'Tirupati', 'tirupati', 'district', 'IN');
        $anantapur = $this->createLocation($andhraPradesh->id, 'Anantapur', 'anantapur', 'district', 'IN');
        $vizianagaram = $this->createLocation($andhraPradesh->id, 'Vizianagaram', 'vizianagaram', 'district', 'IN');
        $secunderabad = $this->createLocation($andhraPradesh->id, 'Secunderabad', 'secunderabad', 'district', 'IN');
        $ongole = $this->createLocation($andhraPradesh->id, 'Ongole', 'ongole', 'district', 'IN');
        $eluru = $this->createLocation($andhraPradesh->id, 'Eluru', 'eluru', 'district', 'IN');
        $nandyal = $this->createLocation($andhraPradesh->id, 'Nandyal', 'nandyal', 'district', 'IN');
        $khammam = $this->createLocation($andhraPradesh->id, 'Khammam', 'khammam', 'district', 'IN');
        $machilipatnam = $this->createLocation($andhraPradesh->id, 'Machilipatnam', 'machilipatnam', 'district', 'IN');
        $adoni = $this->createLocation($andhraPradesh->id, 'Adoni', 'adoni', 'district', 'IN');
        $tenali = $this->createLocation($andhraPradesh->id, 'Tenali', 'tenali', 'district', 'IN');
        $proddatur = $this->createLocation($andhraPradesh->id, 'Proddatur', 'proddatur', 'district', 'IN');
        $chittoor = $this->createLocation($andhraPradesh->id, 'Chittoor', 'chittoor', 'district', 'IN');
        $hindupur = $this->createLocation($andhraPradesh->id, 'Hindupur', 'hindupur', 'district', 'IN');
        $bhimavaram = $this->createLocation($andhraPradesh->id, 'Bhimavaram', 'bhimavaram', 'district', 'IN');
        $madanapalle = $this->createLocation($andhraPradesh->id, 'Madanapalle', 'madanapalle', 'district', 'IN');
        $guntakal = $this->createLocation($andhraPradesh->id, 'Guntakal', 'guntakal', 'district', 'IN');
        $srikakulam = $this->createLocation($andhraPradesh->id, 'Srikakulam', 'srikakulam', 'district', 'IN');
        $dharmavaram = $this->createLocation($andhraPradesh->id, 'Dharmavaram', 'dharmavaram', 'district', 'IN');
        $gudivada = $this->createLocation($andhraPradesh->id, 'Gudivada', 'gudivada', 'district', 'IN');
        $narasaraopet = $this->createLocation($andhraPradesh->id, 'Narasaraopet', 'narasaraopet', 'district', 'IN');
        $tadpatri = $this->createLocation($andhraPradesh->id, 'Tadpatri', 'tadpatri', 'district', 'IN');
        $tadipatri = $this->createLocation($andhraPradesh->id, 'Tadipatri', 'tadipatri', 'district', 'IN');
        $suryapet = $this->createLocation($andhraPradesh->id, 'Suryapet', 'suryapet', 'district', 'IN');
        $tadepalligudem = $this->createLocation($andhraPradesh->id, 'Tadepalligudem', 'tadepalligudem', 'district', 'IN');
        $miryalaguda = $this->createLocation($andhraPradesh->id, 'Miryalaguda', 'miryalaguda', 'district', 'IN');
        $chilakaluripet = $this->createLocation($andhraPradesh->id, 'Chilakaluripet', 'chilakaluripet', 'district', 'IN');
        $yemmiganur = $this->createLocation($andhraPradesh->id, 'Yemmiganur', 'yemmiganur', 'district', 'IN');
        $kavali = $this->createLocation($andhraPradesh->id, 'Kavali', 'kavali', 'district', 'IN');
        $rayachoti = $this->createLocation($andhraPradesh->id, 'Rayachoti', 'rayachoti', 'district', 'IN');
        $kadiri = $this->createLocation($andhraPradesh->id, 'Kadiri', 'kadiri', 'district', 'IN');
        $anakapalle = $this->createLocation($andhraPradesh->id, 'Anakapalle', 'anakapalle', 'district', 'IN');
        $chirala = $this->createLocation($andhraPradesh->id, 'Chirala', 'chirala', 'district', 'IN');
        $palakollu = $this->createLocation($andhraPradesh->id, 'Palakollu', 'palakollu', 'district', 'IN');
        $srikalahasti = $this->createLocation($andhraPradesh->id, 'Srikalahasti', 'srikalahasti', 'district', 'IN');
        $tanuku = $this->createLocation($andhraPradesh->id, 'Tanuku', 'tanuku', 'district', 'IN');
        $bapatla = $this->createLocation($andhraPradesh->id, 'Bapatla', 'bapatla', 'district', 'IN');
        $gudur = $this->createLocation($andhraPradesh->id, 'Gudur', 'gudur', 'district', 'IN');
        $markapur = $this->createLocation($andhraPradesh->id, 'Markapur', 'markapur', 'district', 'IN');
        $badvel = $this->createLocation($andhraPradesh->id, 'Badvel', 'badvel', 'district', 'IN');
        $pulivendula = $this->createLocation($andhraPradesh->id, 'Pulivendula', 'pulivendula', 'district', 'IN');
        $mangalagiriTadepalli = $this->createLocation($andhraPradesh->id, 'Mangalagiri-Tadepalli', 'mangalagiri-tadepalli', 'district', 'IN');
        $piduguralla = $this->createLocation($andhraPradesh->id, 'Piduguralla', 'piduguralla', 'district', 'IN');
        $vinukonda = $this->createLocation($andhraPradesh->id, 'Vinukonda', 'vinukonda', 'district', 'IN');
        $nagari = $this->createLocation($andhraPradesh->id, 'Nagari', 'nagari', 'district', 'IN');
        $rayadurgam = $this->createLocation($andhraPradesh->id, 'Rayadurgam', 'rayadurgam', 'district', 'IN');
        $ponnur = $this->createLocation($andhraPradesh->id, 'Ponnur', 'ponnur', 'district', 'IN');
        echo "Created All Andhra Pradesh Districts \n";

        // Arunachal Pradesh Districts
        $itanagar = $this->createLocation($arunachalPradesh->id, 'Itanagar', 'itanagar', 'district', 'IN');
        $naharlagun = $this->createLocation($arunachalPradesh->id, 'Naharlagun', 'naharlagun', 'district', 'IN');
        $pasighat = $this->createLocation($arunachalPradesh->id, 'Pasighat', 'pasighat', 'district', 'IN');
        echo "Created All Arunachal Pradesh Districts \n";

        // Assam Districts
        $guwahati = $this->createLocation($assam->id, 'Guwahati', 'guwahati', 'district', 'IN');
        $silchar = $this->createLocation($assam->id, 'Silchar', 'silchar', 'district', 'IN');
        $dibrugarh = $this->createLocation($assam->id, 'Dibrugarh', 'dibrugarh', 'district', 'IN');
        $jorhat = $this->createLocation($assam->id, 'Jorhat', 'jorhat', 'district', 'IN');
        $nagaon = $this->createLocation($assam->id, 'Nagaon', 'nagaon', 'district', 'IN');
        $tinsukia = $this->createLocation($assam->id, 'Tinsukia', 'tinsukia', 'district', 'IN');
        $tezpur = $this->createLocation($assam->id, 'Tezpur', 'tezpur', 'district', 'IN');
        $bongaigaon = $this->createLocation($assam->id, 'Bongaigaon', 'bongaigaon', 'district', 'IN');
        $diphu = $this->createLocation($assam->id, 'Diphu', 'diphu', 'district', 'IN');
        $dhubri = $this->createLocation($assam->id, 'Dhubri', 'dhubri', 'district', 'IN');
        $northLakhimpur = $this->createLocation($assam->id, 'North Lakhimpur', 'north-lakhimpur', 'district', 'IN');
        $karimganj = $this->createLocation($assam->id, 'Karimganj', 'karimganj', 'district', 'IN');
        $sivasagar = $this->createLocation($assam->id, 'Sivasagar', 'sivasagar', 'district', 'IN');
        $goalpara = $this->createLocation($assam->id, 'Goalpara', 'goalpara', 'district', 'IN');
        $barpeta = $this->createLocation($assam->id, 'Barpeta', 'barpeta', 'district', 'IN');
        $golaghat = $this->createLocation($assam->id, 'Golaghat', 'golaghat', 'district', 'IN');
        $haflong = $this->createLocation($assam->id, 'Haflong', 'haflong', 'district', 'IN');
        $lanka = $this->createLocation($assam->id, 'Lanka', 'lanka', 'district', 'IN');
        $hojai = $this->createLocation($assam->id, 'Hojai', 'hojai', 'district', 'IN');
        echo "Created All Assam Districts \n";

        // Bihar Districts
        $patna = $this->createLocation($bihar->id, 'Patna', 'patna', 'district', 'IN');
        $gaya = $this->createLocation($bihar->id, 'Gaya', 'gaya', 'district', 'IN');
        $bhagalpur = $this->createLocation($bihar->id, 'Bhagalpur', 'bhagalpur', 'district', 'IN');
        $muzaffarpur = $this->createLocation($bihar->id, 'Muzaffarpur', 'muzaffarpur', 'district', 'IN');
        $biharSharif = $this->createLocation($bihar->id, 'Bihar Sharif', 'bihar-sharif', 'district', 'IN');
        $darbhanga = $this->createLocation($bihar->id, 'Darbhanga', 'darbhanga', 'district', 'IN');
        $purnia = $this->createLocation($bihar->id, 'Purnia', 'purnia', 'district', 'IN');
        $arrah = $this->createLocation($bihar->id, 'Arrah', 'arrah', 'district', 'IN');
        $begusarai = $this->createLocation($bihar->id, 'Begusarai', 'begusarai', 'district', 'IN');
        $katihar = $this->createLocation($bihar->id, 'Katihar', 'katihar', 'district', 'IN');
        $munger = $this->createLocation($bihar->id, 'Munger', 'munger', 'district', 'IN');
        $chhapra = $this->createLocation($bihar->id, 'Chhapra', 'chhapra', 'district', 'IN');
        $danapur = $this->createLocation($bihar->id, 'Danapur', 'danapur', 'district', 'IN');
        $saharsa = $this->createLocation($bihar->id, 'Saharsa', 'saharsa', 'district', 'IN');
        $hajipur = $this->createLocation($bihar->id, 'Hajipur', 'hajipur', 'district', 'IN');
        $sasaram = $this->createLocation($bihar->id, 'Sasaram', 'sasaram', 'district', 'IN');
        $dehri = $this->createLocation($bihar->id, 'Dehri', 'dehri', 'district', 'IN');
        $siwan = $this->createLocation($bihar->id, 'Siwan', 'siwan', 'district', 'IN');
        $bettiah = $this->createLocation($bihar->id, 'Bettiah', 'bettiah', 'district', 'IN');
        $motihari = $this->createLocation($bihar->id, 'Motihari', 'motihari', 'district', 'IN');
        $bagaha = $this->createLocation($bihar->id, 'Bagaha', 'bagaha', 'district', 'IN');
        $kishanganj = $this->createLocation($bihar->id, 'Kishanganj', 'kishanganj', 'district', 'IN');
        $jamalpur = $this->createLocation($bihar->id, 'Jamalpur', 'jamalpur', 'district', 'IN');
        $jehanabad = $this->createLocation($bihar->id, 'Jehanabad', 'jehanabad', 'district', 'IN');
        $buxar = $this->createLocation($bihar->id, 'Buxar', 'buxar', 'district', 'IN');
        $aurangabad = $this->createLocation($bihar->id, 'Aurangabad', 'aurangabad', 'district', 'IN');
        $lakhisarai = $this->createLocation($bihar->id, 'Lakhisarai', 'lakhisarai', 'district', 'IN');
        $nawada = $this->createLocation($bihar->id, 'Nawada', 'nawada', 'district', 'IN');
        $jamui = $this->createLocation($bihar->id, 'Jamui', 'jamui', 'district', 'IN');
        $sitamarhi = $this->createLocation($bihar->id, 'Sitamarhi', 'sitamarhi', 'district', 'IN');
        $araria = $this->createLocation($bihar->id, 'Araria', 'araria', 'district', 'IN');
        $madhepura = $this->createLocation($bihar->id, 'Madhepura', 'madhepura', 'district', 'IN');
        $samastipur = $this->createLocation($bihar->id, 'Samastipur', 'samastipur', 'district', 'IN');
        $madhubani = $this->createLocation($bihar->id, 'Madhubani', 'madhubani', 'district', 'IN');
        $dumraon = $this->createLocation($bihar->id, 'Dumraon', 'dumraon', 'district', 'IN');
        $forbesganj = $this->createLocation($bihar->id, 'Forbesganj', 'forbesganj', 'district', 'IN');
        $bhabua = $this->createLocation($bihar->id, 'Bhabua', 'bhabua', 'district', 'IN');
        $barh = $this->createLocation($bihar->id, 'Barh', 'barh', 'district', 'IN');
        $supual = $this->createLocation($bihar->id, 'Supual', 'supual', 'district', 'IN');
        $daudnagar = $this->createLocation($bihar->id, 'Daudnagar', 'daudnagar', 'district', 'IN');
        $mokameh = $this->createLocation($bihar->id, 'Mokameh', 'mokameh', 'district', 'IN');
        $narkatiaganj = $this->createLocation($bihar->id, 'Narkatiaganj', 'narkatiaganj', 'district', 'IN');
        $rajgir = $this->createLocation($bihar->id, 'Rajgir', 'rajgir', 'district', 'IN');
        $gopalganj = $this->createLocation($bihar->id, 'Gopalganj', 'gopalganj', 'district', 'IN');
        $phulwariSharif = $this->createLocation($bihar->id, 'Phulwari Sharif', 'phulwari-sharif', 'district', 'IN');
        $sultanganj = $this->createLocation($bihar->id, 'Sultanganj', 'sultanganj', 'district', 'IN');
        $arwal = $this->createLocation($bihar->id, 'Arwal', 'arwal', 'district', 'IN');
        $sheikhpura = $this->createLocation($bihar->id, 'Sheikhpura', 'sheikhpura', 'district', 'IN');
        $khagaria = $this->createLocation($bihar->id, 'Khagaria', 'khagaria', 'district', 'IN');
        echo "Created All Bihar Districts \n";

        // Chandigarh Districts
        echo "Created All Chandigarh Districts \n";

        // Chhattisgarh Districts
        $raipur = $this->createLocation($chhattisgarh->id, 'Raipur', 'raipur', 'district', 'IN');
        $bhilaiNagar = $this->createLocation($chhattisgarh->id, 'Bhilai-Nagar', 'bhilai-nagar', 'district', 'IN');
        $durg = $this->createLocation($chhattisgarh->id, 'Durg', 'durg', 'district', 'IN');
        $bilaspur = $this->createLocation($chhattisgarh->id, 'Bilaspur', 'bilaspur', 'district', 'IN');
        $korba = $this->createLocation($chhattisgarh->id, 'Korba', 'korba', 'district', 'IN');
        $rajnandgaon = $this->createLocation($chhattisgarh->id, 'Rajnandgaon', 'rajnandgaon', 'district', 'IN');
        $raigarh = $this->createLocation($chhattisgarh->id, 'Raigarh', 'raigarh', 'district', 'IN');
        $jagdalpur = $this->createLocation($chhattisgarh->id, 'Jagdalpur', 'jagdalpur', 'district', 'IN');
        $ambikapur = $this->createLocation($chhattisgarh->id, 'Ambikapur', 'ambikapur', 'district', 'IN');
        $dhamtari = $this->createLocation($chhattisgarh->id, 'Dhamtari', 'dhamtari', 'district', 'IN');
        $bhilaiCharoda = $this->createLocation($chhattisgarh->id, 'Bhilai Charoda', 'bhilai-charoda', 'district', 'IN');
        $birgaon = $this->createLocation($chhattisgarh->id, 'Birgaon', 'birgaon', 'district', 'IN');
        $chirmiri = $this->createLocation($chhattisgarh->id, 'Chirmiri', 'chirmiri', 'district', 'IN');
        $bhatapara = $this->createLocation($chhattisgarh->id, 'Bhatapara', 'bhatapara', 'district', 'IN');
        $mahasamund = $this->createLocation($chhattisgarh->id, 'Mahasamund', 'mahasamund', 'district', 'IN');
        $dalliRajhara = $this->createLocation($chhattisgarh->id, 'Dalli Rajhara', 'dalli-rajhara', 'district', 'IN');
        $nailaJanjgir = $this->createLocation($chhattisgarh->id, 'Naila Janjgir', 'naila-janjgir', 'district', 'IN');
        $tildaNeora = $this->createLocation($chhattisgarh->id, 'Tilda Neora', 'tilda-neora', 'district', 'IN');
        $mungeli = $this->createLocation($chhattisgarh->id, 'Mungeli', 'mungeli', 'district', 'IN');
        $manendragarh = $this->createLocation($chhattisgarh->id, 'Manendragarh', 'manendragarh', 'district', 'IN');
        $kawardha = $this->createLocation($chhattisgarh->id, 'Kawardha', 'kawardha', 'district', 'IN');
        echo "Created All Chhattisgarh Districts \n";

        // DNHDD Districts
        $silvassa = $this->createLocation($dnhdd->id, 'Silvassa', 'silvassa', 'district', 'IN');
        $dabhel = $this->createLocation($dnhdd->id, 'Dabhel', 'dabhel', 'district', 'IN');
        $daman = $this->createLocation($dnhdd->id, 'Daman', 'daman', 'district', 'IN');
        $diu = $this->createLocation($dnhdd->id, 'Diu', 'diu', 'district', 'IN');
        $kachigam = $this->createLocation($dnhdd->id, 'Kachigam', 'kachigam', 'district', 'IN');
        $naroli = $this->createLocation($dnhdd->id, 'Naroli', 'naroli', 'district', 'IN');
        $dadra = $this->createLocation($dnhdd->id, 'Dadra', 'dadra', 'district', 'IN');
        echo "Created All DNHDD Districts \n";

        // Delhi Districts
        $kirariSulemanNagar = $this->createLocation($delhi->id, 'Kirari Suleman Nagar', 'kirari-suleman-nagar', 'district', 'IN');
        $ndmc = $this->createLocation($delhi->id, 'NDMC', 'ndmc', 'district', 'IN');
        $karawalNagar = $this->createLocation($delhi->id, 'Karawal Nagar', 'karawal-nagar', 'district', 'IN');
        $nangloiJat = $this->createLocation($delhi->id, 'Nangloi Jat', 'nangloi-jat', 'district', 'IN');
        $bhalswaJahangirPur = $this->createLocation($delhi->id, 'Bhalswa Jahangir Pur', 'bhalswa-jahangir-pur', 'district', 'IN');
        $sultanPurMajra = $this->createLocation($delhi->id, 'Sultan Pur Majra', 'sultan-pur-majra', 'district', 'IN');
        $hastsal = $this->createLocation($delhi->id, 'Hastsal', 'hastsal', 'district', 'IN');
        $deoli = $this->createLocation($delhi->id, 'Deoli', 'deoli', 'district', 'IN');
        $dalloPura = $this->createLocation($delhi->id, 'Dallo Pura', 'dallo-pura', 'district', 'IN');
        $burari = $this->createLocation($delhi->id, 'Burari', 'burari', 'district', 'IN');
        $mustafabad = $this->createLocation($delhi->id, 'Mustafabad', 'mustafabad', 'district', 'IN');
        $gokalPur = $this->createLocation($delhi->id, 'Gokal Pur', 'gokal-pur', 'district', 'IN');
        $mandoli = $this->createLocation($delhi->id, 'Mandoli', 'mandoli', 'district', 'IN');
        $delhiCantonment = $this->createLocation($delhi->id, 'Delhi Cantonment', 'delhi-cantonment', 'district', 'IN');
        $sadatPurGujran = $this->createLocation($delhi->id, 'Sadat Pur Gujran', 'sadat-pur-gujran', 'district', 'IN');
        $poothKalan = $this->createLocation($delhi->id, 'Pooth Kalan', 'pooth-kalan', 'district', 'IN');
        $gharoli = $this->createLocation($delhi->id, 'Gharoli', 'gharoli', 'district', 'IN');
        $molarBand = $this->createLocation($delhi->id, 'Molar Band', 'molar-band', 'district', 'IN');
        $chillaSarodaBangar = $this->createLocation($delhi->id, 'Chilla Saroda Bangar', 'chilla-saroda-bangar', 'district', 'IN');
        $khajooriKhas = $this->createLocation($delhi->id, 'Khajoori Khas', 'khajoori-khas', 'district', 'IN');
        $kapasHera = $this->createLocation($delhi->id, 'Kapas Hera', 'kapas-hera', 'district', 'IN');
        $bawana = $this->createLocation($delhi->id, 'Bawana', 'bawana', 'district', 'IN');
        $mithePur = $this->createLocation($delhi->id, 'Mithe Pur', 'mithe-pur', 'district', 'IN');
        $pulPehlad = $this->createLocation($delhi->id, 'Pul Pehlad', 'pul-pehlad', 'district', 'IN');
        $ziauddinPur = $this->createLocation($delhi->id, 'Ziauddin Pur', 'ziauddin-pur', 'district', 'IN');
        $tajPul = $this->createLocation($delhi->id, 'Taj Pul', 'taj-pul', 'district', 'IN');
        $jaitPur = $this->createLocation($delhi->id, 'Jait Pur', 'jait-pur', 'district', 'IN');
        $roshanPura = $this->createLocation($delhi->id, 'Roshan Pura', 'roshan-pura', 'district', 'IN');
        $mukandPur = $this->createLocation($delhi->id, 'Mukand Pur', 'mukand-pur', 'district', 'IN');
        $sahibabadDaulatPur = $this->createLocation($delhi->id, 'Sahibabad Daulat Pur', 'sahibabad-daulat-pur', 'district', 'IN');
        $jaffrabad = $this->createLocation($delhi->id, 'Jaffrabad', 'jaffrabad', 'district', 'IN');
        $mundka = $this->createLocation($delhi->id, 'Mundka', 'mundka', 'district', 'IN');
        $begumPur = $this->createLocation($delhi->id, 'Begum Pur', 'begum-pur', 'district', 'IN');
        $bapraula = $this->createLocation($delhi->id, 'Bapraula', 'bapraula', 'district', 'IN');
        $nithari = $this->createLocation($delhi->id, 'Nithari', 'nithari', 'district', 'IN');
        $chattarPur = $this->createLocation($delhi->id, 'Chattar Pur', 'chattar-pur', 'district', 'IN');
        $libasPur = $this->createLocation($delhi->id, 'Libas Pur', 'libas-pur', 'district', 'IN');
        $nilothi = $this->createLocation($delhi->id, 'Nilothi', 'nilothi', 'district', 'IN');
        $kamalPurMajraBurari = $this->createLocation($delhi->id, 'Kamal Pur Majra Burari', 'kamal-pur-majra-burari', 'district', 'IN');
        $jiwanPur = $this->createLocation($delhi->id, 'Jiwan Pur', 'jiwan-pur', 'district', 'IN');
        $kondli = $this->createLocation($delhi->id, 'Kondli', 'kondli', 'district', 'IN');
        $gharondaNeemkaBangar = $this->createLocation($delhi->id, 'Gharonda Neemka Bangar', 'gharonda-neemka-bangar', 'district', 'IN');
        $nangliSakrawati = $this->createLocation($delhi->id, 'Nangli Sakrawati', 'nangli-sakrawati', 'district', 'IN');
        $babarPur = $this->createLocation($delhi->id, 'Babar Pur', 'babar-pur', 'district', 'IN');
        $karala = $this->createLocation($delhi->id, 'Karala', 'karala', 'district', 'IN');
        echo "Created All Delhi Districts \n";

        // Goa Districts
        $panaji = $this->createLocation($goa->id, 'Panaji', 'panaji', 'district', 'IN');
        $margao = $this->createLocation($goa->id, 'Margao', 'margao', 'district', 'IN');
        $mormugao = $this->createLocation($goa->id, 'Mormugao', 'mormugao', 'district', 'IN');
        $mapusa = $this->createLocation($goa->id, 'Mapusa', 'mapusa', 'district', 'IN');
        $curchoremCacora = $this->createLocation($goa->id, 'Curchorem-Cacora', 'curchorem-cacora', 'district', 'IN');
        $ponda = $this->createLocation($goa->id, 'Ponda', 'ponda', 'district', 'IN');
        $sancoale = $this->createLocation($goa->id, 'Sancoale', 'sancoale', 'district', 'IN');
        $bicholim = $this->createLocation($goa->id, 'Bicholim', 'bicholim', 'district', 'IN');
        echo "Created All Goa Districts \n";

        // Gujarat Districts
        $ahmedabad = $this->createLocation($gujarat->id, 'Ahmedabad', 'ahmedabad', 'district', 'IN');
        $surat = $this->createLocation($gujarat->id, 'Surat', 'surat', 'district', 'IN');
        $vadodara = $this->createLocation($gujarat->id, 'Vadodara', 'vadodara', 'district', 'IN');
        $rajkot = $this->createLocation($gujarat->id, 'Rajkot', 'rajkot', 'district', 'IN');
        $bhavnagar = $this->createLocation($gujarat->id, 'Bhavnagar', 'bhavnagar', 'district', 'IN');
        $jamnagar = $this->createLocation($gujarat->id, 'Jamnagar', 'jamnagar', 'district', 'IN');
        $junagadh = $this->createLocation($gujarat->id, 'Junagadh', 'junagadh', 'district', 'IN');
        $gandhinagar = $this->createLocation($gujarat->id, 'Gandhinagar', 'gandhinagar', 'district', 'IN');
        $anand = $this->createLocation($gujarat->id, 'Anand', 'anand', 'district', 'IN');
        $navsari = $this->createLocation($gujarat->id, 'Navsari', 'navsari', 'district', 'IN');
        $surendranagar = $this->createLocation($gujarat->id, 'Surendranagar', 'surendranagar', 'district', 'IN');
        $morbi = $this->createLocation($gujarat->id, 'Morbi', 'morbi', 'district', 'IN');
        $gandhidham = $this->createLocation($gujarat->id, 'Gandhidham', 'gandhidham', 'district', 'IN');
        $nadiad = $this->createLocation($gujarat->id, 'Nadiad', 'nadiad', 'district', 'IN');
        $bharuch = $this->createLocation($gujarat->id, 'Bharuch', 'bharuch', 'district', 'IN');
        $patan = $this->createLocation($gujarat->id, 'Patan', 'patan', 'district', 'IN');
        $porbandar = $this->createLocation($gujarat->id, 'Porbandar', 'porbandar', 'district', 'IN');
        $mehsana = $this->createLocation($gujarat->id, 'Mehsana', 'mehsana', 'district', 'IN');
        $bhuj = $this->createLocation($gujarat->id, 'Bhuj', 'bhuj', 'district', 'IN');
        $veraval = $this->createLocation($gujarat->id, 'Veraval', 'veraval', 'district', 'IN');
        $vapi = $this->createLocation($gujarat->id, 'Vapi', 'vapi', 'district', 'IN');
        $valsad = $this->createLocation($gujarat->id, 'Valsad', 'valsad', 'district', 'IN');
        $godhra = $this->createLocation($gujarat->id, 'Godhra', 'godhra', 'district', 'IN');
        $palanpur = $this->createLocation($gujarat->id, 'Palanpur', 'palanpur', 'district', 'IN');
        $himmatnagar = $this->createLocation($gujarat->id, 'Himmatnagar', 'himmatnagar', 'district', 'IN');
        $kalol = $this->createLocation($gujarat->id, 'Kalol', 'kalol', 'district', 'IN');
        $botad = $this->createLocation($gujarat->id, 'Botad', 'botad', 'district', 'IN');
        $amreli = $this->createLocation($gujarat->id, 'Amreli', 'amreli', 'district', 'IN');
        $gondal = $this->createLocation($gujarat->id, 'Gondal', 'gondal', 'district', 'IN');
        $jetpurNavagadh = $this->createLocation($gujarat->id, 'Jetpur Navagadh', 'jetpur-navagadh', 'district', 'IN');
        $dahod = $this->createLocation($gujarat->id, 'Dahod', 'dahod', 'district', 'IN');
        $deesa = $this->createLocation($gujarat->id, 'Deesa', 'deesa', 'district', 'IN');
        $ankleshwar = $this->createLocation($gujarat->id, 'Ankleshwar', 'ankleshwar', 'district', 'IN');
        $khambhat = $this->createLocation($gujarat->id, 'Khambhat', 'khambhat', 'district', 'IN');
        $dhoraji = $this->createLocation($gujarat->id, 'Dhoraji', 'dhoraji', 'district', 'IN');
        $mahuva = $this->createLocation($gujarat->id, 'Mahuva', 'mahuva', 'district', 'IN');
        $savarkundla = $this->createLocation($gujarat->id, 'Savarkundla', 'savarkundla', 'district', 'IN');
        $visnagar = $this->createLocation($gujarat->id, 'Visnagar', 'visnagar', 'district', 'IN');
        $dhrangadhra = $this->createLocation($gujarat->id, 'Dhrangadhra', 'dhrangadhra', 'district', 'IN');
        $anjar = $this->createLocation($gujarat->id, 'Anjar', 'anjar', 'district', 'IN');
        $bardoli = $this->createLocation($gujarat->id, 'Bardoli', 'bardoli', 'district', 'IN');
        $wadhwan = $this->createLocation($gujarat->id, 'Wadhwan', 'wadhwan', 'district', 'IN');
        $keshod = $this->createLocation($gujarat->id, 'Keshod', 'keshod', 'district', 'IN');
        $dholka = $this->createLocation($gujarat->id, 'Dholka', 'dholka', 'district', 'IN');
        $kadi = $this->createLocation($gujarat->id, 'Kadi', 'kadi', 'district', 'IN');
        $sidhpur = $this->createLocation($gujarat->id, 'Sidhpur', 'sidhpur', 'district', 'IN');
        $bilimora = $this->createLocation($gujarat->id, 'Bilimora', 'bilimora', 'district', 'IN');
        $borsad = $this->createLocation($gujarat->id, 'Borsad', 'borsad', 'district', 'IN');
        $mangrol = $this->createLocation($gujarat->id, 'Mangrol', 'mangrol', 'district', 'IN');
        $upleta = $this->createLocation($gujarat->id, 'Upleta', 'upleta', 'district', 'IN');
        $dabhoi = $this->createLocation($gujarat->id, 'Dabhoi', 'dabhoi', 'district', 'IN');
        $modasa = $this->createLocation($gujarat->id, 'Modasa', 'modasa', 'district', 'IN');
        $vijalpor = $this->createLocation($gujarat->id, 'Vijalpor', 'vijalpor', 'district', 'IN');
        $unjha = $this->createLocation($gujarat->id, 'Unjha', 'unjha', 'district', 'IN');
        $viramgam = $this->createLocation($gujarat->id, 'Viramgam', 'viramgam', 'district', 'IN');
        $palitana = $this->createLocation($gujarat->id, 'Palitana', 'palitana', 'district', 'IN');
        $una = $this->createLocation($gujarat->id, 'Una', 'una', 'district', 'IN');
        $petlad = $this->createLocation($gujarat->id, 'Petlad', 'petlad', 'district', 'IN');
        $mehmedabad = $this->createLocation($gujarat->id, 'Mehmedabad', 'mehmedabad', 'district', 'IN');
        $halol = $this->createLocation($gujarat->id, 'Halol', 'halol', 'district', 'IN');
        $sihor = $this->createLocation($gujarat->id, 'Sihor', 'sihor', 'district', 'IN');
        $wankaner = $this->createLocation($gujarat->id, 'Wankaner', 'wankaner', 'district', 'IN');
        $kapadvanj = $this->createLocation($gujarat->id, 'Kapadvanj', 'kapadvanj', 'district', 'IN');
        $mandvi = $this->createLocation($gujarat->id, 'Mandvi', 'mandvi', 'district', 'IN');
        $limbdi = $this->createLocation($gujarat->id, 'Limbdi', 'limbdi', 'district', 'IN');
        $jasdan = $this->createLocation($gujarat->id, 'Jasdan', 'jasdan', 'district', 'IN');
        $padra = $this->createLocation($gujarat->id, 'Padra', 'padra', 'district', 'IN');
        $jambusar = $this->createLocation($gujarat->id, 'Jambusar', 'jambusar', 'district', 'IN');
        $thaltej = $this->createLocation($gujarat->id, 'Thaltej', 'thaltej', 'district', 'IN');
        $vastral = $this->createLocation($gujarat->id, 'Vastral', 'vastral', 'district', 'IN');
        $dehgam = $this->createLocation($gujarat->id, 'Dehgam', 'dehgam', 'district', 'IN');
        $thangadh = $this->createLocation($gujarat->id, 'Thangadh', 'thangadh', 'district', 'IN');
        $khambhalia = $this->createLocation($gujarat->id, 'Khambhalia', 'khambhalia', 'district', 'IN');
        $vyara = $this->createLocation($gujarat->id, 'Vyara', 'vyara', 'district', 'IN');
        $rajpipla = $this->createLocation($gujarat->id, 'Rajpipla', 'rajpipla', 'district', 'IN');
        $balasinor = $this->createLocation($gujarat->id, 'Balasinor', 'balasinor', 'district', 'IN');
        $dwarka = $this->createLocation($gujarat->id, 'Dwarka', 'dwarka', 'district', 'IN');
        $lunawada = $this->createLocation($gujarat->id, 'Lunawada', 'lunawada', 'district', 'IN');
        $idar = $this->createLocation($gujarat->id, 'Idar', 'idar', 'district', 'IN');
        $kodinar = $this->createLocation($gujarat->id, 'Kodinar', 'kodinar', 'district', 'IN');
        echo "Created All Gujarat Districts \n";

        // Haryana Districts
        $faridabad = $this->createLocation($haryana->id, 'Faridabad', 'faridabad', 'district', 'IN');
        $gurugram = $this->createLocation($haryana->id, 'Gurugram', 'gurugram', 'district', 'IN');
        $rohtak = $this->createLocation($haryana->id, 'Rohtak', 'rohtak', 'district', 'IN');
        $hisar = $this->createLocation($haryana->id, 'Hisar', 'hisar', 'district', 'IN');
        $panipat = $this->createLocation($haryana->id, 'Panipat', 'panipat', 'district', 'IN');
        $karnal = $this->createLocation($haryana->id, 'Karnal', 'karnal', 'district', 'IN');
        $sonipat = $this->createLocation($haryana->id, 'Sonipat', 'sonipat', 'district', 'IN');
        $yamunanagar = $this->createLocation($haryana->id, 'Yamunanagar', 'yamunanagar', 'district', 'IN');
        $panchkula = $this->createLocation($haryana->id, 'Panchkula', 'panchkula', 'district', 'IN');
        $bhiwani = $this->createLocation($haryana->id, 'Bhiwani', 'bhiwani', 'district', 'IN');
        $ambala = $this->createLocation($haryana->id, 'Ambala', 'ambala', 'district', 'IN');
        $sirsa = $this->createLocation($haryana->id, 'Sirsa', 'sirsa', 'district', 'IN');
        $bahadurgarh = $this->createLocation($haryana->id, 'Bahadurgarh', 'bahadurgarh', 'district', 'IN');
        $jind = $this->createLocation($haryana->id, 'Jind', 'jind', 'district', 'IN');
        $thanesar = $this->createLocation($haryana->id, 'Thanesar', 'thanesar', 'district', 'IN');
        $kaithal = $this->createLocation($haryana->id, 'Kaithal', 'kaithal', 'district', 'IN');
        $rewari = $this->createLocation($haryana->id, 'Rewari', 'rewari', 'district', 'IN');
        $palwal = $this->createLocation($haryana->id, 'Palwal', 'palwal', 'district', 'IN');
        $jagadhri = $this->createLocation($haryana->id, 'Jagadhri', 'jagadhri', 'district', 'IN');
        $ambalaSadar = $this->createLocation($haryana->id, 'Ambala Sadar', 'ambala-sadar', 'district', 'IN');
        $hansi = $this->createLocation($haryana->id, 'Hansi', 'hansi', 'district', 'IN');
        $narnaul = $this->createLocation($haryana->id, 'Narnaul', 'narnaul', 'district', 'IN');
        $fatehabad = $this->createLocation($haryana->id, 'Fatehabad', 'fatehabad', 'district', 'IN');
        $mandiDabwali = $this->createLocation($haryana->id, 'Mandi Dabwali', 'mandi-dabwali', 'district', 'IN');
        $tohana = $this->createLocation($haryana->id, 'Tohana', 'tohana', 'district', 'IN');
        $narwana = $this->createLocation($haryana->id, 'Narwana', 'narwana', 'district', 'IN');
        $gohana = $this->createLocation($haryana->id, 'Gohana', 'gohana', 'district', 'IN');
        $charkhiDadri = $this->createLocation($haryana->id, 'Charkhi Dadri', 'charkhi-dadri', 'district', 'IN');
        $hodal = $this->createLocation($haryana->id, 'Hodal', 'hodal', 'district', 'IN');
        $gharaunda = $this->createLocation($haryana->id, 'Gharaunda', 'gharaunda', 'district', 'IN');
        $shahbad = $this->createLocation($haryana->id, 'Shahbad', 'shahbad', 'district', 'IN');
        $pehowa = $this->createLocation($haryana->id, 'Pehowa', 'pehowa', 'district', 'IN');
        $kalka = $this->createLocation($haryana->id, 'Kalka', 'kalka', 'district', 'IN');
        $samalkha = $this->createLocation($haryana->id, 'Samalkha', 'samalkha', 'district', 'IN');
        $pinjore = $this->createLocation($haryana->id, 'Pinjore', 'pinjore', 'district', 'IN');
        $dharuhera = $this->createLocation($haryana->id, 'Dharuhera', 'dharuhera', 'district', 'IN');
        $manesar = $this->createLocation($haryana->id, 'Manesar', 'manesar', 'district', 'IN');
        $sohna = $this->createLocation($haryana->id, 'Sohna', 'sohna', 'district', 'IN');
        $safidon = $this->createLocation($haryana->id, 'Safidon', 'safidon', 'district', 'IN');
        $cheeka = $this->createLocation($haryana->id, 'Cheeka', 'cheeka', 'district', 'IN');
        $mahendragarh = $this->createLocation($haryana->id, 'Mahendragarh', 'mahendragarh', 'district', 'IN');
        $ratia = $this->createLocation($haryana->id, 'Ratia', 'ratia', 'district', 'IN');
        $ganaur = $this->createLocation($haryana->id, 'Ganaur', 'ganaur', 'district', 'IN');
        $barwala = $this->createLocation($haryana->id, 'Barwala', 'barwala', 'district', 'IN');
        echo "Created All Haryana Districts \n";

        // Jammu and Kashmir Districts
        $srinagar = $this->createLocation($jammuKashmir->id, 'Srinagar', 'srinagar', 'district', 'IN');
        $jammu = $this->createLocation($jammuKashmir->id, 'Jammu', 'jammu', 'district', 'IN');
        $anantnag = $this->createLocation($jammuKashmir->id, 'Anantnag', 'anantnag', 'district', 'IN');
        $sopore = $this->createLocation($jammuKashmir->id, 'Sopore', 'sopore', 'district', 'IN');
        $baramulla = $this->createLocation($jammuKashmir->id, 'Baramulla', 'baramulla', 'district', 'IN');
        $kathua = $this->createLocation($jammuKashmir->id, 'Kathua', 'kathua', 'district', 'IN');
        $udhampur = $this->createLocation($jammuKashmir->id, 'Udhampur', 'udhampur', 'district', 'IN');
        $samba = $this->createLocation($jammuKashmir->id, 'Samba', 'samba', 'district', 'IN');
        $poonch = $this->createLocation($jammuKashmir->id, 'Poonch', 'poonch', 'district', 'IN');
        $rajouri = $this->createLocation($jammuKashmir->id, 'Rajouri', 'rajouri', 'district', 'IN');
        $katra = $this->createLocation($jammuKashmir->id, 'Katra', 'katra', 'district', 'IN');
        $bariBrahmana = $this->createLocation($jammuKashmir->id, 'Bari Brahmana', 'bari-brahmana', 'district', 'IN');
        $bandipora = $this->createLocation($jammuKashmir->id, 'Bandipora', 'bandipora', 'district', 'IN');
        $bijbehara = $this->createLocation($jammuKashmir->id, 'Bijbehara', 'bijbehara', 'district', 'IN');
        $pulwama = $this->createLocation($jammuKashmir->id, 'Pulwama', 'pulwama', 'district', 'IN');
        $doda = $this->createLocation($jammuKashmir->id, 'Doda', 'doda', 'district', 'IN');
        $kulgam = $this->createLocation($jammuKashmir->id, 'Kulgam', 'kulgam', 'district', 'IN');
        $shopian = $this->createLocation($jammuKashmir->id, 'Shopian', 'shopian', 'district', 'IN');
        $ganderbal = $this->createLocation($jammuKashmir->id, 'Ganderbal', 'ganderbal', 'district', 'IN');
        $kishtwar = $this->createLocation($jammuKashmir->id, 'Kishtwar', 'kishtwar', 'district', 'IN');
        echo "Created All Jammu and Kashmir Districts \n";

        // Jharkhand Districts
        $dhanbad = $this->createLocation($jharkhand->id, 'Dhanbad', 'dhanbad', 'district', 'IN');
        $ranchi = $this->createLocation($jharkhand->id, 'Ranchi', 'ranchi', 'district', 'IN');
        $jamshedpur = $this->createLocation($jharkhand->id, 'Jamshedpur', 'jamshedpur', 'district', 'IN');
        $bokaro = $this->createLocation($jharkhand->id, 'Bokaro', 'bokaro', 'district', 'IN');
        $mango = $this->createLocation($jharkhand->id, 'Mango', 'mango', 'district', 'IN');
        $deoghar = $this->createLocation($jharkhand->id, 'Deoghar', 'deoghar', 'district', 'IN');
        $adityapur = $this->createLocation($jharkhand->id, 'Adityapur', 'adityapur', 'district', 'IN');
        $hazaribagh = $this->createLocation($jharkhand->id, 'Hazaribagh', 'hazaribagh', 'district', 'IN');
        $chas = $this->createLocation($jharkhand->id, 'Chas', 'chas', 'district', 'IN');
        $giridih = $this->createLocation($jharkhand->id, 'Giridih', 'giridih', 'district', 'IN');
        $ramgarhCantonment = $this->createLocation($jharkhand->id, 'Ramgarh Cantonment', 'ramgarh-cantonment', 'district', 'IN');
        $medininagar = $this->createLocation($jharkhand->id, 'Medininagar', 'medininagar', 'district', 'IN');
        $bagbera = $this->createLocation($jharkhand->id, 'Bagbera', 'bagbera', 'district', 'IN');
        $sahibganj = $this->createLocation($jharkhand->id, 'Sahibganj', 'sahibganj', 'district', 'IN');
        $jhumriTilaiya = $this->createLocation($jharkhand->id, 'Jhumri Tilaiya', 'jhumri-tilaiya', 'district', 'IN');
        $phusro = $this->createLocation($jharkhand->id, 'Phusro', 'phusro', 'district', 'IN');
        $saunda = $this->createLocation($jharkhand->id, 'Saunda', 'saunda', 'district', 'IN');
        $gumla = $this->createLocation($jharkhand->id, 'Gumla', 'gumla', 'district', 'IN');
        $chaibasa = $this->createLocation($jharkhand->id, 'Chaibasa', 'chaibasa', 'district', 'IN');
        $lohardaga = $this->createLocation($jharkhand->id, 'Lohardaga', 'lohardaga', 'district', 'IN');
        $madhupur = $this->createLocation($jharkhand->id, 'Madhupur', 'madhupur', 'district', 'IN');
        $chirkunda = $this->createLocation($jharkhand->id, 'Chirkunda', 'chirkunda', 'district', 'IN');
        $bermo = $this->createLocation($jharkhand->id, 'Bermo', 'bermo', 'district', 'IN');
        $gumia = $this->createLocation($jharkhand->id, 'Gumia', 'gumia', 'district', 'IN');
        $dumka = $this->createLocation($jharkhand->id, 'Dumka', 'dumka', 'district', 'IN');
        $jugsalai = $this->createLocation($jharkhand->id, 'Jugsalai', 'jugsalai', 'district', 'IN');
        $chatra = $this->createLocation($jharkhand->id, 'Chatra', 'chatra', 'district', 'IN');
        $ghatshila = $this->createLocation($jharkhand->id, 'Ghatshila', 'ghatshila', 'district', 'IN');
        $katras = $this->createLocation($jharkhand->id, 'Katras', 'katras', 'district', 'IN');
        $garhwa = $this->createLocation($jharkhand->id, 'Garhwa', 'garhwa', 'district', 'IN');
        $pakaur = $this->createLocation($jharkhand->id, 'Pakaur', 'pakaur', 'district', 'IN');
        $simdega = $this->createLocation($jharkhand->id, 'Simdega', 'simdega', 'district', 'IN');
        $chakradharpur = $this->createLocation($jharkhand->id, 'Chakradharpur', 'chakradharpur', 'district', 'IN');
        $kuju = $this->createLocation($jharkhand->id, 'Kuju', 'kuju', 'district', 'IN');
        $bhusar = $this->createLocation($jharkhand->id, 'Bhusar', 'bhusar', 'district', 'IN');
        $patratu = $this->createLocation($jharkhand->id, 'Patratu', 'patratu', 'district', 'IN');
        $godda = $this->createLocation($jharkhand->id, 'Godda', 'godda', 'district', 'IN');
        $bhurkunda = $this->createLocation($jharkhand->id, 'Bhurkunda', 'bhurkunda', 'district', 'IN');
        $jamtara = $this->createLocation($jharkhand->id, 'Jamtara', 'jamtara', 'district', 'IN');
        $sindri = $this->createLocation($jharkhand->id, 'Sindri', 'sindri', 'district', 'IN');
        $mihijam = $this->createLocation($jharkhand->id, 'Mihijam', 'mihijam', 'district', 'IN');
        $bundu = $this->createLocation($jharkhand->id, 'Bundu', 'bundu', 'district', 'IN');
        $khunti = $this->createLocation($jharkhand->id, 'Khunti', 'khunti', 'district', 'IN');
        $basukinath = $this->createLocation($jharkhand->id, 'Basukinath', 'basukinath', 'district', 'IN');
        $rajmahal = $this->createLocation($jharkhand->id, 'Rajmahal', 'rajmahal', 'district', 'IN');
        $seraikela = $this->createLocation($jharkhand->id, 'Seraikela', 'seraikela', 'district', 'IN');
        $musabani = $this->createLocation($jharkhand->id, 'Musabani', 'musabani', 'district', 'IN');
        $noamundi = $this->createLocation($jharkhand->id, 'Noamundi', 'noamundi', 'district', 'IN');
        $barkakana = $this->createLocation($jharkhand->id, 'Barkakana', 'barkakana', 'district', 'IN');
        $gidi = $this->createLocation($jharkhand->id, 'Gidi', 'gidi', 'district', 'IN');
        $topchanchi = $this->createLocation($jharkhand->id, 'Topchanchi', 'topchanchi', 'district', 'IN');
        $panchet = $this->createLocation($jharkhand->id, 'Panchet', 'panchet', 'district', 'IN');
        $latehar = $this->createLocation($jharkhand->id, 'Latehar', 'latehar', 'district', 'IN');
        $bokaroThermal = $this->createLocation($jharkhand->id, 'Bokaro Thermal', 'bokaro-thermal', 'district', 'IN');
        $chandrapura = $this->createLocation($jharkhand->id, 'Chandrapura', 'chandrapura', 'district', 'IN');
        $nirsa = $this->createLocation($jharkhand->id, 'Nirsa', 'nirsa', 'district', 'IN');
        $hussainabad = $this->createLocation($jharkhand->id, 'Hussainabad', 'hussainabad', 'district', 'IN');
        $jhalida = $this->createLocation($jharkhand->id, 'Jhalida', 'jhalida', 'district', 'IN');
        $jasidih = $this->createLocation($jharkhand->id, 'Jasidih', 'jasidih', 'district', 'IN');
        $chakulia = $this->createLocation($jharkhand->id, 'Chakulia', 'chakulia', 'district', 'IN');
        echo "Created All Jharkhand Districts \n";

        // Karnataka Districts
        $bengaluru = $this->createLocation($karnataka->id, 'Bengaluru', 'bengaluru', 'district', 'IN');
        $hubballiDharwad = $this->createLocation($karnataka->id, 'Hubballi-Dharwad', 'hubballi-dharwad', 'district', 'IN');
        $mysuru = $this->createLocation($karnataka->id, 'Mysuru', 'mysuru', 'district', 'IN');
        $kalaburagi = $this->createLocation($karnataka->id, 'Kalaburagi', 'kalaburagi', 'district', 'IN');
        $mangaluru = $this->createLocation($karnataka->id, 'Mangaluru', 'mangaluru', 'district', 'IN');
        $belagavi = $this->createLocation($karnataka->id, 'Belagavi', 'belagavi', 'district', 'IN');
        $davanagere = $this->createLocation($karnataka->id, 'Davanagere', 'davanagere', 'district', 'IN');
        $ballari = $this->createLocation($karnataka->id, 'Ballari', 'ballari', 'district', 'IN');
        $vijayapura = $this->createLocation($karnataka->id, 'Vijayapura', 'vijayapura', 'district', 'IN');
        $shivamogga = $this->createLocation($karnataka->id, 'Shivamogga', 'shivamogga', 'district', 'IN');
        $tumakuru = $this->createLocation($karnataka->id, 'Tumakuru', 'tumakuru', 'district', 'IN');
        $raichur = $this->createLocation($karnataka->id, 'Raichur', 'raichur', 'district', 'IN');
        $bidar = $this->createLocation($karnataka->id, 'Bidar', 'bidar', 'district', 'IN');
        $udupi = $this->createLocation($karnataka->id, 'Udupi', 'udupi', 'district', 'IN');
        $hosapete = $this->createLocation($karnataka->id, 'Hosapete', 'hosapete', 'district', 'IN');
        $gadagBetageri = $this->createLocation($karnataka->id, 'Gadag-Betageri', 'gadag-betageri', 'district', 'IN');
        $robertsonpet = $this->createLocation($karnataka->id, 'Robertsonpet', 'robertsonpet', 'district', 'IN');
        $hassan = $this->createLocation($karnataka->id, 'Hassan', 'hassan', 'district', 'IN');
        $bhadravati = $this->createLocation($karnataka->id, 'Bhadravati', 'bhadravati', 'district', 'IN');
        $chitradurga = $this->createLocation($karnataka->id, 'Chitradurga', 'chitradurga', 'district', 'IN');
        $kolar = $this->createLocation($karnataka->id, 'Kolar', 'kolar', 'district', 'IN');
        $mandya = $this->createLocation($karnataka->id, 'Mandya', 'mandya', 'district', 'IN');
        $chikkamagaluru = $this->createLocation($karnataka->id, 'Chikkamagaluru', 'chikkamagaluru', 'district', 'IN');
        $gangavati = $this->createLocation($karnataka->id, 'Gangavati', 'gangavati', 'district', 'IN');
        $bagalkote = $this->createLocation($karnataka->id, 'Bagalkote', 'bagalkote', 'district', 'IN');
        $ranebennuru = $this->createLocation($karnataka->id, 'Ranebennuru', 'ranebennuru', 'district', 'IN');
        $arsikere = $this->createLocation($karnataka->id, 'Arsikere', 'arsikere', 'district', 'IN');
        $chikkaballapura = $this->createLocation($karnataka->id, 'Chikkaballapura', 'chikkaballapura', 'district', 'IN');
        $yadgir = $this->createLocation($karnataka->id, 'Yadgir', 'yadgir', 'district', 'IN');
        $sirsi = $this->createLocation($karnataka->id, 'Sirsi', 'sirsi', 'district', 'IN');
        $harihar = $this->createLocation($karnataka->id, 'Harihar', 'harihar', 'district', 'IN');
        $sindhnur = $this->createLocation($karnataka->id, 'Sindhnur', 'sindhnur', 'district', 'IN');
        $karwar = $this->createLocation($karnataka->id, 'Karwar', 'karwar', 'district', 'IN');
        $ullal = $this->createLocation($karnataka->id, 'Ullal', 'ullal', 'district', 'IN');
        $tiptur = $this->createLocation($karnataka->id, 'Tiptur', 'tiptur', 'district', 'IN');
        $channapatna = $this->createLocation($karnataka->id, 'Channapatna', 'channapatna', 'district', 'IN');
        $ramanagara = $this->createLocation($karnataka->id, 'Ramanagara', 'ramanagara', 'district', 'IN');
        $gokak = $this->createLocation($karnataka->id, 'Gokak', 'gokak', 'district', 'IN');
        $basavakalyan = $this->createLocation($karnataka->id, 'Basavakalyan', 'basavakalyan', 'district', 'IN');
        $rabkaviBanhatti = $this->createLocation($karnataka->id, 'Rabkavi Banhatti', 'rabkavi-banhatti', 'district', 'IN');
        $sagar = $this->createLocation($karnataka->id, 'Sagar', 'sagar', 'district', 'IN');
        $shahabad = $this->createLocation($karnataka->id, 'Shahabad', 'shahabad', 'district', 'IN');
        $dandeli = $this->createLocation($karnataka->id, 'Dandeli', 'dandeli', 'district', 'IN');
        $haveri = $this->createLocation($karnataka->id, 'Haveri', 'haveri', 'district', 'IN');
        $jamkhandi = $this->createLocation($karnataka->id, 'Jamkhandi', 'jamkhandi', 'district', 'IN');
        $shahpur = $this->createLocation($karnataka->id, 'Shahpur', 'shahpur', 'district', 'IN');
        $mudhol = $this->createLocation($karnataka->id, 'Mudhol', 'mudhol', 'district', 'IN');
        $lakshmeshwar = $this->createLocation($karnataka->id, 'Lakshmeshwar', 'lakshmeshwar', 'district', 'IN');
        $nipani = $this->createLocation($karnataka->id, 'Nipani', 'nipani', 'district', 'IN');
        $puttur = $this->createLocation($karnataka->id, 'Puttur', 'puttur', 'district', 'IN');
        $bhatkal = $this->createLocation($karnataka->id, 'Bhatkal', 'bhatkal', 'district', 'IN');
        $siruguppa = $this->createLocation($karnataka->id, 'Siruguppa', 'siruguppa', 'district', 'IN');
        $ilkal = $this->createLocation($karnataka->id, 'Ilkal', 'ilkal', 'district', 'IN');
        $mulbagal = $this->createLocation($karnataka->id, 'Mulbagal', 'mulbagal', 'district', 'IN');
        $harapanahalli = $this->createLocation($karnataka->id, 'Harapanahalli', 'harapanahalli', 'district', 'IN');
        $kampli = $this->createLocation($karnataka->id, 'Kampli', 'kampli', 'district', 'IN');
        $shorapur = $this->createLocation($karnataka->id, 'Shorapur', 'shorapur', 'district', 'IN');
        $athani = $this->createLocation($karnataka->id, 'Athani', 'athani', 'district', 'IN');
        $kollegal = $this->createLocation($karnataka->id, 'Kollegal', 'kollegal', 'district', 'IN');
        $kanakapura = $this->createLocation($karnataka->id, 'Kanakapura', 'kanakapura', 'district', 'IN');
        $magadi = $this->createLocation($karnataka->id, 'Magadi', 'magadi', 'district', 'IN');
        $sindgi = $this->createLocation($karnataka->id, 'Sindgi', 'sindgi', 'district', 'IN');
        $malur = $this->createLocation($karnataka->id, 'Malur', 'malur', 'district', 'IN');
        $kadur = $this->createLocation($karnataka->id, 'Kadur', 'kadur', 'district', 'IN');
        $muddebihal = $this->createLocation($karnataka->id, 'Muddebihal', 'muddebihal', 'district', 'IN');
        $humnabad = $this->createLocation($karnataka->id, 'Humnabad', 'humnabad', 'district', 'IN');
        $challakere = $this->createLocation($karnataka->id, 'Challakere', 'challakere', 'district', 'IN');
        $gauribidanur = $this->createLocation($karnataka->id, 'Gauribidanur', 'gauribidanur', 'district', 'IN');
        $sira = $this->createLocation($karnataka->id, 'Sira', 'sira', 'district', 'IN');
        $mundargi = $this->createLocation($karnataka->id, 'Mundargi', 'mundargi', 'district', 'IN');
        $chintamani = $this->createLocation($karnataka->id, 'Chintamani', 'chintamani', 'district', 'IN');
        $pavagada = $this->createLocation($karnataka->id, 'Pavagada', 'pavagada', 'district', 'IN');
        $aland = $this->createLocation($karnataka->id, 'Aland', 'aland', 'district', 'IN');
        $hungund = $this->createLocation($karnataka->id, 'Hungund', 'hungund', 'district', 'IN');
        $savadatti = $this->createLocation($karnataka->id, 'Savadatti', 'savadatti', 'district', 'IN');
        $nargund = $this->createLocation($karnataka->id, 'Nargund', 'nargund', 'district', 'IN');
        $koppal = $this->createLocation($karnataka->id, 'Koppal', 'koppal', 'district', 'IN');
        $manvi = $this->createLocation($karnataka->id, 'Manvi', 'manvi', 'district', 'IN');
        $yellapur = $this->createLocation($karnataka->id, 'Yellapur', 'yellapur', 'district', 'IN');
        $kumsi = $this->createLocation($karnataka->id, 'Kumsi', 'kumsi', 'district', 'IN');
        $bailhongal = $this->createLocation($karnataka->id, 'Bailhongal', 'bailhongal', 'district', 'IN');
        $hunsur = $this->createLocation($karnataka->id, 'Hunsur', 'hunsur', 'district', 'IN');
        $sandur = $this->createLocation($karnataka->id, 'Sandur', 'sandur', 'district', 'IN');
        $belur = $this->createLocation($karnataka->id, 'Belur', 'belur', 'district', 'IN');
        $tarikere = $this->createLocation($karnataka->id, 'Tarikere', 'tarikere', 'district', 'IN');
        $mudalgi = $this->createLocation($karnataka->id, 'Mudalgi', 'mudalgi', 'district', 'IN');
        $ron = $this->createLocation($karnataka->id, 'Ron', 'ron', 'district', 'IN');
        $sankeshwar = $this->createLocation($karnataka->id, 'Sankeshwar', 'sankeshwar', 'district', 'IN');
        $kudachi = $this->createLocation($karnataka->id, 'Kudachi', 'kudachi', 'district', 'IN');
        $mahalingpur = $this->createLocation($karnataka->id, 'Mahalingpur', 'mahalingpur', 'district', 'IN');
        $devadurga = $this->createLocation($karnataka->id, 'Devadurga', 'devadurga', 'district', 'IN');
        echo "Created All Karnataka Districts \n";

        // Kerala Districts
        $thiruvananthapuram = $this->createLocation($kerala->id, 'Thiruvananthapuram', 'thiruvananthapuram', 'district', 'IN');
        $kozhikode = $this->createLocation($kerala->id, 'Kozhikode', 'kozhikode', 'district', 'IN');
        $kochi = $this->createLocation($kerala->id, 'Kochi', 'kochi', 'district', 'IN');
        $kollam = $this->createLocation($kerala->id, 'Kollam', 'kollam', 'district', 'IN');
        $thrissur = $this->createLocation($kerala->id, 'Thrissur', 'thrissur', 'district', 'IN');
        $kannur = $this->createLocation($kerala->id, 'Kannur', 'kannur', 'district', 'IN');
        $alappuzha = $this->createLocation($kerala->id, 'Alappuzha', 'alappuzha', 'district', 'IN');
        $kottayam = $this->createLocation($kerala->id, 'Kottayam', 'kottayam', 'district', 'IN');
        $palakkad = $this->createLocation($kerala->id, 'Palakkad', 'palakkad', 'district', 'IN');
        $manjeri = $this->createLocation($kerala->id, 'Manjeri', 'manjeri', 'district', 'IN');
        $thalassery = $this->createLocation($kerala->id, 'Thalassery', 'thalassery', 'district', 'IN');
        $thrippunithura = $this->createLocation($kerala->id, 'Thrippunithura', 'thrippunithura', 'district', 'IN');
        $ponnani = $this->createLocation($kerala->id, 'Ponnani', 'ponnani', 'district', 'IN');
        $vatakara = $this->createLocation($kerala->id, 'Vatakara', 'vatakara', 'district', 'IN');
        $kanhangad = $this->createLocation($kerala->id, 'Kanhangad', 'kanhangad', 'district', 'IN');
        $payyanur = $this->createLocation($kerala->id, 'Payyanur', 'payyanur', 'district', 'IN');
        $koyilandy = $this->createLocation($kerala->id, 'Koyilandy', 'koyilandy', 'district', 'IN');
        $parappanangadi = $this->createLocation($kerala->id, 'Parappanangadi', 'parappanangadi', 'district', 'IN');
        $kalamassery = $this->createLocation($kerala->id, 'Kalamassery', 'kalamassery', 'district', 'IN');
        $kodungallur = $this->createLocation($kerala->id, 'Kodungallur', 'kodungallur', 'district', 'IN');
        $neyyattinkara = $this->createLocation($kerala->id, 'Neyyattinkara', 'neyyattinkara', 'district', 'IN');
        $tanur = $this->createLocation($kerala->id, 'Tanur', 'tanur', 'district', 'IN');
        $beypore = $this->createLocation($kerala->id, 'Beypore (CT)', 'beypore-(ct)', 'district', 'IN');
        $kayamkulam = $this->createLocation($kerala->id, 'Kayamkulam', 'kayamkulam', 'district', 'IN');
        $malappuram = $this->createLocation($kerala->id, 'Malappuram', 'malappuram', 'district', 'IN');
        $guruvayur = $this->createLocation($kerala->id, 'Guruvayur', 'guruvayur', 'district', 'IN');
        $thrikkakkara = $this->createLocation($kerala->id, 'Thrikkakkara', 'thrikkakkara', 'district', 'IN');
        $irinjalakuda = $this->createLocation($kerala->id, 'Irinjalakuda', 'irinjalakuda', 'district', 'IN');
        $wadakkancherry = $this->createLocation($kerala->id, 'Wadakkancherry', 'wadakkancherry', 'district', 'IN');
        $nedumangad = $this->createLocation($kerala->id, 'Nedumangad', 'nedumangad', 'district', 'IN');
        $kondotty = $this->createLocation($kerala->id, 'Kondotty', 'kondotty', 'district', 'IN');
        $tirurangadi = $this->createLocation($kerala->id, 'Tirurangadi', 'tirurangadi', 'district', 'IN');
        $tirur = $this->createLocation($kerala->id, 'Tirur', 'tirur', 'district', 'IN');
        $panoor = $this->createLocation($kerala->id, 'Panoor', 'panoor', 'district', 'IN');
        $kasaragod = $this->createLocation($kerala->id, 'Kasaragod', 'kasaragod', 'district', 'IN');
        $feroke = $this->createLocation($kerala->id, 'Feroke', 'feroke', 'district', 'IN');
        $kunnamkulam = $this->createLocation($kerala->id, 'Kunnamkulam', 'kunnamkulam', 'district', 'IN');
        $ottappalam = $this->createLocation($kerala->id, 'Ottappalam', 'ottappalam', 'district', 'IN');
        $thiruvalla = $this->createLocation($kerala->id, 'Thiruvalla', 'thiruvalla', 'district', 'IN');
        $thodupuzha = $this->createLocation($kerala->id, 'Thodupuzha', 'thodupuzha', 'district', 'IN');
        $ettumanoor = $this->createLocation($kerala->id, 'Ettumanoor', 'ettumanoor', 'district', 'IN');
        $perinthalmanna = $this->createLocation($kerala->id, 'Perinthalmanna', 'perinthalmanna', 'district', 'IN');
        $karunagappalli = $this->createLocation($kerala->id, 'Karunagappalli', 'karunagappalli', 'district', 'IN');
        $chalakudy = $this->createLocation($kerala->id, 'Chalakudy', 'chalakudy', 'district', 'IN');
        $payyoli = $this->createLocation($kerala->id, 'Payyoli', 'payyoli', 'district', 'IN');
        $koduvally = $this->createLocation($kerala->id, 'Koduvally', 'koduvally', 'district', 'IN');
        $mananthavady = $this->createLocation($kerala->id, 'Mananthavady', 'mananthavady', 'district', 'IN');
        $changanassery = $this->createLocation($kerala->id, 'Changanassery', 'changanassery', 'district', 'IN');
        $mattanur = $this->createLocation($kerala->id, 'Mattanur', 'mattanur', 'district', 'IN');
        $punalur = $this->createLocation($kerala->id, 'Punalur', 'punalur', 'district', 'IN');
        $nilambur = $this->createLocation($kerala->id, 'Nilambur', 'nilambur', 'district', 'IN');
        $cherthala = $this->createLocation($kerala->id, 'Cherthala', 'cherthala', 'district', 'IN');
        $sultanBathery = $this->createLocation($kerala->id, 'Sultan Bathery', 'sultan-bathery', 'district', 'IN');
        $maradu = $this->createLocation($kerala->id, 'Maradu', 'maradu', 'district', 'IN');
        $kottakkal = $this->createLocation($kerala->id, 'Kottakkal', 'kottakkal', 'district', 'IN');
        $taliparamba = $this->createLocation($kerala->id, 'Taliparamba', 'taliparamba', 'district', 'IN');
        $shornur = $this->createLocation($kerala->id, 'Shornur', 'shornur', 'district', 'IN');
        $pandalam = $this->createLocation($kerala->id, 'Pandalam', 'pandalam', 'district', 'IN');
        $kattappana = $this->createLocation($kerala->id, 'Kattappana', 'kattappana', 'district', 'IN');
        $cherpulassery = $this->createLocation($kerala->id, 'Cherpulassery', 'cherpulassery', 'district', 'IN');
        echo "Created All Kerala Districts \n";

        // Ladakh Districts
        $leh = $this->createLocation($ladakh->id, 'Leh', 'leh', 'district', 'IN');
        $kargil = $this->createLocation($ladakh->id, 'Kargil', 'kargil', 'district', 'IN');
        $choglamsar = $this->createLocation($ladakh->id, 'Choglamsar', 'choglamsar', 'district', 'IN');
        $drass = $this->createLocation($ladakh->id, 'Drass', 'drass', 'district', 'IN');
        $chemrey = $this->createLocation($ladakh->id, 'Chemrey', 'chemrey', 'district', 'IN');
        $spituk = $this->createLocation($ladakh->id, 'Spituk', 'spituk', 'district', 'IN');
        $thiksey = $this->createLocation($ladakh->id, 'Thiksey', 'thiksey', 'district', 'IN');
        $sankoo = $this->createLocation($ladakh->id, 'Sankoo', 'sankoo', 'district', 'IN');
        echo "Created All Ladakh Districts \n";

        // Lakshadweep Districts
        $kavaratti = $this->createLocation($lakshadweep->id, 'Kavaratti', 'kavaratti', 'district', 'IN');
        $andrott = $this->createLocation($lakshadweep->id, 'Andrott', 'andrott', 'district', 'IN');
        $minicoy = $this->createLocation($lakshadweep->id, 'Minicoy', 'minicoy', 'district', 'IN');
        $agatti = $this->createLocation($lakshadweep->id, 'Agatti', 'agatti', 'district', 'IN');
        $amini = $this->createLocation($lakshadweep->id, 'Amini', 'amini', 'district', 'IN');
        $kadmat = $this->createLocation($lakshadweep->id, 'Kadmat', 'kadmat', 'district', 'IN');
        echo "Created All Lakshadweep Districts \n";

        // Madhya Pradesh Districts
        $indore = $this->createLocation($madhyaPradesh->id, 'Indore', 'indore', 'district', 'IN');
        $bhopal = $this->createLocation($madhyaPradesh->id, 'Bhopal', 'bhopal', 'district', 'IN');
        $gwalior = $this->createLocation($madhyaPradesh->id, 'Gwalior', 'gwalior', 'district', 'IN');
        $jabalpur = $this->createLocation($madhyaPradesh->id, 'Jabalpur', 'jabalpur', 'district', 'IN');
        $ujjain = $this->createLocation($madhyaPradesh->id, 'Ujjain', 'ujjain', 'district', 'IN');
        $dewas = $this->createLocation($madhyaPradesh->id, 'Dewas', 'dewas', 'district', 'IN');
        $satna = $this->createLocation($madhyaPradesh->id, 'Satna', 'satna', 'district', 'IN');
        $sagar = $this->createLocation($madhyaPradesh->id, 'Sagar', 'sagar', 'district', 'IN');
        $ratlam = $this->createLocation($madhyaPradesh->id, 'Ratlam', 'ratlam', 'district', 'IN');
        $rewa = $this->createLocation($madhyaPradesh->id, 'Rewa', 'rewa', 'district', 'IN');
        $murwara = $this->createLocation($madhyaPradesh->id, 'Murwara', 'murwara', 'district', 'IN');
        $katni = $this->createLocation($madhyaPradesh->id, 'Katni', 'katni', 'district', 'IN');
        $singrauli = $this->createLocation($madhyaPradesh->id, 'Singrauli', 'singrauli', 'district', 'IN');
        $burhanpur = $this->createLocation($madhyaPradesh->id, 'Burhanpur', 'burhanpur', 'district', 'IN');
        $khandwa = $this->createLocation($madhyaPradesh->id, 'Khandwa', 'khandwa', 'district', 'IN');
        $morena = $this->createLocation($madhyaPradesh->id, 'Morena', 'morena', 'district', 'IN');
        $bhind = $this->createLocation($madhyaPradesh->id, 'Bhind', 'bhind', 'district', 'IN');
        $guna = $this->createLocation($madhyaPradesh->id, 'Guna', 'guna', 'district', 'IN');
        $shivpuri = $this->createLocation($madhyaPradesh->id, 'Shivpuri', 'shivpuri', 'district', 'IN');
        $vidisha = $this->createLocation($madhyaPradesh->id, 'Vidisha', 'vidisha', 'district', 'IN');
        $mandsaur = $this->createLocation($madhyaPradesh->id, 'Mandsaur', 'mandsaur', 'district', 'IN');
        $chhindwara = $this->createLocation($madhyaPradesh->id, 'Chhindwara', 'chhindwara', 'district', 'IN');
        $chhattarpur = $this->createLocation($madhyaPradesh->id, 'Chhattarpur', 'chhattarpur', 'district', 'IN');
        $neemuch = $this->createLocation($madhyaPradesh->id, 'Neemuch', 'neemuch', 'district', 'IN');
        $pithampur = $this->createLocation($madhyaPradesh->id, 'Pithampur', 'pithampur', 'district', 'IN');
        $damoh = $this->createLocation($madhyaPradesh->id, 'Damoh', 'damoh', 'district', 'IN');
        $hoshangabad = $this->createLocation($madhyaPradesh->id, 'Hoshangabad', 'hoshangabad', 'district', 'IN');
        $sehore = $this->createLocation($madhyaPradesh->id, 'Sehore', 'sehore', 'district', 'IN');
        $khargone = $this->createLocation($madhyaPradesh->id, 'Khargone', 'khargone', 'district', 'IN');
        $betul = $this->createLocation($madhyaPradesh->id, 'Betul', 'betul', 'district', 'IN');
        $seoni = $this->createLocation($madhyaPradesh->id, 'Seoni', 'seoni', 'district', 'IN');
        $datia = $this->createLocation($madhyaPradesh->id, 'Datia', 'datia', 'district', 'IN');
        $nagda = $this->createLocation($madhyaPradesh->id, 'Nagda', 'nagda', 'district', 'IN');
        $itarsi = $this->createLocation($madhyaPradesh->id, 'Itarsi', 'itarsi', 'district', 'IN');
        $dhar = $this->createLocation($madhyaPradesh->id, 'Dhar', 'dhar', 'district', 'IN');
        $shahdol = $this->createLocation($madhyaPradesh->id, 'Shahdol', 'shahdol', 'district', 'IN');
        $tikamgarh = $this->createLocation($madhyaPradesh->id, 'Tikamgarh', 'tikamgarh', 'district', 'IN');
        $balaghat = $this->createLocation($madhyaPradesh->id, 'Balaghat', 'balaghat', 'district', 'IN');
        $harda = $this->createLocation($madhyaPradesh->id, 'Harda', 'harda', 'district', 'IN');
        $dabra = $this->createLocation($madhyaPradesh->id, 'Dabra', 'dabra', 'district', 'IN');
        $shajapur = $this->createLocation($madhyaPradesh->id, 'Shajapur', 'shajapur', 'district', 'IN');
        $binaEtawa = $this->createLocation($madhyaPradesh->id, 'Bina-Etawa', 'bina-etawa', 'district', 'IN');
        $narsinghpur = $this->createLocation($madhyaPradesh->id, 'Narsinghpur', 'narsinghpur', 'district', 'IN');
        $sheopur = $this->createLocation($madhyaPradesh->id, 'Sheopur', 'sheopur', 'district', 'IN');
        $mandla = $this->createLocation($madhyaPradesh->id, 'Mandla', 'mandla', 'district', 'IN');
        $raisen = $this->createLocation($madhyaPradesh->id, 'Raisen', 'raisen', 'district', 'IN');
        $sarni = $this->createLocation($madhyaPradesh->id, 'Sarni', 'sarni', 'district', 'IN');
        $kolar = $this->createLocation($madhyaPradesh->id, 'Kolar', 'kolar', 'district', 'IN');
        $panna = $this->createLocation($madhyaPradesh->id, 'Panna', 'panna', 'district', 'IN');
        $amla = $this->createLocation($madhyaPradesh->id, 'Amla', 'amla', 'district', 'IN');
        $sidhi = $this->createLocation($madhyaPradesh->id, 'Sidhi', 'sidhi', 'district', 'IN');
        $ashoknagar = $this->createLocation($madhyaPradesh->id, 'Ashoknagar', 'ashoknagar', 'district', 'IN');
        $pipariya = $this->createLocation($madhyaPradesh->id, 'Pipariya', 'pipariya', 'district', 'IN');
        $raghogarhVijaypur = $this->createLocation($madhyaPradesh->id, 'Raghogarh-Vijaypur', 'raghogarh-vijaypur', 'district', 'IN');
        $sendhwa = $this->createLocation($madhyaPradesh->id, 'Sendhwa', 'sendhwa', 'district', 'IN');
        $anuppur = $this->createLocation($madhyaPradesh->id, 'Anuppur', 'anuppur', 'district', 'IN');
        $ambah = $this->createLocation($madhyaPradesh->id, 'Ambah', 'ambah', 'district', 'IN');
        $barwani = $this->createLocation($madhyaPradesh->id, 'Barwani', 'barwani', 'district', 'IN');
        $mhowCantonment = $this->createLocation($madhyaPradesh->id, 'Mhow Cantonment', 'mhow-cantonment', 'district', 'IN');
        $rajgarh = $this->createLocation($madhyaPradesh->id, 'Rajgarh', 'rajgarh', 'district', 'IN');
        $waidhan = $this->createLocation($madhyaPradesh->id, 'Waidhan', 'waidhan', 'district', 'IN');
        $gadarwara = $this->createLocation($madhyaPradesh->id, 'Gadarwara', 'gadarwara', 'district', 'IN');
        $basoda = $this->createLocation($madhyaPradesh->id, 'Basoda', 'basoda', 'district', 'IN');
        $barwaha = $this->createLocation($madhyaPradesh->id, 'Barwaha', 'barwaha', 'district', 'IN');
        $badnagar = $this->createLocation($madhyaPradesh->id, 'Badnagar', 'badnagar', 'district', 'IN');
        $biaora = $this->createLocation($madhyaPradesh->id, 'Biaora', 'biaora', 'district', 'IN');
        $agar = $this->createLocation($madhyaPradesh->id, 'Agar', 'agar', 'district', 'IN');
        $gohad = $this->createLocation($madhyaPradesh->id, 'Gohad', 'gohad', 'district', 'IN');
        $sarangpur = $this->createLocation($madhyaPradesh->id, 'Sarangpur', 'sarangpur', 'district', 'IN');
        $khurai = $this->createLocation($madhyaPradesh->id, 'Khurai', 'khurai', 'district', 'IN');
        $porsa = $this->createLocation($madhyaPradesh->id, 'Porsa', 'porsa', 'district', 'IN');
        $begamganj = $this->createLocation($madhyaPradesh->id, 'Begamganj', 'begamganj', 'district', 'IN');
        $berasia = $this->createLocation($madhyaPradesh->id, 'Berasia', 'berasia', 'district', 'IN');
        $nainpur = $this->createLocation($madhyaPradesh->id, 'Nainpur', 'nainpur', 'district', 'IN');
        $bamor = $this->createLocation($madhyaPradesh->id, 'Bamor', 'bamor', 'district', 'IN');
        $bijuri = $this->createLocation($madhyaPradesh->id, 'Bijuri', 'bijuri', 'district', 'IN');
        $dhamnod = $this->createLocation($madhyaPradesh->id, 'Dhamnod', 'dhamnod', 'district', 'IN');
        $garhakota = $this->createLocation($madhyaPradesh->id, 'Garhakota', 'garhakota', 'district', 'IN');
        $jhabua = $this->createLocation($madhyaPradesh->id, 'Jhabua', 'jhabua', 'district', 'IN');
        $maihar = $this->createLocation($madhyaPradesh->id, 'Maihar', 'maihar', 'district', 'IN');
        echo "Created All Madhya Pradesh Districts \n";

        // Maharashtra Districts
        $mumbai = $this->createLocation($maharashtra->id, 'Mumbai', 'mumbai', 'district', 'IN');
        $pune = $this->createLocation($maharashtra->id, 'Pune', 'pune', 'district', 'IN');
        $nagpur = $this->createLocation($maharashtra->id, 'Nagpur', 'nagpur', 'district', 'IN');
        $thane = $this->createLocation($maharashtra->id, 'Thane', 'thane', 'district', 'IN');
        $pimpriChinchwad = $this->createLocation($maharashtra->id, 'Pimpri-Chinchwad', 'pimpri-chinchwad', 'district', 'IN');
        $nashik = $this->createLocation($maharashtra->id, 'Nashik', 'nashik', 'district', 'IN');
        $kalyanDombivli = $this->createLocation($maharashtra->id, 'Kalyan-Dombivli', 'kalyan-dombivli', 'district', 'IN');
        $vasaiVirar = $this->createLocation($maharashtra->id, 'Vasai-Virar', 'vasai-virar', 'district', 'IN');
        $chhatrapatiSambhajinagar = $this->createLocation($maharashtra->id, 'Chhatrapati Sambhajinagar', 'chhatrapati-sambhajinagar', 'district', 'IN');
        $naviMumbai = $this->createLocation($maharashtra->id, 'Navi Mumbai', 'navi-mumbai', 'district', 'IN');
        $solapur = $this->createLocation($maharashtra->id, 'Solapur', 'solapur', 'district', 'IN');
        $miraBhayander = $this->createLocation($maharashtra->id, 'Mira-Bhayander', 'mira-bhayander', 'district', 'IN');
        $bhiwandiNizampur = $this->createLocation($maharashtra->id, 'Bhiwandi-Nizampur', 'bhiwandi-nizampur', 'district', 'IN');
        $amravati = $this->createLocation($maharashtra->id, 'Amravati', 'amravati', 'district', 'IN');
        $nandedWaghala = $this->createLocation($maharashtra->id, 'Nanded-Waghala', 'nanded-waghala', 'district', 'IN');
        $kolhapur = $this->createLocation($maharashtra->id, 'Kolhapur', 'kolhapur', 'district', 'IN');
        $ulhasnagar = $this->createLocation($maharashtra->id, 'Ulhasnagar', 'ulhasnagar', 'district', 'IN');
        $sangliMirajKupwad = $this->createLocation($maharashtra->id, 'Sangli-Miraj-Kupwad', 'sangli-miraj-kupwad', 'district', 'IN');
        $malegaon = $this->createLocation($maharashtra->id, 'Malegaon', 'malegaon', 'district', 'IN');
        $jalgaon = $this->createLocation($maharashtra->id, 'Jalgaon', 'jalgaon', 'district', 'IN');
        $akola = $this->createLocation($maharashtra->id, 'Akola', 'akola', 'district', 'IN');
        $latur = $this->createLocation($maharashtra->id, 'Latur', 'latur', 'district', 'IN');
        $dhule = $this->createLocation($maharashtra->id, 'Dhule', 'dhule', 'district', 'IN');
        $ahilyanagar = $this->createLocation($maharashtra->id, 'Ahilyanagar', 'ahilyanagar', 'district', 'IN');
        $chandrapur = $this->createLocation($maharashtra->id, 'Chandrapur', 'chandrapur', 'district', 'IN');
        $parbhani = $this->createLocation($maharashtra->id, 'Parbhani', 'parbhani', 'district', 'IN');
        $ichalkaranji = $this->createLocation($maharashtra->id, 'Ichalkaranji', 'ichalkaranji', 'district', 'IN');
        $jalna = $this->createLocation($maharashtra->id, 'Jalna', 'jalna', 'district', 'IN');
        $ambernath = $this->createLocation($maharashtra->id, 'Ambernath', 'ambernath', 'district', 'IN');
        $bhusawal = $this->createLocation($maharashtra->id, 'Bhusawal', 'bhusawal', 'district', 'IN');
        $panvel = $this->createLocation($maharashtra->id, 'Panvel', 'panvel', 'district', 'IN');
        $badlapur = $this->createLocation($maharashtra->id, 'Badlapur', 'badlapur', 'district', 'IN');
        $beed = $this->createLocation($maharashtra->id, 'Beed', 'beed', 'district', 'IN');
        $gondia = $this->createLocation($maharashtra->id, 'Gondia', 'gondia', 'district', 'IN');
        $satara = $this->createLocation($maharashtra->id, 'Satara', 'satara', 'district', 'IN');
        $barshi = $this->createLocation($maharashtra->id, 'Barshi', 'barshi', 'district', 'IN');
        $yavatmal = $this->createLocation($maharashtra->id, 'Yavatmal', 'yavatmal', 'district', 'IN');
        $achalpur = $this->createLocation($maharashtra->id, 'Achalpur', 'achalpur', 'district', 'IN');
        $dharashiv = $this->createLocation($maharashtra->id, 'Dharashiv', 'dharashiv', 'district', 'IN');
        $nandurbar = $this->createLocation($maharashtra->id, 'Nandurbar', 'nandurbar', 'district', 'IN');
        $wardha = $this->createLocation($maharashtra->id, 'Wardha', 'wardha', 'district', 'IN');
        $udgir = $this->createLocation($maharashtra->id, 'Udgir', 'udgir', 'district', 'IN');
        $hinganghat = $this->createLocation($maharashtra->id, 'Hinganghat', 'hinganghat', 'district', 'IN');
        $amalner = $this->createLocation($maharashtra->id, 'Amalner', 'amalner', 'district', 'IN');
        $akot = $this->createLocation($maharashtra->id, 'Akot', 'akot', 'district', 'IN');
        $pandharpur = $this->createLocation($maharashtra->id, 'Pandharpur', 'pandharpur', 'district', 'IN');
        $shrirampur = $this->createLocation($maharashtra->id, 'Shrirampur', 'shrirampur', 'district', 'IN');
        $parli = $this->createLocation($maharashtra->id, 'Parli', 'parli', 'district', 'IN');
        $khamgaon = $this->createLocation($maharashtra->id, 'Khamgaon', 'khamgaon', 'district', 'IN');
        $pusad = $this->createLocation($maharashtra->id, 'Pusad', 'pusad', 'district', 'IN');
        $ratnagiri = $this->createLocation($maharashtra->id, 'Ratnagiri', 'ratnagiri', 'district', 'IN');
        $hingoli = $this->createLocation($maharashtra->id, 'Hingoli', 'hingoli', 'district', 'IN');
        $manmad = $this->createLocation($maharashtra->id, 'Manmad', 'manmad', 'district', 'IN');
        $washim = $this->createLocation($maharashtra->id, 'Washim', 'washim', 'district', 'IN');
        $sangamner = $this->createLocation($maharashtra->id, 'Sangamner', 'sangamner', 'district', 'IN');
        $chalisgaon = $this->createLocation($maharashtra->id, 'Chalisgaon', 'chalisgaon', 'district', 'IN');
        $bhandara = $this->createLocation($maharashtra->id, 'Bhandara', 'bhandara', 'district', 'IN');
        $ballarpur = $this->createLocation($maharashtra->id, 'Ballarpur', 'ballarpur', 'district', 'IN');
        $uranIslampur = $this->createLocation($maharashtra->id, 'Uran Islampur', 'uran-islampur', 'district', 'IN');
        $kopargaon = $this->createLocation($maharashtra->id, 'Kopargaon', 'kopargaon', 'district', 'IN');
        $sinnar = $this->createLocation($maharashtra->id, 'Sinnar', 'sinnar', 'district', 'IN');
        $vaijapur = $this->createLocation($maharashtra->id, 'Vaijapur', 'vaijapur', 'district', 'IN');
        $shahada = $this->createLocation($maharashtra->id, 'Shahada', 'shahada', 'district', 'IN');
        $shegaon = $this->createLocation($maharashtra->id, 'Shegaon', 'shegaon', 'district', 'IN');
        $daryapurBanosa = $this->createLocation($maharashtra->id, 'Daryapur Banosa', 'daryapur-banosa', 'district', 'IN');
        $parola = $this->createLocation($maharashtra->id, 'Parola', 'parola', 'district', 'IN');
        $anjangaon = $this->createLocation($maharashtra->id, 'Anjangaon', 'anjangaon', 'district', 'IN');
        $paithan = $this->createLocation($maharashtra->id, 'Paithan', 'paithan', 'district', 'IN');
        $warora = $this->createLocation($maharashtra->id, 'Warora', 'warora', 'district', 'IN');
        $sailu = $this->createLocation($maharashtra->id, 'Sailu', 'sailu', 'district', 'IN');
        $pachora = $this->createLocation($maharashtra->id, 'Pachora', 'pachora', 'district', 'IN');
        $karanja = $this->createLocation($maharashtra->id, 'Karanja', 'karanja', 'district', 'IN');
        $murtijapur = $this->createLocation($maharashtra->id, 'Murtijapur', 'murtijapur', 'district', 'IN');
        $basmath = $this->createLocation($maharashtra->id, 'Basmath', 'basmath', 'district', 'IN');
        $kagal = $this->createLocation($maharashtra->id, 'Kagal', 'kagal', 'district', 'IN');
        $nilanga = $this->createLocation($maharashtra->id, 'Nilanga', 'nilanga', 'district', 'IN');
        $pulgaon = $this->createLocation($maharashtra->id, 'Pulgaon', 'pulgaon', 'district', 'IN');
        $yeola = $this->createLocation($maharashtra->id, 'Yeola', 'yeola', 'district', 'IN');
        $jaysingpur = $this->createLocation($maharashtra->id, 'Jaysingpur', 'jaysingpur', 'district', 'IN');
        $yawal = $this->createLocation($maharashtra->id, 'Yawal', 'yawal', 'district', 'IN');
        $dondaichaWarwade = $this->createLocation($maharashtra->id, 'Dondaicha-Warwade', 'dondaicha-warwade', 'district', 'IN');
        $tuljapur = $this->createLocation($maharashtra->id, 'Tuljapur', 'tuljapur', 'district', 'IN');
        $tumsar = $this->createLocation($maharashtra->id, 'Tumsar', 'tumsar', 'district', 'IN');
        $shirpurWarwade = $this->createLocation($maharashtra->id, 'Shirpur-Warwade', 'shirpur-warwade', 'district', 'IN');
        $ahmadpur = $this->createLocation($maharashtra->id, 'Ahmadpur', 'ahmadpur', 'district', 'IN');
        $arvi = $this->createLocation($maharashtra->id, 'Arvi', 'arvi', 'district', 'IN');
        $morshi = $this->createLocation($maharashtra->id, 'Morshi', 'morshi', 'district', 'IN');
        $deglur = $this->createLocation($maharashtra->id, 'Deglur', 'deglur', 'district', 'IN');
        $sillod = $this->createLocation($maharashtra->id, 'Sillod', 'sillod', 'district', 'IN');
        $pathri = $this->createLocation($maharashtra->id, 'Pathri', 'pathri', 'district', 'IN');
        $manjlegaon = $this->createLocation($maharashtra->id, 'Manjlegaon', 'manjlegaon', 'district', 'IN');
        $rahuri = $this->createLocation($maharashtra->id, 'Rahuri', 'rahuri', 'district', 'IN');
        $warud = $this->createLocation($maharashtra->id, 'Warud', 'warud', 'district', 'IN');
        $georai = $this->createLocation($maharashtra->id, 'Georai', 'georai', 'district', 'IN');
        $akkalkot = $this->createLocation($maharashtra->id, 'Akkalkot', 'akkalkot', 'district', 'IN');
        $rajura = $this->createLocation($maharashtra->id, 'Rajura', 'rajura', 'district', 'IN');
        $malkapur = $this->createLocation($maharashtra->id, 'Malkapur', 'malkapur', 'district', 'IN');
        $igatpuri = $this->createLocation($maharashtra->id, 'Igatpuri', 'igatpuri', 'district', 'IN');
        $katol = $this->createLocation($maharashtra->id, 'Katol', 'katol', 'district', 'IN');
        echo "Created All Maharashtra Districts \n";

        // Manipur Districts
        $imphal = $this->createLocation($manipur->id, 'Imphal', 'imphal', 'district', 'IN');
        $thoubal = $this->createLocation($manipur->id, 'Thoubal', 'thoubal', 'district', 'IN');
        $chakpikarong = $this->createLocation($manipur->id, 'Chakpikarong', 'chakpikarong', 'district', 'IN');
        $kakching = $this->createLocation($manipur->id, 'Kakching', 'kakching', 'district', 'IN');
        $churachandpur = $this->createLocation($manipur->id, 'Churachandpur', 'churachandpur', 'district', 'IN');
        $lilong = $this->createLocation($manipur->id, 'Lilong', 'lilong', 'district', 'IN');
        echo "Created All Manipur Districts \n";

        // Meghalaya Districts
        $shillong = $this->createLocation($meghalaya->id, 'Shillong', 'shillong', 'district', 'IN');
        $tura = $this->createLocation($meghalaya->id, 'Tura', 'tura', 'district', 'IN');
        $mawlai = $this->createLocation($meghalaya->id, 'Mawlai', 'mawlai', 'district', 'IN');
        echo "Created All Meghalaya Districts \n";

        // Mizoram Districts
        $aizawl = $this->createLocation($mizoram->id, 'Aizawl', 'aizawl', 'district', 'IN');
        $lunglei = $this->createLocation($mizoram->id, 'Lunglei', 'lunglei', 'district', 'IN');
        $champhai = $this->createLocation($mizoram->id, 'Champhai', 'champhai', 'district', 'IN');
        echo "Created All Mizoram Districts \n";

        // Nagaland Districts
        $dimapur = $this->createLocation($nagaland->id, 'Dimapur', 'dimapur', 'district', 'IN');
        $kohima = $this->createLocation($nagaland->id, 'Kohima', 'kohima', 'district', 'IN');
        $mokokchung = $this->createLocation($nagaland->id, 'Mokokchung', 'mokokchung', 'district', 'IN');
        $tuensang = $this->createLocation($nagaland->id, 'Tuensang', 'tuensang', 'district', 'IN');
        $wokha = $this->createLocation($nagaland->id, 'Wokha', 'wokha', 'district', 'IN');
        $zunheboto = $this->createLocation($nagaland->id, 'Zunheboto', 'zunheboto', 'district', 'IN');
        $mon = $this->createLocation($nagaland->id, 'Mon', 'mon', 'district', 'IN');
        $chümoukedima = $this->createLocation($nagaland->id, 'Chümoukedima', 'chümoukedima', 'district', 'IN');
        echo "Created All Nagaland Districts \n";

        // Odisha Districts
        $bhubaneswar = $this->createLocation($odisha->id, 'Bhubaneswar', 'bhubaneswar', 'district', 'IN');
        $cuttack = $this->createLocation($odisha->id, 'Cuttack', 'cuttack', 'district', 'IN');
        $rourkela = $this->createLocation($odisha->id, 'Rourkela', 'rourkela', 'district', 'IN');
        $brahmapur = $this->createLocation($odisha->id, 'Brahmapur', 'brahmapur', 'district', 'IN');
        $sambalpur = $this->createLocation($odisha->id, 'Sambalpur', 'sambalpur', 'district', 'IN');
        $puri = $this->createLocation($odisha->id, 'Puri', 'puri', 'district', 'IN');
        $baleshwar = $this->createLocation($odisha->id, 'Baleshwar', 'baleshwar', 'district', 'IN');
        $balasore = $this->createLocation($odisha->id, 'Balasore', 'balasore', 'district', 'IN');
        $bhadrak = $this->createLocation($odisha->id, 'Bhadrak', 'bhadrak', 'district', 'IN');
        $baripada = $this->createLocation($odisha->id, 'Baripada', 'baripada', 'district', 'IN');
        $jharsuguda = $this->createLocation($odisha->id, 'Jharsuguda', 'jharsuguda', 'district', 'IN');
        $balangir = $this->createLocation($odisha->id, 'Balangir', 'balangir', 'district', 'IN');
        $jeypore = $this->createLocation($odisha->id, 'Jeypore', 'jeypore', 'district', 'IN');
        $bargarh = $this->createLocation($odisha->id, 'Bargarh', 'bargarh', 'district', 'IN');
        $brajarajnagar = $this->createLocation($odisha->id, 'Brajarajnagar', 'brajarajnagar', 'district', 'IN');
        $rayagada = $this->createLocation($odisha->id, 'Rayagada', 'rayagada', 'district', 'IN');
        $bhawanipatna = $this->createLocation($odisha->id, 'Bhawanipatna', 'bhawanipatna', 'district', 'IN');
        $paradeep = $this->createLocation($odisha->id, 'Paradeep', 'paradeep', 'district', 'IN');
        $dhenkanal = $this->createLocation($odisha->id, 'Dhenkanal', 'dhenkanal', 'district', 'IN');
        $barbil = $this->createLocation($odisha->id, 'Barbil', 'barbil', 'district', 'IN');
        $jatani = $this->createLocation($odisha->id, 'Jatani', 'jatani', 'district', 'IN');
        $kendujhar = $this->createLocation($odisha->id, 'Kendujhar', 'kendujhar', 'district', 'IN');
        $sunabeda = $this->createLocation($odisha->id, 'Sunabeda', 'sunabeda', 'district', 'IN');
        $byasanagar = $this->createLocation($odisha->id, 'Byasanagar', 'byasanagar', 'district', 'IN');
        $rajgangpur = $this->createLocation($odisha->id, 'Rajgangpur', 'rajgangpur', 'district', 'IN');
        $kendrapara = $this->createLocation($odisha->id, 'Kendrapara', 'kendrapara', 'district', 'IN');
        $joda = $this->createLocation($odisha->id, 'Joda', 'joda', 'district', 'IN');
        $parlakhemundi = $this->createLocation($odisha->id, 'Parlakhemundi', 'parlakhemundi', 'district', 'IN');
        $khurda = $this->createLocation($odisha->id, 'Khurda', 'khurda', 'district', 'IN');
        $angul = $this->createLocation($odisha->id, 'Angul', 'angul', 'district', 'IN');
        $talcher = $this->createLocation($odisha->id, 'Talcher', 'talcher', 'district', 'IN');
        $anandapur = $this->createLocation($odisha->id, 'Anandapur', 'anandapur', 'district', 'IN');
        $belpahar = $this->createLocation($odisha->id, 'Belpahar', 'belpahar', 'district', 'IN');
        $nowrangapur = $this->createLocation($odisha->id, 'Nowrangapur', 'nowrangapur', 'district', 'IN');
        $phulbani = $this->createLocation($odisha->id, 'Phulbani', 'phulbani', 'district', 'IN');
        $pattamundai = $this->createLocation($odisha->id, 'Pattamundai', 'pattamundai', 'district', 'IN');
        $rairangpur = $this->createLocation($odisha->id, 'Rairangpur', 'rairangpur', 'district', 'IN');
        $basudebpur = $this->createLocation($odisha->id, 'Basudebpur', 'basudebpur', 'district', 'IN');
        $jagatsinghapur = $this->createLocation($odisha->id, 'Jagatsinghapur', 'jagatsinghapur', 'district', 'IN');
        $birmitrapur = $this->createLocation($odisha->id, 'Birmitrapur', 'birmitrapur', 'district', 'IN');
        $malkangiri = $this->createLocation($odisha->id, 'Malkangiri', 'malkangiri', 'district', 'IN');
        echo "Created All Odisha Districts \n";

        // Puducherry Districts
        $ozhukarai = $this->createLocation($puducherry->id, 'Ozhukarai', 'ozhukarai', 'district', 'IN');
        $karaikal = $this->createLocation($puducherry->id, 'Karaikal', 'karaikal', 'district', 'IN');
        $yanam = $this->createLocation($puducherry->id, 'Yanam', 'yanam', 'district', 'IN');
        $mahe = $this->createLocation($puducherry->id, 'Mahe', 'mahe', 'district', 'IN');
        $villianur = $this->createLocation($puducherry->id, 'Villianur', 'villianur', 'district', 'IN');
        $kurumbapet = $this->createLocation($puducherry->id, 'Kurumbapet', 'kurumbapet', 'district', 'IN');
        $ariankuppam = $this->createLocation($puducherry->id, 'Ariankuppam', 'ariankuppam', 'district', 'IN');
        $manavely = $this->createLocation($puducherry->id, 'Manavely', 'manavely', 'district', 'IN');
        echo "Created All Puducherry Districts \n";

        // Punjab Districts
        $ludhiana = $this->createLocation($punjab->id, 'Ludhiana', 'ludhiana', 'district', 'IN');
        $amritsar = $this->createLocation($punjab->id, 'Amritsar', 'amritsar', 'district', 'IN');
        $jalandhar = $this->createLocation($punjab->id, 'Jalandhar', 'jalandhar', 'district', 'IN');
        $patiala = $this->createLocation($punjab->id, 'Patiala', 'patiala', 'district', 'IN');
        $bathinda = $this->createLocation($punjab->id, 'Bathinda', 'bathinda', 'district', 'IN');
        $sasNagar = $this->createLocation($punjab->id, 'S.A.S. Nagar', 'sas-nagar', 'district', 'IN');
        $hoshiarpur = $this->createLocation($punjab->id, 'Hoshiarpur', 'hoshiarpur', 'district', 'IN');
        $moga = $this->createLocation($punjab->id, 'Moga', 'moga', 'district', 'IN');
        $pathankot = $this->createLocation($punjab->id, 'Pathankot', 'pathankot', 'district', 'IN');
        $batala = $this->createLocation($punjab->id, 'Batala', 'batala', 'district', 'IN');
        $abohar = $this->createLocation($punjab->id, 'Abohar', 'abohar', 'district', 'IN');
        $malerkotla = $this->createLocation($punjab->id, 'Malerkotla', 'malerkotla', 'district', 'IN');
        $khanna = $this->createLocation($punjab->id, 'Khanna', 'khanna', 'district', 'IN');
        $phagwara = $this->createLocation($punjab->id, 'Phagwara', 'phagwara', 'district', 'IN');
        $muktsar = $this->createLocation($punjab->id, 'Muktsar', 'muktsar', 'district', 'IN');
        $barnala = $this->createLocation($punjab->id, 'Barnala', 'barnala', 'district', 'IN');
        $rajpura = $this->createLocation($punjab->id, 'Rajpura', 'rajpura', 'district', 'IN');
        $firozpur = $this->createLocation($punjab->id, 'Firozpur', 'firozpur', 'district', 'IN');
        $kapurthala = $this->createLocation($punjab->id, 'Kapurthala', 'kapurthala', 'district', 'IN');
        $sunam = $this->createLocation($punjab->id, 'Sunam', 'sunam', 'district', 'IN');
        $faridkot = $this->createLocation($punjab->id, 'Faridkot', 'faridkot', 'district', 'IN');
        $kotKapura = $this->createLocation($punjab->id, 'Kot Kapura', 'kot-kapura', 'district', 'IN');
        $mansa = $this->createLocation($punjab->id, 'Mansa', 'mansa', 'district', 'IN');
        $gobindgarh = $this->createLocation($punjab->id, 'Gobindgarh', 'gobindgarh', 'district', 'IN');
        $malout = $this->createLocation($punjab->id, 'Malout', 'malout', 'district', 'IN');
        $fazilka = $this->createLocation($punjab->id, 'Fazilka', 'fazilka', 'district', 'IN');
        $nabha = $this->createLocation($punjab->id, 'Nabha', 'nabha', 'district', 'IN');
        $sangrur = $this->createLocation($punjab->id, 'Sangrur', 'sangrur', 'district', 'IN');
        $kharar = $this->createLocation($punjab->id, 'Kharar', 'kharar', 'district', 'IN');
        $tarnTaran = $this->createLocation($punjab->id, 'Tarn Taran', 'tarn-taran', 'district', 'IN');
        $jagraon = $this->createLocation($punjab->id, 'Jagraon', 'jagraon', 'district', 'IN');
        $gurdaspur = $this->createLocation($punjab->id, 'Gurdaspur', 'gurdaspur', 'district', 'IN');
        $nangal = $this->createLocation($punjab->id, 'Nangal', 'nangal', 'district', 'IN');
        $samana = $this->createLocation($punjab->id, 'Samana', 'samana', 'district', 'IN');
        $zirakpur = $this->createLocation($punjab->id, 'Zirakpur', 'zirakpur', 'district', 'IN');
        $dhuri = $this->createLocation($punjab->id, 'Dhuri', 'dhuri', 'district', 'IN');
        $patti = $this->createLocation($punjab->id, 'Patti', 'patti', 'district', 'IN');
        $fatehgarhSahib = $this->createLocation($punjab->id, 'Fatehgarh Sahib', 'fatehgarh-sahib', 'district', 'IN');
        $jalalabad = $this->createLocation($punjab->id, 'Jalalabad', 'jalalabad', 'district', 'IN');
        $nawanshahr = $this->createLocation($punjab->id, 'Nawanshahr', 'nawanshahr', 'district', 'IN');
        $rupnagar = $this->createLocation($punjab->id, 'Rupnagar', 'rupnagar', 'district', 'IN');
        $ahmedgarh = $this->createLocation($punjab->id, 'Ahmedgarh', 'ahmedgarh', 'district', 'IN');
        $raikot = $this->createLocation($punjab->id, 'Raikot', 'raikot', 'district', 'IN');
        $banga = $this->createLocation($punjab->id, 'Banga', 'banga', 'district', 'IN');
        $kurali = $this->createLocation($punjab->id, 'Kurali', 'kurali', 'district', 'IN');
        echo "Created All Punjab Districts \n";

        // Rajasthan Districts
        $jaipur = $this->createLocation($rajasthan->id, 'Jaipur', 'jaipur', 'district', 'IN');
        $jodhpur = $this->createLocation($rajasthan->id, 'Jodhpur', 'jodhpur', 'district', 'IN');
        $kota = $this->createLocation($rajasthan->id, 'Kota', 'kota', 'district', 'IN');
        $bikaner = $this->createLocation($rajasthan->id, 'Bikaner', 'bikaner', 'district', 'IN');
        $ajmer = $this->createLocation($rajasthan->id, 'Ajmer', 'ajmer', 'district', 'IN');
        $udaipur = $this->createLocation($rajasthan->id, 'Udaipur', 'udaipur', 'district', 'IN');
        $bhilwara = $this->createLocation($rajasthan->id, 'Bhilwara', 'bhilwara', 'district', 'IN');
        $alwar = $this->createLocation($rajasthan->id, 'Alwar', 'alwar', 'district', 'IN');
        $bhiwadi = $this->createLocation($rajasthan->id, 'Bhiwadi', 'bhiwadi', 'district', 'IN');
        $bharatpur = $this->createLocation($rajasthan->id, 'Bharatpur', 'bharatpur', 'district', 'IN');
        $sikar = $this->createLocation($rajasthan->id, 'Sikar', 'sikar', 'district', 'IN');
        $sriGanganagar = $this->createLocation($rajasthan->id, 'Sri Ganganagar', 'sri-ganganagar', 'district', 'IN');
        $pali = $this->createLocation($rajasthan->id, 'Pali', 'pali', 'district', 'IN');
        $churu = $this->createLocation($rajasthan->id, 'Churu', 'churu', 'district', 'IN');
        $beawar = $this->createLocation($rajasthan->id, 'Beawar', 'beawar', 'district', 'IN');
        $hanumangarh = $this->createLocation($rajasthan->id, 'Hanumangarh', 'hanumangarh', 'district', 'IN');
        $tonk = $this->createLocation($rajasthan->id, 'Tonk', 'tonk', 'district', 'IN');
        $kishangarh = $this->createLocation($rajasthan->id, 'Kishangarh', 'kishangarh', 'district', 'IN');
        $baran = $this->createLocation($rajasthan->id, 'Baran', 'baran', 'district', 'IN');
        $dhaulpur = $this->createLocation($rajasthan->id, 'Dhaulpur', 'dhaulpur', 'district', 'IN');
        $hindaun = $this->createLocation($rajasthan->id, 'Hindaun', 'hindaun', 'district', 'IN');
        $nagaur = $this->createLocation($rajasthan->id, 'Nagaur', 'nagaur', 'district', 'IN');
        $sawaiMadhopur = $this->createLocation($rajasthan->id, 'Sawai Madhopur', 'sawai-madhopur', 'district', 'IN');
        $banswara = $this->createLocation($rajasthan->id, 'Banswara', 'banswara', 'district', 'IN');
        $jhunjhunu = $this->createLocation($rajasthan->id, 'Jhunjhunu', 'jhunjhunu', 'district', 'IN');
        $barmer = $this->createLocation($rajasthan->id, 'Barmer', 'barmer', 'district', 'IN');
        $sujangarh = $this->createLocation($rajasthan->id, 'Sujangarh', 'sujangarh', 'district', 'IN');
        $makrana = $this->createLocation($rajasthan->id, 'Makrana', 'makrana', 'district', 'IN');
        $gangapur = $this->createLocation($rajasthan->id, 'Gangapur', 'gangapur', 'district', 'IN');
        $fatehpur = $this->createLocation($rajasthan->id, 'Fatehpur', 'fatehpur', 'district', 'IN');
        $chittorgarh = $this->createLocation($rajasthan->id, 'Chittorgarh', 'chittorgarh', 'district', 'IN');
        $sardarshahar = $this->createLocation($rajasthan->id, 'Sardarshahar', 'sardarshahar', 'district', 'IN');
        $bundi = $this->createLocation($rajasthan->id, 'Bundi', 'bundi', 'district', 'IN');
        $ratangarh = $this->createLocation($rajasthan->id, 'Ratangarh', 'ratangarh', 'district', 'IN');
        $balotra = $this->createLocation($rajasthan->id, 'Balotra', 'balotra', 'district', 'IN');
        $nawalgarh = $this->createLocation($rajasthan->id, 'Nawalgarh', 'nawalgarh', 'district', 'IN');
        $jhalawar = $this->createLocation($rajasthan->id, 'Jhalawar', 'jhalawar', 'district', 'IN');
        $kuchaman = $this->createLocation($rajasthan->id, 'Kuchaman', 'kuchaman', 'district', 'IN');
        $jaisalmer = $this->createLocation($rajasthan->id, 'Jaisalmer', 'jaisalmer', 'district', 'IN');
        $dausa = $this->createLocation($rajasthan->id, 'Dausa', 'dausa', 'district', 'IN');
        $nimbahera = $this->createLocation($rajasthan->id, 'Nimbahera', 'nimbahera', 'district', 'IN');
        $karauli = $this->createLocation($rajasthan->id, 'Karauli', 'karauli', 'district', 'IN');
        $suratgarh = $this->createLocation($rajasthan->id, 'Suratgarh', 'suratgarh', 'district', 'IN');
        $bari = $this->createLocation($rajasthan->id, 'Bari', 'bari', 'district', 'IN');
        $lachhmangarh = $this->createLocation($rajasthan->id, 'Lachhmangarh', 'lachhmangarh', 'district', 'IN');
        $rajgarh = $this->createLocation($rajasthan->id, 'Rajgarh', 'rajgarh', 'district', 'IN');
        $ladnun = $this->createLocation($rajasthan->id, 'Ladnun', 'ladnun', 'district', 'IN');
        $nokha = $this->createLocation($rajasthan->id, 'Nokha', 'nokha', 'district', 'IN');
        $merta = $this->createLocation($rajasthan->id, 'Merta', 'merta', 'district', 'IN');
        $didwana = $this->createLocation($rajasthan->id, 'Didwana', 'didwana', 'district', 'IN');
        $rajsamand = $this->createLocation($rajasthan->id, 'Rajsamand', 'rajsamand', 'district', 'IN');
        $abuRoad = $this->createLocation($rajasthan->id, 'Abu Road', 'abu-road', 'district', 'IN');
        $ramgarh = $this->createLocation($rajasthan->id, 'Ramgarh', 'ramgarh', 'district', 'IN');
        $bhinmal = $this->createLocation($rajasthan->id, 'Bhinmal', 'bhinmal', 'district', 'IN');
        $chhabra = $this->createLocation($rajasthan->id, 'Chhabra', 'chhabra', 'district', 'IN');
        $anupgarh = $this->createLocation($rajasthan->id, 'Anupgarh', 'anupgarh', 'district', 'IN');
        $jalore = $this->createLocation($rajasthan->id, 'Jalore', 'jalore', 'district', 'IN');
        $shahpura = $this->createLocation($rajasthan->id, 'Shahpura', 'shahpura', 'district', 'IN');
        $sagwara = $this->createLocation($rajasthan->id, 'Sagwara', 'sagwara', 'district', 'IN');
        $sojat = $this->createLocation($rajasthan->id, 'Sojat', 'sojat', 'district', 'IN');
        $bilara = $this->createLocation($rajasthan->id, 'Bilara', 'bilara', 'district', 'IN');
        $kaman = $this->createLocation($rajasthan->id, 'Kaman', 'kaman', 'district', 'IN');
        $kekri = $this->createLocation($rajasthan->id, 'Kekri', 'kekri', 'district', 'IN');
        $malpura = $this->createLocation($rajasthan->id, 'Malpura', 'malpura', 'district', 'IN');
        $bhawaniMandi = $this->createLocation($rajasthan->id, 'Bhawani Mandi', 'bhawani-mandi', 'district', 'IN');
        $piparcity = $this->createLocation($rajasthan->id, 'Piparcity', 'piparcity', 'district', 'IN');
        $ganganagar = $this->createLocation($rajasthan->id, 'Ganganagar', 'ganganagar', 'district', 'IN');
        $jhunjhunun = $this->createLocation($rajasthan->id, 'Jhunjhunun', 'jhunjhunun', 'district', 'IN');
        $chittaurgarh = $this->createLocation($rajasthan->id, 'Chittaurgarh', 'chittaurgarh', 'district', 'IN');
        echo "Created All Rajasthan Districts \n";

        // Sikkim Districts
        $gangtok = $this->createLocation($sikkim->id, 'Gangtok', 'gangtok', 'district', 'IN');
        $namchi = $this->createLocation($sikkim->id, 'Namchi', 'namchi', 'district', 'IN');
        $rangpo = $this->createLocation($sikkim->id, 'Rangpo', 'rangpo', 'district', 'IN');
        $jorethang = $this->createLocation($sikkim->id, 'Jorethang', 'jorethang', 'district', 'IN');
        echo "Created All Sikkim Districts \n";

        // Tamil Nadu Districts
        $chennai = $this->createLocation($tamilNadu->id, 'Chennai', 'chennai', 'district', 'IN');
        $coimbatore = $this->createLocation($tamilNadu->id, 'Coimbatore', 'coimbatore', 'district', 'IN');
        $madurai = $this->createLocation($tamilNadu->id, 'Madurai', 'madurai', 'district', 'IN');
        $tiruchirappalli = $this->createLocation($tamilNadu->id, 'Tiruchirappalli', 'tiruchirappalli', 'district', 'IN');
        $tiruppur = $this->createLocation($tamilNadu->id, 'Tiruppur', 'tiruppur', 'district', 'IN');
        $salem = $this->createLocation($tamilNadu->id, 'Salem', 'salem', 'district', 'IN');
        $erode = $this->createLocation($tamilNadu->id, 'Erode', 'erode', 'district', 'IN');
        $tirunelveli = $this->createLocation($tamilNadu->id, 'Tirunelveli', 'tirunelveli', 'district', 'IN');
        $ambattur = $this->createLocation($tamilNadu->id, 'Ambattur', 'ambattur', 'district', 'IN');
        $vellore = $this->createLocation($tamilNadu->id, 'Vellore', 'vellore', 'district', 'IN');
        $avadi = $this->createLocation($tamilNadu->id, 'Avadi', 'avadi', 'district', 'IN');
        $thoothukkudi = $this->createLocation($tamilNadu->id, 'Thoothukkudi', 'thoothukkudi', 'district', 'IN');
        $nagercoil = $this->createLocation($tamilNadu->id, 'Nagercoil', 'nagercoil', 'district', 'IN');
        $thanjavur = $this->createLocation($tamilNadu->id, 'Thanjavur', 'thanjavur', 'district', 'IN');
        $pallavaram = $this->createLocation($tamilNadu->id, 'Pallavaram', 'pallavaram', 'district', 'IN');
        $dindigul = $this->createLocation($tamilNadu->id, 'Dindigul', 'dindigul', 'district', 'IN');
        $tambaram = $this->createLocation($tamilNadu->id, 'Tambaram', 'tambaram', 'district', 'IN');
        $cuddalore = $this->createLocation($tamilNadu->id, 'Cuddalore', 'cuddalore', 'district', 'IN');
        $kancheepuram = $this->createLocation($tamilNadu->id, 'Kancheepuram', 'kancheepuram', 'district', 'IN');
        $tiruvannamalai = $this->createLocation($tamilNadu->id, 'Tiruvannamalai', 'tiruvannamalai', 'district', 'IN');
        $kumbakonam = $this->createLocation($tamilNadu->id, 'Kumbakonam', 'kumbakonam', 'district', 'IN');
        $rajapalayam = $this->createLocation($tamilNadu->id, 'Rajapalayam', 'rajapalayam', 'district', 'IN');
        $pudukkottai = $this->createLocation($tamilNadu->id, 'Pudukkottai', 'pudukkottai', 'district', 'IN');
        $hosur = $this->createLocation($tamilNadu->id, 'Hosur', 'hosur', 'district', 'IN');
        $ambur = $this->createLocation($tamilNadu->id, 'Ambur', 'ambur', 'district', 'IN');
        $karaikkudi = $this->createLocation($tamilNadu->id, 'Karaikkudi', 'karaikkudi', 'district', 'IN');
        $neyveli = $this->createLocation($tamilNadu->id, 'Neyveli', 'neyveli', 'district', 'IN');
        $nagapattinam = $this->createLocation($tamilNadu->id, 'Nagapattinam', 'nagapattinam', 'district', 'IN');
        $sivakasi = $this->createLocation($tamilNadu->id, 'Sivakasi', 'sivakasi', 'district', 'IN');
        $pollachi = $this->createLocation($tamilNadu->id, 'Pollachi', 'pollachi', 'district', 'IN');
        $vaniyambadi = $this->createLocation($tamilNadu->id, 'Vaniyambadi', 'vaniyambadi', 'district', 'IN');
        $gudiyatham = $this->createLocation($tamilNadu->id, 'Gudiyatham', 'gudiyatham', 'district', 'IN');
        $udhagamandalam = $this->createLocation($tamilNadu->id, 'Udhagamandalam', 'udhagamandalam', 'district', 'IN');
        $mayiladuthurai = $this->createLocation($tamilNadu->id, 'Mayiladuthurai', 'mayiladuthurai', 'district', 'IN');
        $tiruchengode = $this->createLocation($tamilNadu->id, 'Tiruchengode', 'tiruchengode', 'district', 'IN');
        $kovilpatti = $this->createLocation($tamilNadu->id, 'Kovilpatti', 'kovilpatti', 'district', 'IN');
        $karur = $this->createLocation($tamilNadu->id, 'Karur', 'karur', 'district', 'IN');
        $tenkasi = $this->createLocation($tamilNadu->id, 'Tenkasi', 'tenkasi', 'district', 'IN');
        $palani = $this->createLocation($tamilNadu->id, 'Palani', 'palani', 'district', 'IN');
        $attur = $this->createLocation($tamilNadu->id, 'Attur', 'attur', 'district', 'IN');
        $arakkonam = $this->createLocation($tamilNadu->id, 'Arakkonam', 'arakkonam', 'district', 'IN');
        $ramanathapuram = $this->createLocation($tamilNadu->id, 'Ramanathapuram', 'ramanathapuram', 'district', 'IN');
        $dharmapuri = $this->createLocation($tamilNadu->id, 'Dharmapuri', 'dharmapuri', 'district', 'IN');
        $krishnagiri = $this->createLocation($tamilNadu->id, 'Krishnagiri', 'krishnagiri', 'district', 'IN');
        $udumalaipettai = $this->createLocation($tamilNadu->id, 'Udumalaipettai', 'udumalaipettai', 'district', 'IN');
        $virudhunagar = $this->createLocation($tamilNadu->id, 'Virudhunagar', 'virudhunagar', 'district', 'IN');
        $gobichettipalayam = $this->createLocation($tamilNadu->id, 'Gobichettipalayam', 'gobichettipalayam', 'district', 'IN');
        $srivilliputhur = $this->createLocation($tamilNadu->id, 'Srivilliputhur', 'srivilliputhur', 'district', 'IN');
        $bodinayakkanur = $this->createLocation($tamilNadu->id, 'Bodinayakkanur', 'bodinayakkanur', 'district', 'IN');
        $valparai = $this->createLocation($tamilNadu->id, 'Valparai', 'valparai', 'district', 'IN');
        $paramakudi = $this->createLocation($tamilNadu->id, 'Paramakudi', 'paramakudi', 'district', 'IN');
        $namakkal = $this->createLocation($tamilNadu->id, 'Namakkal', 'namakkal', 'district', 'IN');
        $mettupalayam = $this->createLocation($tamilNadu->id, 'Mettupalayam', 'mettupalayam', 'district', 'IN');
        $dharapuram = $this->createLocation($tamilNadu->id, 'Dharapuram', 'dharapuram', 'district', 'IN');
        $edappadi = $this->createLocation($tamilNadu->id, 'Edappadi', 'edappadi', 'district', 'IN');
        $mannargudi = $this->createLocation($tamilNadu->id, 'Mannargudi', 'mannargudi', 'district', 'IN');
        $chengalpattu = $this->createLocation($tamilNadu->id, 'Chengalpattu', 'chengalpattu', 'district', 'IN');
        $panruti = $this->createLocation($tamilNadu->id, 'Panruti', 'panruti', 'district', 'IN');
        $arani = $this->createLocation($tamilNadu->id, 'Arani', 'arani', 'district', 'IN');
        $ambasamudram = $this->createLocation($tamilNadu->id, 'Ambasamudram', 'ambasamudram', 'district', 'IN');
        $kallakkurichi = $this->createLocation($tamilNadu->id, 'Kallakkurichi', 'kallakkurichi', 'district', 'IN');
        $devakottai = $this->createLocation($tamilNadu->id, 'Devakottai', 'devakottai', 'district', 'IN');
        $aruppukkottai = $this->createLocation($tamilNadu->id, 'Aruppukkottai', 'aruppukkottai', 'district', 'IN');
        $puliangudi = $this->createLocation($tamilNadu->id, 'Puliangudi', 'puliangudi', 'district', 'IN');
        $sankarankovil = $this->createLocation($tamilNadu->id, 'Sankarankovil', 'sankarankovil', 'district', 'IN');
        $kambam = $this->createLocation($tamilNadu->id, 'Kambam', 'kambam', 'district', 'IN');
        $tiruppathur = $this->createLocation($tamilNadu->id, 'Tiruppathur', 'tiruppathur', 'district', 'IN');
        $sirkazhi = $this->createLocation($tamilNadu->id, 'Sirkazhi', 'sirkazhi', 'district', 'IN');
        $vedaranyam = $this->createLocation($tamilNadu->id, 'Vedaranyam', 'vedaranyam', 'district', 'IN');
        $arantangi = $this->createLocation($tamilNadu->id, 'Arantangi', 'arantangi', 'district', 'IN');
        $coonoor = $this->createLocation($tamilNadu->id, 'Coonoor', 'coonoor', 'district', 'IN');
        $gudalur = $this->createLocation($tamilNadu->id, 'Gudalur', 'gudalur', 'district', 'IN');
        $vandavasi = $this->createLocation($tamilNadu->id, 'Vandavasi', 'vandavasi', 'district', 'IN');
        $arcot = $this->createLocation($tamilNadu->id, 'Arcot', 'arcot', 'district', 'IN');
        $walajapet = $this->createLocation($tamilNadu->id, 'Walajapet', 'walajapet', 'district', 'IN');
        $sholingur = $this->createLocation($tamilNadu->id, 'Sholingur', 'sholingur', 'district', 'IN');
        $sathyamangalam = $this->createLocation($tamilNadu->id, 'Sathyamangalam', 'sathyamangalam', 'district', 'IN');
        $bhavani = $this->createLocation($tamilNadu->id, 'Bhavani', 'bhavani', 'district', 'IN');
        $periyakulam = $this->createLocation($tamilNadu->id, 'Periyakulam', 'periyakulam', 'district', 'IN');
        $usilampatti = $this->createLocation($tamilNadu->id, 'Usilampatti', 'usilampatti', 'district', 'IN');
        $melur = $this->createLocation($tamilNadu->id, 'Melur', 'melur', 'district', 'IN');
        $thuraiyur = $this->createLocation($tamilNadu->id, 'Thuraiyur', 'thuraiyur', 'district', 'IN');
        $manapparai = $this->createLocation($tamilNadu->id, 'Manapparai', 'manapparai', 'district', 'IN');
        $rasipuram = $this->createLocation($tamilNadu->id, 'Rasipuram', 'rasipuram', 'district', 'IN');
        $jayankondam = $this->createLocation($tamilNadu->id, 'Jayankondam', 'jayankondam', 'district', 'IN');
        $ariyalur = $this->createLocation($tamilNadu->id, 'Ariyalur', 'ariyalur', 'district', 'IN');
        $tindivanam = $this->createLocation($tamilNadu->id, 'Tindivanam', 'tindivanam', 'district', 'IN');
        echo "Created All Tamil Nadu Districts \n";

        // Telangana Districts
        $hyderabad = $this->createLocation($telangana->id, 'Hyderabad', 'hyderabad', 'district', 'IN');
        $warangal = $this->createLocation($telangana->id, 'Warangal', 'warangal', 'district', 'IN');
        $nizamabad = $this->createLocation($telangana->id, 'Nizamabad', 'nizamabad', 'district', 'IN');
        $khammam = $this->createLocation($telangana->id, 'Khammam', 'khammam', 'district', 'IN');
        $karimnagar = $this->createLocation($telangana->id, 'Karimnagar', 'karimnagar', 'district', 'IN');
        $ramagundam = $this->createLocation($telangana->id, 'Ramagundam', 'ramagundam', 'district', 'IN');
        $mahabubnagar = $this->createLocation($telangana->id, 'Mahabubnagar', 'mahabubnagar', 'district', 'IN');
        $nalgonda = $this->createLocation($telangana->id, 'Nalgonda', 'nalgonda', 'district', 'IN');
        $adilabad = $this->createLocation($telangana->id, 'Adilabad', 'adilabad', 'district', 'IN');
        $suryapet = $this->createLocation($telangana->id, 'Suryapet', 'suryapet', 'district', 'IN');
        $siddipet = $this->createLocation($telangana->id, 'Siddipet', 'siddipet', 'district', 'IN');
        $miryalaguda = $this->createLocation($telangana->id, 'Miryalaguda', 'miryalaguda', 'district', 'IN');
        $jagtial = $this->createLocation($telangana->id, 'Jagtial', 'jagtial', 'district', 'IN');
        $mancherial = $this->createLocation($telangana->id, 'Mancherial', 'mancherial', 'district', 'IN');
        $nirmal = $this->createLocation($telangana->id, 'Nirmal', 'nirmal', 'district', 'IN');
        $kamareddy = $this->createLocation($telangana->id, 'Kamareddy', 'kamareddy', 'district', 'IN');
        $kothagudem = $this->createLocation($telangana->id, 'Kothagudem', 'kothagudem', 'district', 'IN');
        $bodhan = $this->createLocation($telangana->id, 'Bodhan', 'bodhan', 'district', 'IN');
        $palwancha = $this->createLocation($telangana->id, 'Palwancha', 'palwancha', 'district', 'IN');
        $sangareddy = $this->createLocation($telangana->id, 'Sangareddy', 'sangareddy', 'district', 'IN');
        $zahirabad = $this->createLocation($telangana->id, 'Zahirabad', 'zahirabad', 'district', 'IN');
        $sircilla = $this->createLocation($telangana->id, 'Sircilla', 'sircilla', 'district', 'IN');
        $korutla = $this->createLocation($telangana->id, 'Korutla', 'korutla', 'district', 'IN');
        $tandur = $this->createLocation($telangana->id, 'Tandur', 'tandur', 'district', 'IN');
        $armoor = $this->createLocation($telangana->id, 'Armoor', 'armoor', 'district', 'IN');
        $gadwal = $this->createLocation($telangana->id, 'Gadwal', 'gadwal', 'district', 'IN');
        $wanaparthy = $this->createLocation($telangana->id, 'Wanaparthy', 'wanaparthy', 'district', 'IN');
        $kagaznagar = $this->createLocation($telangana->id, 'Kagaznagar', 'kagaznagar', 'district', 'IN');
        $bellampalli = $this->createLocation($telangana->id, 'Bellampalli', 'bellampalli', 'district', 'IN');
        $vikarabad = $this->createLocation($telangana->id, 'Vikarabad', 'vikarabad', 'district', 'IN');
        $jangaon = $this->createLocation($telangana->id, 'Jangaon', 'jangaon', 'district', 'IN');
        $mandamarri = $this->createLocation($telangana->id, 'Mandamarri', 'mandamarri', 'district', 'IN');
        $metpally = $this->createLocation($telangana->id, 'Metpally', 'metpally', 'district', 'IN');
        $bhongir = $this->createLocation($telangana->id, 'Bhongir', 'bhongir', 'district', 'IN');
        $bhadrachalam = $this->createLocation($telangana->id, 'Bhadrachalam', 'bhadrachalam', 'district', 'IN');
        $bhainsa = $this->createLocation($telangana->id, 'Bhainsa', 'bhainsa', 'district', 'IN');
        $sadasivpet = $this->createLocation($telangana->id, 'Sadasivpet', 'sadasivpet', 'district', 'IN');
        $boduppal = $this->createLocation($telangana->id, 'Boduppal', 'boduppal', 'district', 'IN');
        $peerzadiguda = $this->createLocation($telangana->id, 'Peerzadiguda', 'peerzadiguda', 'district', 'IN');
        $badangpet = $this->createLocation($telangana->id, 'Badangpet', 'badangpet', 'district', 'IN');
        $jawaharnagar = $this->createLocation($telangana->id, 'Jawaharnagar', 'jawaharnagar', 'district', 'IN');
        $medchal = $this->createLocation($telangana->id, 'Medchal', 'medchal', 'district', 'IN');
        $mahabubabad = $this->createLocation($telangana->id, 'Mahabubabad', 'mahabubabad', 'district', 'IN');
        $farooqnagar = $this->createLocation($telangana->id, 'Farooqnagar', 'farooqnagar', 'district', 'IN');
        $devarakonda = $this->createLocation($telangana->id, 'Devarakonda', 'devarakonda', 'district', 'IN');
        $kodad = $this->createLocation($telangana->id, 'Kodad', 'kodad', 'district', 'IN');
        $narayanpet = $this->createLocation($telangana->id, 'Narayanpet', 'narayanpet', 'district', 'IN');
        $jalapally = $this->createLocation($telangana->id, 'Jalapally', 'jalapally', 'district', 'IN');
        $manuguru = $this->createLocation($telangana->id, 'Manuguru', 'manuguru', 'district', 'IN');
        $yellandu = $this->createLocation($telangana->id, 'Yellandu', 'yellandu', 'district', 'IN');
        $naspur = $this->createLocation($telangana->id, 'Naspur', 'naspur', 'district', 'IN');
        $narsampet = $this->createLocation($telangana->id, 'Narsampet', 'narsampet', 'district', 'IN');
        $kyathampalle = $this->createLocation($telangana->id, 'Kyathampalle', 'kyathampalle', 'district', 'IN');
        $sathupally = $this->createLocation($telangana->id, 'Sathupally', 'sathupally', 'district', 'IN');
        $dubbak = $this->createLocation($telangana->id, 'Dubbak', 'dubbak', 'district', 'IN');
        $vemulawada = $this->createLocation($telangana->id, 'Vemulawada', 'vemulawada', 'district', 'IN');
        $huzurabad = $this->createLocation($telangana->id, 'Huzurabad', 'huzurabad', 'district', 'IN');
        $husnabad = $this->createLocation($telangana->id, 'Husnabad', 'husnabad', 'district', 'IN');
        $nagarkurnool = $this->createLocation($telangana->id, 'Nagarkurnool', 'nagarkurnool', 'district', 'IN');
        $peddapalli = $this->createLocation($telangana->id, 'Peddapalli', 'peddapalli', 'district', 'IN');
        echo "Created All Telangana Districts \n";

        // Tripura Districts
        $agartala = $this->createLocation($tripura->id, 'Agartala', 'agartala', 'district', 'IN');
        $dharmanagar = $this->createLocation($tripura->id, 'Dharmanagar', 'dharmanagar', 'district', 'IN');
        $udaipur = $this->createLocation($tripura->id, 'Udaipur', 'udaipur', 'district', 'IN');
        $kailashahar = $this->createLocation($tripura->id, 'Kailashahar', 'kailashahar', 'district', 'IN');
        $bishalgarh = $this->createLocation($tripura->id, 'Bishalgarh', 'bishalgarh', 'district', 'IN');
        $teliamura = $this->createLocation($tripura->id, 'Teliamura', 'teliamura', 'district', 'IN');
        $khowai = $this->createLocation($tripura->id, 'Khowai', 'khowai', 'district', 'IN');
        $belonia = $this->createLocation($tripura->id, 'Belonia', 'belonia', 'district', 'IN');
        $melaghar = $this->createLocation($tripura->id, 'Melaghar', 'melaghar', 'district', 'IN');
        $mohanpur = $this->createLocation($tripura->id, 'Mohanpur', 'mohanpur', 'district', 'IN');
        echo "Created All Tripura Districts \n";

        // Uttar Pradesh Districts
        $lucknow = $this->createLocation($uttarPradesh->id, 'Lucknow', 'lucknow', 'district', 'IN');
        $kanpur = $this->createLocation($uttarPradesh->id, 'Kanpur', 'kanpur', 'district', 'IN');
        $ghaziabad = $this->createLocation($uttarPradesh->id, 'Ghaziabad', 'ghaziabad', 'district', 'IN');
        $agra = $this->createLocation($uttarPradesh->id, 'Agra', 'agra', 'district', 'IN');
        $meerut = $this->createLocation($uttarPradesh->id, 'Meerut', 'meerut', 'district', 'IN');
        $varanasi = $this->createLocation($uttarPradesh->id, 'Varanasi', 'varanasi', 'district', 'IN');
        $prayagraj = $this->createLocation($uttarPradesh->id, 'Prayagraj', 'prayagraj', 'district', 'IN');
        $bareilly = $this->createLocation($uttarPradesh->id, 'Bareilly', 'bareilly', 'district', 'IN');
        $moradabad = $this->createLocation($uttarPradesh->id, 'Moradabad', 'moradabad', 'district', 'IN');
        $aligarh = $this->createLocation($uttarPradesh->id, 'Aligarh', 'aligarh', 'district', 'IN');
        $saharanpur = $this->createLocation($uttarPradesh->id, 'Saharanpur', 'saharanpur', 'district', 'IN');
        $gorakhpur = $this->createLocation($uttarPradesh->id, 'Gorakhpur', 'gorakhpur', 'district', 'IN');
        $noida = $this->createLocation($uttarPradesh->id, 'Noida', 'noida', 'district', 'IN');
        $greaterNoida = $this->createLocation($uttarPradesh->id, 'Greater Noida', 'greater-noida', 'district', 'IN');
        $firozabad = $this->createLocation($uttarPradesh->id, 'Firozabad', 'firozabad', 'district', 'IN');
        $jhansi = $this->createLocation($uttarPradesh->id, 'Jhansi', 'jhansi', 'district', 'IN');
        $muzaffarnagar = $this->createLocation($uttarPradesh->id, 'Muzaffarnagar', 'muzaffarnagar', 'district', 'IN');
        $mathura = $this->createLocation($uttarPradesh->id, 'Mathura', 'mathura', 'district', 'IN');
        $rampur = $this->createLocation($uttarPradesh->id, 'Rampur', 'rampur', 'district', 'IN');
        $shahjahanpur = $this->createLocation($uttarPradesh->id, 'Shahjahanpur', 'shahjahanpur', 'district', 'IN');
        $mau = $this->createLocation($uttarPradesh->id, 'Mau', 'mau', 'district', 'IN');
        $hapur = $this->createLocation($uttarPradesh->id, 'Hapur', 'hapur', 'district', 'IN');
        $etawah = $this->createLocation($uttarPradesh->id, 'Etawah', 'etawah', 'district', 'IN');
        $mirzapur = $this->createLocation($uttarPradesh->id, 'Mirzapur', 'mirzapur', 'district', 'IN');
        $vindhyachal = $this->createLocation($uttarPradesh->id, 'Vindhyachal', 'vindhyachal', 'district', 'IN');
        $bulandshahr = $this->createLocation($uttarPradesh->id, 'Bulandshahr', 'bulandshahr', 'district', 'IN');
        $sambhal = $this->createLocation($uttarPradesh->id, 'Sambhal', 'sambhal', 'district', 'IN');
        $amroha = $this->createLocation($uttarPradesh->id, 'Amroha', 'amroha', 'district', 'IN');
        $hardoi = $this->createLocation($uttarPradesh->id, 'Hardoi', 'hardoi', 'district', 'IN');
        $fatehpur = $this->createLocation($uttarPradesh->id, 'Fatehpur', 'fatehpur', 'district', 'IN');
        $raebareli = $this->createLocation($uttarPradesh->id, 'Raebareli', 'raebareli', 'district', 'IN');
        $orai = $this->createLocation($uttarPradesh->id, 'Orai', 'orai', 'district', 'IN');
        $sitapur = $this->createLocation($uttarPradesh->id, 'Sitapur', 'sitapur', 'district', 'IN');
        $bahraich = $this->createLocation($uttarPradesh->id, 'Bahraich', 'bahraich', 'district', 'IN');
        $modinagar = $this->createLocation($uttarPradesh->id, 'Modinagar', 'modinagar', 'district', 'IN');
        $unnao = $this->createLocation($uttarPradesh->id, 'Unnao', 'unnao', 'district', 'IN');
        $jaunpur = $this->createLocation($uttarPradesh->id, 'Jaunpur', 'jaunpur', 'district', 'IN');
        $lakhimpur = $this->createLocation($uttarPradesh->id, 'Lakhimpur', 'lakhimpur', 'district', 'IN');
        $hathras = $this->createLocation($uttarPradesh->id, 'Hathras', 'hathras', 'district', 'IN');
        $banda = $this->createLocation($uttarPradesh->id, 'Banda', 'banda', 'district', 'IN');
        $pilibhit = $this->createLocation($uttarPradesh->id, 'Pilibhit', 'pilibhit', 'district', 'IN');
        $mughalsarai = $this->createLocation($uttarPradesh->id, 'Mughalsarai', 'mughalsarai', 'district', 'IN');
        $baraut = $this->createLocation($uttarPradesh->id, 'Baraut', 'baraut', 'district', 'IN');
        $gonda = $this->createLocation($uttarPradesh->id, 'Gonda', 'gonda', 'district', 'IN');
        $etah = $this->createLocation($uttarPradesh->id, 'Etah', 'etah', 'district', 'IN');
        $deoria = $this->createLocation($uttarPradesh->id, 'Deoria', 'deoria', 'district', 'IN');
        $ghazipur = $this->createLocation($uttarPradesh->id, 'Ghazipur', 'ghazipur', 'district', 'IN');
        $sultanpur = $this->createLocation($uttarPradesh->id, 'Sultanpur', 'sultanpur', 'district', 'IN');
        $azamgarh = $this->createLocation($uttarPradesh->id, 'Azamgarh', 'azamgarh', 'district', 'IN');
        $bijnor = $this->createLocation($uttarPradesh->id, 'Bijnor', 'bijnor', 'district', 'IN');
        $basti = $this->createLocation($uttarPradesh->id, 'Basti', 'basti', 'district', 'IN');
        $chandausi = $this->createLocation($uttarPradesh->id, 'Chandausi', 'chandausi', 'district', 'IN');
        $mainpuri = $this->createLocation($uttarPradesh->id, 'Mainpuri', 'mainpuri', 'district', 'IN');
        $tanda = $this->createLocation($uttarPradesh->id, 'Tanda', 'tanda', 'district', 'IN');
        $shikohabad = $this->createLocation($uttarPradesh->id, 'Shikohabad', 'shikohabad', 'district', 'IN');
        $shamli = $this->createLocation($uttarPradesh->id, 'Shamli', 'shamli', 'district', 'IN');
        $khurja = $this->createLocation($uttarPradesh->id, 'Khurja', 'khurja', 'district', 'IN');
        $kasganj = $this->createLocation($uttarPradesh->id, 'Kasganj', 'kasganj', 'district', 'IN');
        $vrindavan = $this->createLocation($uttarPradesh->id, 'Vrindavan', 'vrindavan', 'district', 'IN');
        $loni = $this->createLocation($uttarPradesh->id, 'Loni', 'loni', 'district', 'IN');
        $budaun = $this->createLocation($uttarPradesh->id, 'Budaun', 'budaun', 'district', 'IN');
        $lalitpur = $this->createLocation($uttarPradesh->id, 'Lalitpur', 'lalitpur', 'district', 'IN');
        $barabanki = $this->createLocation($uttarPradesh->id, 'Barabanki', 'barabanki', 'district', 'IN');
        $ballia = $this->createLocation($uttarPradesh->id, 'Ballia', 'ballia', 'district', 'IN');
        $deoband = $this->createLocation($uttarPradesh->id, 'Deoband', 'deoband', 'district', 'IN');
        $nagina = $this->createLocation($uttarPradesh->id, 'Nagina', 'nagina', 'district', 'IN');
        $sahabad = $this->createLocation($uttarPradesh->id, 'Sahabad', 'sahabad', 'district', 'IN');
        $khair = $this->createLocation($uttarPradesh->id, 'Khair', 'khair', 'district', 'IN');
        $kairana = $this->createLocation($uttarPradesh->id, 'Kairana', 'kairana', 'district', 'IN');
        $dadri = $this->createLocation($uttarPradesh->id, 'Dadri', 'dadri', 'district', 'IN');
        $sikandrabad = $this->createLocation($uttarPradesh->id, 'Sikandrabad', 'sikandrabad', 'district', 'IN');
        $jalaun = $this->createLocation($uttarPradesh->id, 'Jalaun', 'jalaun', 'district', 'IN');
        $khorabar = $this->createLocation($uttarPradesh->id, 'Khorabar', 'khorabar', 'district', 'IN');
        $obra = $this->createLocation($uttarPradesh->id, 'Obra', 'obra', 'district', 'IN');
        $baheri = $this->createLocation($uttarPradesh->id, 'Baheri', 'baheri', 'district', 'IN');
        $tundla = $this->createLocation($uttarPradesh->id, 'Tundla', 'tundla', 'district', 'IN');
        $sherkot = $this->createLocation($uttarPradesh->id, 'Sherkot', 'sherkot', 'district', 'IN');
        $kalpi = $this->createLocation($uttarPradesh->id, 'Kalpi', 'kalpi', 'district', 'IN');
        $bisalpur = $this->createLocation($uttarPradesh->id, 'Bisalpur', 'bisalpur', 'district', 'IN');
        $sandila = $this->createLocation($uttarPradesh->id, 'Sandila', 'sandila', 'district', 'IN');
        $auraiya = $this->createLocation($uttarPradesh->id, 'Auraiya', 'auraiya', 'district', 'IN');
        $kannauj = $this->createLocation($uttarPradesh->id, 'Kannauj', 'kannauj', 'district', 'IN');
        $nawalgul = $this->createLocation($uttarPradesh->id, 'Nawalgul', 'nawalgul', 'district', 'IN');
        $muradnagar = $this->createLocation($uttarPradesh->id, 'Muradnagar', 'muradnagar', 'district', 'IN');
        $kunda = $this->createLocation($uttarPradesh->id, 'Kunda', 'kunda', 'district', 'IN');
        $rath = $this->createLocation($uttarPradesh->id, 'Rath', 'rath', 'district', 'IN');
        $belaPratapgarh = $this->createLocation($uttarPradesh->id, 'Bela Pratapgarh', 'bela-pratapgarh', 'district', 'IN');
        $mauranipur = $this->createLocation($uttarPradesh->id, 'Mauranipur', 'mauranipur', 'district', 'IN');
        $gangoh = $this->createLocation($uttarPradesh->id, 'Gangoh', 'gangoh', 'district', 'IN');
        $nanpara = $this->createLocation($uttarPradesh->id, 'Nanpara', 'nanpara', 'district', 'IN');
        $ujhani = $this->createLocation($uttarPradesh->id, 'Ujhani', 'ujhani', 'district', 'IN');
        $sahaswan = $this->createLocation($uttarPradesh->id, 'Sahaswan', 'sahaswan', 'district', 'IN');
        $mubarakpur = $this->createLocation($uttarPradesh->id, 'Mubarakpur', 'mubarakpur', 'district', 'IN');
        $siana = $this->createLocation($uttarPradesh->id, 'Siana', 'siana', 'district', 'IN');
        $niwari = $this->createLocation($uttarPradesh->id, 'Niwari', 'niwari', 'district', 'IN');
        $golaGokarannath = $this->createLocation($uttarPradesh->id, 'Gola Gokarannath', 'gola-gokarannath', 'district', 'IN');
        $powayan = $this->createLocation($uttarPradesh->id, 'Powayan', 'powayan', 'district', 'IN');
        $mahoba = $this->createLocation($uttarPradesh->id, 'Mahoba', 'mahoba', 'district', 'IN');
        $pahasu = $this->createLocation($uttarPradesh->id, 'Pahasu', 'pahasu', 'district', 'IN');
        $zaidpur = $this->createLocation($uttarPradesh->id, 'Zaidpur', 'zaidpur', 'district', 'IN');
        $khekada = $this->createLocation($uttarPradesh->id, 'Khekada', 'khekada', 'district', 'IN');
        $sardhana = $this->createLocation($uttarPradesh->id, 'Sardhana', 'sardhana', 'district', 'IN');
        $seohara = $this->createLocation($uttarPradesh->id, 'Seohara', 'seohara', 'district', 'IN');
        $dhampur = $this->createLocation($uttarPradesh->id, 'Dhampur', 'dhampur', 'district', 'IN');
        $chandpur = $this->createLocation($uttarPradesh->id, 'Chandpur', 'chandpur', 'district', 'IN');
        $kiratpur = $this->createLocation($uttarPradesh->id, 'Kiratpur', 'kiratpur', 'district', 'IN');
        $noorpur = $this->createLocation($uttarPradesh->id, 'Noorpur', 'noorpur', 'district', 'IN');
        $swar = $this->createLocation($uttarPradesh->id, 'Swar', 'swar', 'district', 'IN');
        $kaimganj = $this->createLocation($uttarPradesh->id, 'Kaimganj', 'kaimganj', 'district', 'IN');
        $faizabad = $this->createLocation($uttarPradesh->id, 'Faizabad', 'faizabad', 'district', 'IN');
        $akbarpur = $this->createLocation($uttarPradesh->id, 'Akbarpur', 'akbarpur', 'district', 'IN');
        $khora = $this->createLocation($uttarPradesh->id, 'Khora', 'khora', 'district', 'IN');
        echo "Created All Uttar Pradesh Districts \n";

        // Uttarakhand Districts
        $dehradun = $this->createLocation($uttarakhand->id, 'Dehradun', 'dehradun', 'district', 'IN');
        $haridwar = $this->createLocation($uttarakhand->id, 'Haridwar', 'haridwar', 'district', 'IN');
        $haldwaniAndKathgodam = $this->createLocation($uttarakhand->id, 'Haldwani and Kathgodam', 'haldwani-and-kathgodam', 'district', 'IN');
        $rudrapur = $this->createLocation($uttarakhand->id, 'Rudrapur', 'rudrapur', 'district', 'IN');
        $kashipur = $this->createLocation($uttarakhand->id, 'Kashipur', 'kashipur', 'district', 'IN');
        $roorkee = $this->createLocation($uttarakhand->id, 'Roorkee', 'roorkee', 'district', 'IN');
        $rishikesh = $this->createLocation($uttarakhand->id, 'Rishikesh', 'rishikesh', 'district', 'IN');
        $kotdwar = $this->createLocation($uttarakhand->id, 'Kotdwar', 'kotdwar', 'district', 'IN');
        $pithoragarh = $this->createLocation($uttarakhand->id, 'Pithoragarh', 'pithoragarh', 'district', 'IN');
        $jaspur = $this->createLocation($uttarakhand->id, 'Jaspur', 'jaspur', 'district', 'IN');
        $kichha = $this->createLocation($uttarakhand->id, 'Kichha', 'kichha', 'district', 'IN');
        $srinagar = $this->createLocation($uttarakhand->id, 'Srinagar (Garhwal)', 'srinagar-(garhwal)', 'district', 'IN');
        $ramnagar = $this->createLocation($uttarakhand->id, 'Ramnagar', 'ramnagar', 'district', 'IN');
        $manglaur = $this->createLocation($uttarakhand->id, 'Manglaur', 'manglaur', 'district', 'IN');
        $sitarganj = $this->createLocation($uttarakhand->id, 'Sitarganj', 'sitarganj', 'district', 'IN');
        $bazpur = $this->createLocation($uttarakhand->id, 'Bazpur', 'bazpur', 'district', 'IN');
        $nainital = $this->createLocation($uttarakhand->id, 'Nainital', 'nainital', 'district', 'IN');
        $almora = $this->createLocation($uttarakhand->id, 'Almora', 'almora', 'district', 'IN');
        $gadarpur = $this->createLocation($uttarakhand->id, 'Gadarpur', 'gadarpur', 'district', 'IN');
        $laksar = $this->createLocation($uttarakhand->id, 'Laksar', 'laksar', 'district', 'IN');
        echo "Created All Uttarakhand Districts \n";

        // West Bengal Districts
        $kolkata = $this->createLocation($westBengal->id, 'Kolkata', 'kolkata', 'district', 'IN');
        $howrah = $this->createLocation($westBengal->id, 'Howrah', 'howrah', 'district', 'IN');
        $durgapur = $this->createLocation($westBengal->id, 'Durgapur', 'durgapur', 'district', 'IN');
        $asansol = $this->createLocation($westBengal->id, 'Asansol', 'asansol', 'district', 'IN');
        $siliguri = $this->createLocation($westBengal->id, 'Siliguri', 'siliguri', 'district', 'IN');
        $maheshtala = $this->createLocation($westBengal->id, 'Maheshtala', 'maheshtala', 'district', 'IN');
        $rajpurSonarpur = $this->createLocation($westBengal->id, 'Rajpur Sonarpur', 'rajpur-sonarpur', 'district', 'IN');
        $southDumDum = $this->createLocation($westBengal->id, 'South Dum Dum', 'south-dum-dum', 'district', 'IN');
        $rajarhatGopalpur = $this->createLocation($westBengal->id, 'Rajarhat Gopalpur', 'rajarhat-gopalpur', 'district', 'IN');
        $bhatpara = $this->createLocation($westBengal->id, 'Bhatpara', 'bhatpara', 'district', 'IN');
        $panihati = $this->createLocation($westBengal->id, 'Panihati', 'panihati', 'district', 'IN');
        $kamarhati = $this->createLocation($westBengal->id, 'Kamarhati', 'kamarhati', 'district', 'IN');
        $bardhaman = $this->createLocation($westBengal->id, 'Bardhaman', 'bardhaman', 'district', 'IN');
        $kulti = $this->createLocation($westBengal->id, 'Kulti', 'kulti', 'district', 'IN');
        $bally = $this->createLocation($westBengal->id, 'Bally', 'bally', 'district', 'IN');
        $barasat = $this->createLocation($westBengal->id, 'Barasat', 'barasat', 'district', 'IN');
        $northDumDum = $this->createLocation($westBengal->id, 'North Dum Dum', 'north-dum-dum', 'district', 'IN');
        $baranagar = $this->createLocation($westBengal->id, 'Baranagar', 'baranagar', 'district', 'IN');
        $uluberia = $this->createLocation($westBengal->id, 'Uluberia', 'uluberia', 'district', 'IN');
        $naihati = $this->createLocation($westBengal->id, 'Naihati', 'naihati', 'district', 'IN');
        $englishBazar = $this->createLocation($westBengal->id, 'English Bazar', 'english-bazar', 'district', 'IN');
        $kharagpur = $this->createLocation($westBengal->id, 'Kharagpur', 'kharagpur', 'district', 'IN');
        $haldia = $this->createLocation($westBengal->id, 'Haldia', 'haldia', 'district', 'IN');
        $madhyamgram = $this->createLocation($westBengal->id, 'Madhyamgram', 'madhyamgram', 'district', 'IN');
        $berhampore = $this->createLocation($westBengal->id, 'Berhampore', 'berhampore', 'district', 'IN');
        $shantipur = $this->createLocation($westBengal->id, 'Shantipur', 'shantipur', 'district', 'IN');
        $hugliChinsurah = $this->createLocation($westBengal->id, 'Hugli-Chinsurah', 'hugli-chinsurah', 'district', 'IN');
        $medinipur = $this->createLocation($westBengal->id, 'Medinipur', 'medinipur', 'district', 'IN');
        $jalpaiguri = $this->createLocation($westBengal->id, 'Jalpaiguri', 'jalpaiguri', 'district', 'IN');
        $raiganj = $this->createLocation($westBengal->id, 'Raiganj', 'raiganj', 'district', 'IN');
        $serampore = $this->createLocation($westBengal->id, 'Serampore', 'serampore', 'district', 'IN');
        $habra = $this->createLocation($westBengal->id, 'Habra', 'habra', 'district', 'IN');
        $krishnanagar = $this->createLocation($westBengal->id, 'Krishnanagar', 'krishnanagar', 'district', 'IN');
        $chandannagar = $this->createLocation($westBengal->id, 'Chandannagar', 'chandannagar', 'district', 'IN');
        $uttarparaKotrung = $this->createLocation($westBengal->id, 'Uttarpara Kotrung', 'uttarpara-kotrung', 'district', 'IN');
        $bankura = $this->createLocation($westBengal->id, 'Bankura', 'bankura', 'district', 'IN');
        $nabadwip = $this->createLocation($westBengal->id, 'Nabadwip', 'nabadwip', 'district', 'IN');
        $balurghat = $this->createLocation($westBengal->id, 'Balurghat', 'balurghat', 'district', 'IN');
        $basirhat = $this->createLocation($westBengal->id, 'Basirhat', 'basirhat', 'district', 'IN');
        $halisahar = $this->createLocation($westBengal->id, 'Halisahar', 'halisahar', 'district', 'IN');
        $rishra = $this->createLocation($westBengal->id, 'Rishra', 'rishra', 'district', 'IN');
        $kanchrapara = $this->createLocation($westBengal->id, 'Kanchrapara', 'kanchrapara', 'district', 'IN');
        $purulia = $this->createLocation($westBengal->id, 'Purulia', 'purulia', 'district', 'IN');
        $bongaon = $this->createLocation($westBengal->id, 'Bongaon', 'bongaon', 'district', 'IN');
        $coochBehar = $this->createLocation($westBengal->id, 'Cooch Behar', 'cooch-behar', 'district', 'IN');
        $darjeeling = $this->createLocation($westBengal->id, 'Darjeeling', 'darjeeling', 'district', 'IN');
        $dumDum = $this->createLocation($westBengal->id, 'Dum Dum', 'dum-dum', 'district', 'IN');
        $titagarh = $this->createLocation($westBengal->id, 'Titagarh', 'titagarh', 'district', 'IN');
        $baidyabati = $this->createLocation($westBengal->id, 'Baidyabati', 'baidyabati', 'district', 'IN');
        $khardah = $this->createLocation($westBengal->id, 'Khardah', 'khardah', 'district', 'IN');
        $bansberia = $this->createLocation($westBengal->id, 'Bansberia', 'bansberia', 'district', 'IN');
        $champdani = $this->createLocation($westBengal->id, 'Champdani', 'champdani', 'district', 'IN');
        $bhadreswar = $this->createLocation($westBengal->id, 'Bhadreswar', 'bhadreswar', 'district', 'IN');
        $ranaghat = $this->createLocation($westBengal->id, 'Ranaghat', 'ranaghat', 'district', 'IN');
        $ashoknagarKalyangarh = $this->createLocation($westBengal->id, 'Ashoknagar Kalyangarh', 'ashoknagar-kalyangarh', 'district', 'IN');
        $bidhannagar = $this->createLocation($westBengal->id, 'Bidhannagar', 'bidhannagar', 'district', 'IN');
        $jamuria = $this->createLocation($westBengal->id, 'Jamuria', 'jamuria', 'district', 'IN');
        $chakdaha = $this->createLocation($westBengal->id, 'Chakdaha', 'chakdaha', 'district', 'IN');
        $alipurduar = $this->createLocation($westBengal->id, 'Alipurduar', 'alipurduar', 'district', 'IN');
        $arambag = $this->createLocation($westBengal->id, 'Arambag', 'arambag', 'district', 'IN');
        $budgeBudge = $this->createLocation($westBengal->id, 'Budge Budge', 'budge-budge', 'district', 'IN');
        $jhargram = $this->createLocation($westBengal->id, 'Jhargram', 'jhargram', 'district', 'IN');
        $kalyani = $this->createLocation($westBengal->id, 'Kalyani', 'kalyani', 'district', 'IN');
        $gangarampur = $this->createLocation($westBengal->id, 'Gangarampur', 'gangarampur', 'district', 'IN');
        $islampur = $this->createLocation($westBengal->id, 'Islampur', 'islampur', 'district', 'IN');
        $ghatal = $this->createLocation($westBengal->id, 'Ghatal', 'ghatal', 'district', 'IN');
        $baduria = $this->createLocation($westBengal->id, 'Baduria', 'baduria', 'district', 'IN');
        $jiaganjAzimganj = $this->createLocation($westBengal->id, 'Jiaganj Azimganj', 'jiaganj-azimganj', 'district', 'IN');
        $dabgram = $this->createLocation($westBengal->id, 'Dabgram', 'dabgram', 'district', 'IN');
        $raniganj = $this->createLocation($westBengal->id, 'Raniganj', 'raniganj', 'district', 'IN');
        $konnagar = $this->createLocation($westBengal->id, 'Konnagar', 'konnagar', 'district', 'IN');
        $kandi = $this->createLocation($westBengal->id, 'Kandi', 'kandi', 'district', 'IN');
        $suri = $this->createLocation($westBengal->id, 'Suri', 'suri', 'district', 'IN');
        $bolpur = $this->createLocation($westBengal->id, 'Bolpur', 'bolpur', 'district', 'IN');
        $rampurhat = $this->createLocation($westBengal->id, 'Rampurhat', 'rampurhat', 'district', 'IN');
        $contai = $this->createLocation($westBengal->id, 'Contai', 'contai', 'district', 'IN');
        $tamluk = $this->createLocation($westBengal->id, 'Tamluk', 'tamluk', 'district', 'IN');
        $bishnupur = $this->createLocation($westBengal->id, 'Bishnupur', 'bishnupur', 'district', 'IN');
        $katwa = $this->createLocation($westBengal->id, 'Katwa', 'katwa', 'district', 'IN');
        $kalna = $this->createLocation($westBengal->id, 'Kalna', 'kalna', 'district', 'IN');
        $dankuni = $this->createLocation($westBengal->id, 'Dankuni', 'dankuni', 'district', 'IN');
        $memari = $this->createLocation($westBengal->id, 'Memari', 'memari', 'district', 'IN');
        $dhulian = $this->createLocation($westBengal->id, 'Dhulian', 'dhulian', 'district', 'IN');
        $oldMalda = $this->createLocation($westBengal->id, 'Old Malda', 'old-malda', 'district', 'IN');
        $garulia = $this->createLocation($westBengal->id, 'Garulia', 'garulia', 'district', 'IN');
        $northBarrackpore = $this->createLocation($westBengal->id, 'North Barrackpore', 'north-barrackpore', 'district', 'IN');
        $barrackpore = $this->createLocation($westBengal->id, 'Barrackpore', 'barrackpore', 'district', 'IN');
        $newBarrackpore = $this->createLocation($westBengal->id, 'New Barrackpore', 'new-barrackpore', 'district', 'IN');
        $taki = $this->createLocation($westBengal->id, 'Taki', 'taki', 'district', 'IN');
        $beldanga = $this->createLocation($westBengal->id, 'Beldanga', 'beldanga', 'district', 'IN');
        $sainthia = $this->createLocation($westBengal->id, 'Sainthia', 'sainthia', 'district', 'IN');
        $barjora = $this->createLocation($westBengal->id, 'Barjora', 'barjora', 'district', 'IN');
        $kaliaganj = $this->createLocation($westBengal->id, 'Kaliaganj', 'kaliaganj', 'district', 'IN');
        $malBazar = $this->createLocation($westBengal->id, 'Mal Bazar', 'mal-bazar', 'district', 'IN');
        $baruipur = $this->createLocation($westBengal->id, 'Baruipur', 'baruipur', 'district', 'IN');
        $diamondHarbour = $this->createLocation($westBengal->id, 'Diamond Harbour', 'diamond-harbour', 'district', 'IN');
        $gayespur = $this->createLocation($westBengal->id, 'Gayespur', 'gayespur', 'district', 'IN');
        $kaliyaganj = $this->createLocation($westBengal->id, 'Kaliyaganj', 'kaliyaganj', 'district', 'IN');
        $pujali = $this->createLocation($westBengal->id, 'Pujali', 'pujali', 'district', 'IN');
        $tarakeswar = $this->createLocation($westBengal->id, 'Tarakeswar', 'tarakeswar', 'district', 'IN');
        echo "Created All West Bengal Districts \n";

        /*
        > Districts
        $rohtas = $this->createLocation($bihar->id, 'Rohtas', 'rohtas', 'district', 'IN');
        echo "✓ Created a district in Bihar\n";

        > Cities
        $this->createLocation($rohtas->id, 'Sasaram', 'sasaram', 'city', 'IN');
        echo "✓ Created a city in Bihar\n";
        
        > Country - United States
        $usa = $this->createLocation(null, 'United States', 'united-states', 'country', 'US');
        echo "✓ Created United States\n";

        > States
        $california = $this->createLocation($usa->id, 'California', 'california', 'state', 'US');
        $texas = $this->createLocation($usa->id, 'Texas', 'texas', 'state', 'US');
        $newYork = $this->createLocation($usa->id, 'New York', 'new-york', 'state', 'US');
        $florida = $this->createLocation($usa->id, 'Florida', 'florida', 'state', 'US');
        echo "✓ Created 4 US states\n";

        > Cities (no districts for US)
        $this->createLocation($california->id, 'Los Angeles', 'los-angeles', 'city', 'US');
        $this->createLocation($california->id, 'San Francisco', 'san-francisco', 'city', 'US');
        $this->createLocation($california->id, 'San Diego', 'san-diego', 'city', 'US');
        echo "✓ Created 3 California cities\n";
        echo "✓ Location seeding completed!\n";
        */
    }

    private function createLocation(?int $parentId, string $name, string $slug, string $type, string $countryCode): Location
    {
        $location = new Location();
        $location->parent_id = $parentId;
        $location->name = $name;
        $location->slug = $slug;
        $location->type = $type;
        $location->country_code = $countryCode;
        $location->is_active = true;
        $location->save();

        return $location;
    }
}