Wiki

Case Status Kiln
Register Log In

Wiki

 
A Quick Start Guide ("Hello, w…
  • RSS Feed

Last modified on 10/28/2025 3:08 AM by User.

Tags:

A Quick Start Guide ("Hello, world")

Tutorials > Getting Started

Welcome to FogBugz plugin development. In this tutorial, you will create a simple plugin that prints "Hello, world" on a new page in FogBugz. It will also place a link to the new page in the Extras menu. These functions are achieved by implements the IPluginPageDisplay and IPluginExtrasMenu interfaces, respectively. Plugins modify and add to the various areas of the FogBugz application by way of interfaces. Plugins can also use APIs to access to the various data objects.

This article assumes you have FogBugz 7 installed and are using Microsoft Visual Studio 2005 or 2008.  The free version of Visual C# 2008 Express Edtion allows writing FogBugz plugins without having to purchase Microsoft Visual Studio.

We highly recommend that you install FogBugz locally on your development machine and test your Plugin there, rather than testing it on your live FogBugz server. This is safer and also facilitates debugging. See the Installing FogBugz Locally article for instructions on how to get a license for installing FogBugz locally.

Setting Up the Development Environment

  1. Install FogBugz
    Installation is beyond the scope of this tutorial. See Installing FogBugz Locally.
     
  2. Install Microsoft Development Tools
    You'll need to install Visual Studio (2005+) and the .NET 2.0 SDK.  Follow the instructions provided on the product download pages.
     
  3. Create a new project
    • Using Visual Studio 2008
      Select .NET Framework 2.0, then Visual C# as the type and Class Library as the template:

       
    • Using Visual Studio 2005
      Select Visual C# as the type and Class Library as the template:

       
    • Using Visual C# 2008 Express
      Select Class Library as the template:
  4. Rename Class1.cs to HelloWorld.cs

Creating the Plugin

Adding References to FogBugz Assemblies

Every plugin will need references for the FogCreek.FogBugz and the FogCreek.Plugins libraries. They're all located in your FogBugz install directory under Website/bin/

[path to FogBugz]/Website/bin/FogBugz.dll
[path to FogBugz]/Website/bin/FogCreek.Plugins.dll

To add the references, go to Project > Add Reference..., then select the "Browse" tab and navigate to the files.

Assembly Attributes

Open AssemblyInfo.cs, located in the Solution Explorer under HelloWorld > Properties.  Add the following required Assembly Attributes:

using FogCreek.Plugins;

[assembly: AssemblyFogCreekPluginIdAttribute("PluginName@YourDomain.com")]
[assembly: AssemblyFogCreekMajorVersionAttribute(3)]
[assembly: AssemblyFogCreekMinorVersionMinAttribute(5)]
[assembly: AssemblyFogCreekEmailAddressAttribute("YourEmail@YourDomain.com")]
[assembly: AssemblyFogCreekWebsiteAttribute("http://yourwebsite.com")]

  • FogCreekPluginIdAttribute is a unique identifier for your plugin.  We recommend the format "PluginName@YourDomain".
  • FogCreekMajorVersionAttribute identifies the major verson of the Plugin API that your Plugin works with.  The current major version is 3.  See Plugin API Versioning for more information.
  • FogCreekMinorVersionAttribute identifies the minimum minor version of the Plugin API that your Plugin requires.  The current minor version is 5.  See Plugin API Versioning for more information.
  • FogCreekEmailAddressAttribute is the email address provided on the Plugin Page in FogBugz for your plugin. This should be the address where you would like to receive customer service emails from your users.
  • FogCreekWebsiteAttribute is the URL which is linked to by your plugin's name on the Plugin Page in FogBugz.

You can also include a title, description, company, and version, which will show up when your Plugin is installed.

[assembly: AssemblyTitle("HelloWorld")]
[assembly: AssemblyDescription("A timeless classic. Now on FogBugz.")]
[assembly: AssemblyCompany("Your Company Name")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Writing the Code

You're now ready to write the plugin class in HelloWorld.cs. Start by adding the namespaces we will use:

using FogCreek.FogBugz;
using FogCreek.FogBugz.Plugins;
using FogCreek.FogBugz.Plugins.Api;
using FogCreek.FogBugz.Plugins.Interfaces;
using FogCreek.FogBugz.UI;

To start, every FogBugz plugin must inherit from the Plugin class. This is the starting point for your Plugin. FogBugz will instantiate at most one Plugin object from each Plugin Assembly, and call interface methods on this object only.

public class HelloWorld : Plugin
{       
    public HelloWorld(CPluginApi api) : base(api)
    {
    }
}

Our constructor simply calls the constructor of the base class we inherit from (Plugin), passing it the api instance.

To make our plugin actually do something, we need to implement one or more Plugin Interfaces.  You can see a complete list of interfaces that Plugins can implement in the FogBugz Plugin Interfaces.  We want to have our plugin generate an HTML page, and put a link to it in the Extras menu, so we will implement two interfaces: IPluginPageDisplay and IPluginExtrasMenu.

public class HelloWorld : Plugin, IPluginPageDisplay, IPluginExtrasMenu

Because we are implementing the IPluginPageDisplay interface, our class must have the following methods: PageDisplay()and PageVisibility().

Note: Visual Studio and Visual C# Express make adding these methods easy. Once you type IPluginPageDisplay as an interface to implement, hover over IPluginPageDisplay and the "I" will be underlined. Hover over that and a menu appears. Click the menu and choose "Implement Interface 'IPluginPageDisplay'" and it will create the method stubs for you!

PageDisplay() returns the HTML we want to display, which is inserted within the normal FogBugz page layout. If we wanted a page with no header and footer, we would implement IPluginRawPageDisplay. If we needed to output binary data, we could implement IPluginBinaryPageDisplay. See How To Add a new page to FogBugz for all the page types you can add. The PageVisibility() method returns a value from the PermissionLevel enumeration, setting who can see our page. We want all normal, logged-in users to see it, so we return PermissionLevel.Normal.

public string PageDisplay()
{
    return "<h1>Hello, world!</h1><p>This is my page.</p>";
}

public PermissionLevel PageVisibility()
{
    return PermissionLevel.Normal;
}

Our plugin page will be available at the URL http://your-fogbugz-url/default.asp?pg=pgPlugin&ixPlugin=XX where XX is your plugin's number. Since this isn't very easy to remember, we'll add a link to the page.  Displaying a link in FogBugz is as easy as implementing another interface, IPluginExtrasMenu. This interface requires the ExtrasMenuLinks() method to be defined:

public CNavMenuLink[] ExtrasMenuLinks()
{
    return new CNavMenuLink[] {new CNavMenuLink("Say Hello", api.Url.PluginPageUrl())};
}

This method returns a list of CNavMenuLinks. Each link has a title and a URL. Here we're generating one link. The URL is set by the api method Url.PluginPageUrl().

Installing and Using the Plugin

That's it! Compile your solution in Visual Studio, then find your dll and zip it up. Log into FogBugz as an administrator and install your zipped HelloWorld.dll by going to Admin -> Plugins. Click "Upload Plugin", browse to your zip and click OK to upload and install.  If you built in Debug configuration (the default), you'll find your plugin under:

[path to your Project]/HelloWorld/bin/Debug/HelloWorld.dll

Test your new plugin by selecting "Say Hello" from your Extras menu.

You should see something like this:

Trouble-Shooting

See Plugin Debugging to learn how to attach a debugger to FogBugz in order to step through your plugin's execution.

Setting Up Automatic Uploading

If we're going to be working on this plugin a lot, going to FogBugz and clicking "Upload Plugin" every time we build can get annoying.  If we have a local installation of FogBugz that we're using for testing (highly recommended), we can add a build step to automatically upload our plugin to FogBugz.

The "\Plugins\Upload" Directory

Every FogBugz installation includes a "\Plugins\Upload" directory.  Any plugin .dll or .zip file placed into this folder will be automatically uploaded to FogBugz and installed.   You can try it now by building your plugin and copying the DLL into this folder.

The FogBugz example plugins include a batch script that automatically zips up a plugin and copies it to this directory for uploading.  You can find this script in:

[Your FogBugz Install]\Plugins\Examples\_postbuildSln.bat

Add the Build Step to the Project

  1. In Visual Studio, go to Project > HelloWorld Properties...
  2. In the pane that appears, select the "Build Events" tab
  3. Under "Post-build event command line", add the line:
    "[Your FogBugz Install]\Plugins\examples\_postbuildSln.bat" "$(TargetName)"

    Note the quotes around the path and target name.  If your path or plugin name contains spaces (e.g. "C:\Program Files") then you must have quotes for this step to work.

    Screenshot:

     
  4. Test it by changing something in your code and rebuilding.  FogBugz will automatically find your Plugin, upload it, and upgrade your Plugin to the newer version, all without you having to do anything!

Copy Static Content During Build

If your plugin has Static content served from the /static/ folder, you can add a build step to copy it to the output directory and the postbuild script will automatically add it when building:

xcopy /Y /I /S "[Your static directory]" "$(TargetDir)static"

For example, if your content is in a /static/ directory under your project directory, you would use:

xcopy /Y /I /S "$(ProjectDir)static" "$(TargetDir)static"

What Next?

 

Complete HelloWorld.cs C# Code

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
/* FogBugz namespaces-- make sure you add the neccesary assembly references to
 * the following DLL files contained in C:\Program Files\FogBugz\Website\bin\
 * FogBugz.dll, FogCreek.Plugins.dll, FogCreek.Plugins.InterfaceEvents.dll     */

using FogCreek.FogBugz;
using FogCreek.FogBugz.UI;
using FogCreek.FogBugz.Plugins;
using FogCreek.FogBugz.Plugins.Api;
using FogCreek.FogBugz.Plugins.Interfaces;

namespace FogCreek.Plugins.HelloWorld
{
    /* Class Declaration: Inherit from Plugin, implement interfaces
     * IPluginPageDisplay and IPluginExtrasMenu */
    public class HelloWorld : Plugin, IPluginPageDisplay, IPluginExtrasMenu
    {
        /* Constructor: We'll just initialize the inherited Plugin class, which
         * takes the passed instance of CPluginApi and sets its "api" member variable. */
        public HelloWorld(CPluginApi api) : base(api)
        {
        }

        public string PageDisplay()
        {
            return "<h1>Hello, world!</h1><p>This is my page.</p>";
        }

        public PermissionLevel PageVisibility()
        {
            return PermissionLevel.Normal;
        }

        public CNavMenuLink[] ExtrasMenuLinks()
        {
            return new CNavMenuLink[] {new CNavMenuLink("Say Hello", api.Url.PluginPageUrl())};
        }
    }
}

Download the source file

HelloWorld.cs

 

https://www.jit.edu.gh/it/members/ctgalsindian/
https://ensp.edu.mx/members/ctgalsindian/
https://triumph.srivenkateshwaraa.edu.in/profile/ctgalsindian
https://institutocrecer.edu.co/profile/ctgalsindian/
https://arzookanak-890101.mn.co/posts/92100495
https://arzookanak-890102.mn.co/posts/92100497
https://pibelearning.gov.bd/profile/ctgalsindian/
https://iltc.edu.sa/en_us/profile/ctgalsindian/
https://lms.gkce.edu.in/profile/ctgalsindian/
https://osisat.edu.ng/elearning/profile/ctgalsindian/
https://escuelageneralisimo.edu.pe/lms-user/24635
https://learndash.aula.edu.pe/miembros/ctgalsindian/
https://ca.pinterest.com/ctgalsindian/_profile/
https://motionentrance.edu.np/profile/ctgalsindian/
https://gov.trava.finance/user/ctgalsindian
https://arzookanak-890103.mn.co/posts/92100498
https://arzookanak-890104.mn.co/posts/92100499
https://ncon.edu.sa/profile/ctgalsindian/
https://sou.edu.kg/profile/ctgalsindian/
https://bbiny.edu/profile/ctgalsindian/
https://smglobal.igmis.edu.bd/profile/ctgalsindian/?view=instructor
https://centennialacademy.edu.lk/members/ctgalsindian/
https://jobs.lifewest.edu/employer/ctgalsindian/
https://esapa.edu.ar/profile/ctgalsindian/
https://cidhma.edu.pe/profile/ctgalsindian/
https://ech.edu.vn/profile/ctgalsindian/
https://yez.liberiasp.gov.lr/candidate/ctgalsindian/
https://hoc.salomon.edu.vn/profile/ctgalsindian/
https://arzookanak-890105.mn.co/posts/92100501
https://arzookanak-890106.mn.co/posts/92100503
https://fii.edu.gh/members/ctgalsindian/
https://forum.attica.gov.gr/forums/users/ctgalsindian/
https://gravesales.com/author/ctgalsindian/
https://uplink.weforum.org/uplink/s/profile/005TE00000BYX6T
https://www.campenelli.com/profile/ctgalsindians55568735/profile
https://www.foxyandfriends.net/profile/ctgalsindians55594901/profile
https://www.pubpub.org/user/ct-gals-2
https://robertsspaceindustries.com/en/citizens/ctgalsindian
https://arzookanak-890107.mn.co/posts/92100502
https://arzookanak-890108.mn.co/posts/92100504
https://forum.codeigniter.com/member.php?action=profile&uid=195082
https://juicedmuscle.com/member/772260-ctgalsindian/about
https://igre.krstarica.com/members/ctgalsindian/
https://www.pretapretinha.com.br/profile/ctgalsindians55594001/profile
https://slatestarcodex.com/author/ctgalsindian/
https://employbahamians.com/author/ctgalsindian/
https://www.landbaccounting.com/profile/ctgalsindians55551598/profile
https://longbets.org/user/ctgalsindian/
https://buyerseller.xyz/user/ctgalsindian/
https://wemakeit.com/users/ctgalsindian
https://forum.enscape3d.com/wcf/index.php?user/123507-ctgalsindian/#about
https://freeseotesting.com/en/www/ctgals.com
https://ctgalsindian.wixsite.com/my-site-1
https://arzookanak-890109.mn.co/posts/92100505
https://guyajeunejob.com/read-blog/62980
https://arzookanak-890110.mn.co/posts/92100508
https://www.minecraftforum.net/members/ctgalsindian
https://training.realvolve.com/profile/ctgalsindian/
https://www.toontrack.com/forums/users/ctgalsindian/
https://alumni.myra.ac.in/read-blog/448406
https://ru.pinterest.com/ctgalsindian/_profile/
https://newdayreview.com/author/ctgalsindian/
https://hubpages.com/@xamon787
https://www.kickstarter.com/profile/1846649059/about
https://javhdz.today/users/arzookanak/
https://dojour.us/u/ctgalsindian
https://froodl.com/professional-call-girls-to-take-vip-experience
https://www.cobler.us/board/board_topic/7966425/7307115.htm
https://monalist.net/listings/how-to-avail-beautiful-call-girl-service-near-me/
https://trueen.com/business/listing/ct-gals-agency/644426
https://www.tigerhospitality.com/candidate/ctgalsindian/
https://localbizinfo.net/blogs/108465/How-to-avail-Beautiful-Call-Girl-Service-Near-me
https://doorspell.com/blogs/61117/Professional-Call-Girls-to-take-VIP-Experience
https://www.bundas24.com/blogs/143034/How-to-avail-Beautiful-Call-Girl-Service-Near-me
https://meltlovewomen.activeboard.com/t72224155/100-erotic-satisfaction-by-exclusive-call-girls-in-chandigar/
https://inspirejournal.xyz/100-erotic-satisfaction-by-exclusive-call-girls-in-chandigarh/
https://digitalagencyservice.activeboard.com/t72224158/100-erotic-satisfaction-by-exclusive-call-girls-in-chandigar/
http://sneeznavilas.vforums.co.uk/general/4152/100-erotic-satisfaction-by-exclusive-call-girls-i
https://www.siamsilverlake.com/forum/topic/776710/erotic-satisfaction-by-exclusive-call-girls-in-chandigarh
https://www.cemkrete.com/forum/topic/70723/hoties-are-avail-beautiful-call-girl-service-near-me

///////////////////////////////////////

http://zeczec.com/users/haniyahabiz
https://paragonthemes.com/supports/users/haniyahabiz/
https://app.roll20.net/users/16827539/haniyahabiz
https://www.minds.com/haniyahabiz/
https://talkin.co.ke/haniyahabiz
https://bootsnipp.com/fullscreen/NlVGm
https://www.expatkidskorea.com/profile/haniyahabiz/
https://mecabricks.com/en/user/haniyahabiz
https://aboutme.style/haniyahabiz
https://www.bimandco.com/en/users/loeodyixja/bim-objects
https://github.com/haniyahabiz
https://desksnear.me/users/haniya-habiz
https://ukrainaincognita.com/ru/users/haniya-habiz
https://fitinline.com/profile/haniyahabiz
https://fosteringsuccessmichigan.com/member/410448
https://nursesoncall.com/author/haniyahabiz/
https://musikersuche.musicstore.de/profil/haniyahabiz/
http://network.hu/haniyahabiz
https://www.hugi.is/notendur/haniyahabiz/
https://qooh.me/haniyahabiz
https://pastelink.net/yws757jo
https://forums.giantitp.com/member.php?355667-haniyahabiz
https://padlet.com/haniyahabiz/get-unlimited-bangalore-escort-services-at-a-reasonable-pric-ojbe9azk9d5fzhgp
https://videa.hu/tagok/haniyahabiz-2594471
https://www.diveboard.com/haniyahabiz
https://startupxplore.com/en/person/haniyahabiz
https://forum.singaporeexpats.com/memberlist.php?mode=viewprofile&u=681127
https://www.youtube.com/@haniyahabiz
https://hearthis.at/group/499671/haniya-habiz/
https://www.haikudeck.com/presentations/haniyahabiz
https://audio.com/haniyahabiz
https://www.instagram.com/haniyahabiz/
https://www.instapaper.com/p/haniyahabiz
https://www.pearltrees.com/haniyahabiz
https://storyweaver.org.in/en/users/1168955
https://zrzutka.pl/profile/haniyahabiz-823181
https://www.checkli.com/haniyahabiz
https://feyenoord.supporters.nl/profiel/105931/haniyahabiz75
https://www.notebook.ai/@haniyahabiz
https://ivebo.co.uk/haniyahabiz
https://haniyahabiz017.wixsite.com/blog
https://miro.com/app/board/uXjVJHbRKXg=/?share_link_id=24602637638
https://aboutsnfjobs.com/author/haniyahabiz/
http://dtan.thaiembassy.de/uncategorized/2562/?mingleforumaction=profile&id=386122
https://jobs.motionographer.com/employers/3808855-haniyahabiz
https://www.linkedpt.com/employers/3820590-eroticbangaloreescorts
https://www.garthcharityprojects.org/profile/haniyahabiz01730110/profile
https://prosinrefgi.wixsite.com/pmbpf/profile/haniyahabiz01775464/profile
https://refsheet.net/haniyahabiz
https://www.covidvconquerors.com/profile/haniyahabiz01738337/profile
https://phijkchu.com/a/haniyahabiz/video-channels
https://haniyahabiz.weebly.com/
https://md.picasoft.net/s/6tNeKPWtx
https://blacklinesandbillables.com/participant/haniyahabiz/
https://illust.daysneo.com/illustrator/haniyahabiz/
https://us.community.sony.com/s/profile/005Dp000004fFvV?language=en_US
https://groover.co/en/band/profile/0.haniyahabiz/
https://directory.justbaazaar.com/listing/bangalore-india-get-unlimited-bangalore-escort-services-at-a-reasonable-price/

////////////////////////////////////////

https://huzzaz.com/user/monasinha09
https://www.bitsdujour.com/profiles/aTZGzc
https://oshwlab.com/monasinha/profile
https://www.giantbomb.com/profile/monasinha/
https://sante-medecine.journaldesfemmes.fr/profile/user/monasinha
https://monasinha09.weebly.com/
https://community.m5stack.com/user/monasinha09
https://haveagood.holiday/users/446193
https://www.aicrowd.com/participants/mona_sinha
https://notionpress.com/author/1362582#
https://www.pexels.com/@mona-sinha-2155497336/
https://topsitenet.com/profile/monasinha/1461344/
https://roomstyler.com/users/monasinha
https://www.dreamstime.com/monasinha304_info
https://recordsetter.com//user/MonaSinha
https://pinshape.com/users/8805504-monasinha304
https://zuhookanak-114601.mn.co/posts/92247527
https://zuhookanak-114602.mn.co/posts/92247609
https://www.fundable.com/mona-sinha-1
https://www.proko.com/@mona_sinha/activity
https://www.bandlab.com/monasinha
https://www.mateball.com/monasinha09
https://www.mateball.com/p/24609#c25365
https://qiita.com/monasinha009
https://www.ocjobs.com/employers/3784348-kolkata-escorts-from-your-convenience
https://www.animaljobsdirect.com/employers/3784357-mona-sinha
https://zuhookanak-114603.mn.co/posts/92247679
https://zuhookanak-114604.mn.co/posts/92247763
https://jobs.njota.org/profiles/7193435-mona-sinha
https://jobs.nefeshinternational.org/employers/3784363-mona-sinha
https://jobs.tdwi.org/employers/3784367-mona-sinha
https://jobs.blooloop.com/profiles/7295003-mona-sinha
https://jobs.theeducatorsroom.com/author/monasinha/
https://www.bondhuplus.com/monasinha
https://casualgamerevolution.com/user/monasinha
https://www.support-partition.com/profile/monasinha30478615/profile
https://zuhookanak-114605.mn.co/posts/92247821
https://zuhookanak-114606.mn.co/posts/92247883
https://www.newlifemontessori.com/profile/monasinha30442055/profile
https://paizo.com/people/monasinha#newPost
https://shareresearch.us/profile/monasinha
https://doselect.com/@monasinha09
https://cgmood.com/mona-sinha
https://www.outdooractive.com/en/member/mona-sinha/325656854/
https://coub.com/d6920c1b2fd18f1884a3
https://www.behance.net/monasinha
https://www.imdb.com/user/ur206995622/?ref_=upe_nv_profile
https://zuhookanak-114607.mn.co/posts/92247964
https://zuhookanak-114608.mn.co/posts/92248026
https://trueen.com/business/listing/mona-sinha/612268
https://www.twitch.tv/monasinha/about
https://unsplash.com/@monasinha09
https://lkc.hp.com/member/monasinha#
https://www.atlasobscura.com/users/865b4ec2-c9cb-496e-95b1-2bbb134ac648
https://cihoheadukphealthl.wixsite.com/djanacberpe/profile/monasinha30483592/profile
https://www.speedboatnijojo.com/profile/monasinha30429760/profile
https://www.techdirectory.io/kolkata/legal-services/mona-sinha
https://gitee.com/monasinha
https://gravesales.com/author/monasinha/
https://uplink.weforum.org/uplink/s/profile/005TE00000BCGaXYAX
https://zuhookanak-114609.mn.co/posts/92248110
https://zuhookanak-114610.mn.co/posts/92248185
https://socialcreditu.com/monasinha
https://www.mariebrowning.com/profile/monasinha30499172/profile
https://minify.mobi/results/monasinha.com
https://www.foxyandfriends.net/profile/monasinha3047270/profile
https://www.pubpub.org/user/mona-sinha-2
https://igre.krstarica.com/members/Monasinha/
https://homeprosdirect.com/kolkata/decks-porches-patios/mona-sinha
https://slatestarcodex.com/author/monasinha/
https://lebanonhub.app/blogs/638825/High-Class-Escorts-in-Kolkata-For-Your-Night-Fun

///////////////////////////////////

https://recordsetter.com//user/NidhiDixit
https://pinshape.com/users/8805586-nidhidixitt201
https://www.proko.com/@nidhi_dixit/activity
https://community.sw.siemens.com/s/profile/005Vb00000Cv58x
https://www.bandlab.com/nidhidixitt
https://www.mateball.com/nidhidixitt
https://qiita.com/nidhidixitt
https://www.ocjobs.com/employers/3784561-nidhi-dixit
https://nidhidixitt201.wixsite.com/home
https://www.animaljobsdirect.com/employers/3784564-nidhi-dixit
https://jobs.njota.org/profiles/7203526-nidhi-dixit
https://jobs.nefeshinternational.org/employers/3784567-nidhi-dixit
https://jobs.tdwi.org/employers/3784568-nidhi-dixit
https://jobs.blooloop.com/profiles/7203538-nidhi-dixit
https://jobs.theeducatorsroom.com/author/nidhidixitt/
https://www.bondhuplus.com/nidhidixitt
https://www.politicaljobhunt.com/profiles/7203555-nidhi-dixit
https://nidhidixitt09.mystrikingly.com/
https://casualgamerevolution.com/user/nidhidixitt
https://www.support-partition.com/profile/nidhidixitt20166697/profile
https://www.newlifemontessori.com/profile/nidhidixitt20118937/profile
https://paizo.com/people/nidhidixitt
https://buymeacoffee.com/nidhidixitj
https://buymeacoffee.com/nidhidixitj/get-unlimited-hyderabed-escort-ad-services-reasonable-price
https://doselect.com/@nidhidixitt09
https://cgmood.com/nidhi-dixit
https://www.outdooractive.com/en/member/nidhi-dixit/325674113/
https://www.atlasobscura.com/users/5d6c11ff-a59e-4bb3-9059-501d36354424
https://cihoheadukphealthl.wixsite.com/djanacberpe/profile/nidhidixitt20135621/profile
https://www.speedboatnijojo.com/profile/nidhidixitt20141087/profile
https://gitee.com/nidhidixitt
https://nidhidixitt.weebly.com/
https://gravesales.com/author/nidhidixitt/
https://uplink.weforum.org/uplink/s/profile/005TE00000BCRJ3
https://www.campenelli.com/profile/nidhidixitt20162005/profile
https://www.mariebrowning.com/profile/nidhidixitt20158377/profile
https://www.rediscoverhealthagain.com/profile/nidhidixitt20173918/profile
https://minify.mobi/results/nidhidixit.com
https://www.foxyandfriends.net/profile/nidhidixitt20190430/profile
https://www.pubpub.org/user/nidhi-dixit
https://igre.krstarica.com/members/nidhidixitt/
https://www.penname.me/@nidhidixitt201
https://slatestarcodex.com/author/nidhidixitt/
https://enkling.com/read-blog/45490
https://localist.co.nz/profile/162110
https://www.pythonjobshq.com/profiles/7203585-nidhi-dixit
https://employbahamians.com/author/nidhidixitt/
https://www.thebostoncalendar.com/user/120757
https://www.landbaccounting.com/profile/nidhidixitt20123511/profile
https://participation.u-bordeaux.fr/profiles/nidhi_dixit/activity
https://longbets.org/user/nidhidixitt/
https://vjudge.net/group/nidhidixit
https://hackmd.diverse-team.fr/s/BJHqCLT9lg
https://www.theyeshivaworld.com/coffeeroom/users/nidhidixitt
https://medium.com/@nidhidixitt201/right-way-of-booking-best-hyderabad-escorts-0d21045a7834
https://lebanonhub.app/blogs/640655/Get-Unlimited-Hyderabed-Escort-ad-Services-at-a-Reasonable-Price
https://homeprosdirect.com/hyderabad/concrete-brick-stone/nidhi-dixit-nidhi-dixit
https://www.globalbusinesslisting.org/get-unlimited-hyderabed-escort-ad-services-at-a-reasonable-price
https://www.localelinkup.com/get-unlimited-hyderabed-escort-ad-services-at-a-reasonable-price
https://onlinedigitalvockmark.activeboard.com/t72149493/get-unlimited-hyderabad-escort-services-at-a-reasonable-pric/

////////////////////////////////////////

https://training.realvolve.com/profile/pritykaur/
https://www.toontrack.com/forums/users/pritykaur/
https://www.kickstarter.com/profile/pritykaur/about
https://dojour.us/u/pritykaur
https://lichess.org/@/pritykaur
https://zuhookanak-114611.mn.co/posts/92241582
https://zuhookanak-114612.mn.co/posts/92241667
https://paste.toolforge.org/view/11ccf075
https://telegra.ph/Feel-the-head-of-our-beautiful-Escorts-in-Hyderabad-with-us-09-10
https://www.publicrelationsbox.com/profile/pritykaur
https://profamarun.wixsite.com/njqyvq/profile/pritykaur01857078/profile
https://www.zeczec.com/users/pritykaur
https://paragonthemes.com/supports/users/pritykaur/
https://www.minds.com/pritykaur/
https://talkin.co.ke/pritykaur
https://zuhookanak-114613.mn.co/posts/92241705
https://zuhookanak-114614.mn.co/posts/92241735
https://bootsnipp.com/fullscreen/nVpEv
https://www.expatkidskorea.com/profile/index.php/?url_full=/profile/pritykaur/
https://mecabricks.com/en/user/pritykaur
https://aboutme.style/pritykaur
https://www.bimandco.com/en/users/hsuq1dhgg4/bim-objects
https://desksnear.me/users/prity-kaur
https://ukrainaincognita.com/ru/users/prity-kaur
https://fitinline.com/profile/pritykaur/
https://fosteringsuccessmichigan.com/member/410452
https://musikersuche.musicstore.de/profil/pritykaur/
https://zuhookanak-114615.mn.co/posts/92241767
https://zuhookanak-114616.mn.co/posts/92242119
http://network.hu/kaurprity
https://www.hugi.is/notendur/pritykaur/
https://qooh.me/pritykaur
https://pastelink.net/utf6y005
https://padlet.com/pritykaur/feel-the-head-of-our-beautiful-escorts-in-hyderabad-with-us-x3l6ctqbdbqjp0ll
https://videa.hu/tagok/pritykaur-2594453
https://www.diveboard.com/pritykaur
https://forum.singaporeexpats.com/memberlist.php?mode=viewprofile&u=681116
https://www.youtube.com/@PrityKaur0
https://hearthis.at/group/499660/pritykaur/
https://zuhookanak-114617.mn.co/posts/92242123
https://zuhookanak-114618.mn.co/posts/92242126
https://www.haikudeck.com/presentations/pritykaur
https://pritykaur.weebly.com/
https://audio.com/pritykaur
https://spinninrecords.com/profile/pritykaur
https://zrzutka.pl/profile/pritykaur-909804
https://www.checkli.com/pritykaur
https://feyenoord.supporters.nl/profiel/105929/pritykaur65
https://www.notebook.ai/@pritykaur
https://ivebo.co.uk/pritykaur
https://miro.com/app/board/uXjVJTm1orA=/
https://aboutsnfjobs.com/author/pritykaur/
http://dtan.thaiembassy.de/uncategorized/2562/?mingleforumaction=profile&id=386100
http://www.fanmail.biz/mboard/memberlist.php?mode=viewprofile&u=2357241
https://coub.com/pritykaur
https://www.behance.net/pritykaur
https://zuhookanak-114619.mn.co/posts/92242127
https://zuhookanak-114620.mn.co/posts/92242135
https://jobs.motionographer.com/employers/3825081-pritykaur018-gmail-com
https://www.linkedpt.com/employers/3825601-pritykaur
https://www.garthcharityprojects.org/profile/pritykaur01857060/profile
https://prosinrefgi.wixsite.com/pmbpf/profile/pritykaur01860722/profile
https://refsheet.net/pritykaur
https://www.covidvconquerors.com/profile/pritykaur0183183/profile
https://phijkchu.com/a/pritykaur/video-channels
https://illust.daysneo.com/illustrator/pritykaur/
https://lebanonhub.app/blogs/640658/VIP-Hyderabad-Call-Girls-Available-Local-Area
https://www.freelistinguk.com/listings/feel-the-head-of-our-beautiful-escorts-in-hyderabad-with-us-1
https://meltlovewomen.activeboard.com/t72221202/feel-the-head-of-our-beautiful-escorts-in-hyderabad-with-us/
https://specialwomen.activeboard.com/t72221256/feel-the-head-of-our-beautiful-escorts-in-hyderabad-with-us/
https://arzoodakotha.activeboard.com/t72221257/feel-the-head-of-our-beautiful-escorts-in-hyderabad-with-us/

////////////////////////////////////////

https://www.stickermule.com/zuheekhan
https://community.atlassian.com/user/profile/7ac65904-6861-4812-8335-97180adf6fab
https://thedyrt.com/member/zuhee-k/reviews
https://paste.intergen.online/view/f86046eb
https://travelwithme.social/zuheekhan
https://id.devby.io/users/zuheekhan
https://listium.com/@zuheekhan
https://guides.co/a/zuhee-khan-622795
https://www.saravance.com/profile/zuheekhan01418938/profile
https://referrallist.com/profile/zuheekhan09/
https://uniquethis.com/zuheekhan?tab=100027185
https://leetcode.com/u/MShFixAvLp/
https://cars.yclas.com/user/zuhee-khan
https://decidim.santjaumedelsdomenys.cat/profiles/zuheekhan/activity
https://www.annuncigratuititalia.it/author/zuheekhan/
https://bikeindex.org/users/zuheekhan
https://code.antopie.org/zuheekhan
https://inbestia.com/usuarios/zuheekhan
https://theduran.com/author/zuheekhan/
https://nationaldppcsc.cdc.gov/s/profile/005SJ00000YVIbNYAX
https://joincreatively.com/zuheekhan
https://www.best4discounts.com/author/zuheekhan/
https://www.heavyironjobs.com/profiles/7212063-zuhee-khan
https://pc.poradna.net/users/1026978108-zuhee-khan
https://aboutnursernjobs.com/author/zuheekhan/
https://aboutcasemanagerjobs.com/author/zuheekhan/
https://rndirectors.com/author/zuheekhan/
https://aboutnurseassistantjobs.com/author/zuheekhan/
https://aboutpharmacistjobs.com/author/zuheekhan/
https://rnopportunities.com/author/zuheekhan/
https://aboutnursepractitionerjobs.com/author/zuheekhan/
https://www.active2030store.com/author/zuheekhan/
https://tatoeba.org/en/user/profile/zuheekhan
https://www.lingvolive.com/ru-ru/profile/8bbd3ae6-5b7a-4bb9-88dd-b6baec084a38/translations
https://caribbeanfinder.com/profile/zuhee-khan/
https://www.geniusu.com/profiles/2712540
https://speakerdeck.com/zuheekhan
https://disqus.com/by/zuheekhan09/about/
https://www.adsfare.com/zuhee-khan
https://www.haphong.edu.vn/profile/zuheekhan01447789/profile
https://coub.com/728ebe3b3d381496da76/
https://www.behance.net/zuheekhan
https://comicvine.gamespot.com/profile/zuheekhan/
https://zuheekhan.weebly.com/
https://trueen.com/business/listing/zuhee-khan/644298
https://forums.stardock.com/user/7555119
https://gouvernement-et-citoyens.consultation.etalab.gouv.fr/profile/zuheekhan
https://atelier.bretagne.bzh/profile/zuheekhan
https://www.domestika.org/es/zuheekhan014
https://ko-fi.com/zuheekhan10
https://www.spoonflower.com/profiles/zuheekhan?sub_action=shop
https://feedreader.com/observe/chandigarhfemaleescorts.com
https://forums.commentcamarche.net/profile/user/CorbeauMignon30
https://zuheekhan.listal.com/
https://www.techdirectory.io/chandigarh-india/legal-services/zuhee-khan
https://lebanonhub.app/blogs/638846/High-Class-Escorts-in-Chandigarh-For-Your-Night-Fun