├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── acnhpoker.sln ├── acnhpoker ├── ACLeaf.ico ├── App.config ├── Custom │ ├── CountDownTimer.cs │ ├── DataGridViewProgressColumn.cs │ ├── ExtendedPanel.cs │ ├── HexUpDown.cs │ ├── ImgRetriever.Designer.cs │ ├── ImgRetriever.cs │ ├── ImgRetriever.resx │ ├── LoopStream.cs │ ├── MyComboBox.cs │ ├── MyProgressBar.cs │ ├── MyStopWatch.Designer.cs │ ├── MyStopWatch.cs │ ├── MyStopWatch.resx │ ├── USBBot.cs │ ├── VillagerSelector.cs │ ├── myMessageBox.cs │ ├── variation.Designer.cs │ ├── variation.cs │ └── variation.resx ├── Discord │ ├── DiscordStructs.cs │ ├── DiscordUtils.cs │ └── DiscordWebHook.cs ├── Dodo │ ├── controller.cs │ ├── dodo.Designer.cs │ ├── dodo.cs │ ├── dodo.resx │ ├── teleport.Designer.cs │ ├── teleport.cs │ └── teleport.resx ├── Form1.Critter.cs ├── Form1.Debug.cs ├── Form1.Designer.cs ├── Form1.Item.cs ├── Form1.Other.cs ├── Form1.Villager.cs ├── Form1.cs ├── Form1.resx ├── Inventory │ ├── ItemAttr.cs │ └── inventorySlot.cs ├── Map │ ├── Freezer.Designer.cs │ ├── Freezer.cs │ ├── Freezer.resx │ ├── MapRegenerator.Designer.cs │ ├── MapRegenerator.cs │ ├── MapRegenerator.resx │ ├── bulkSpawn.Designer.cs │ ├── bulkSpawn.cs │ ├── bulkSpawn.resx │ ├── bulldozer.Designer.cs │ ├── bulldozer.cs │ ├── bulldozer.resx │ ├── floorSlot.cs │ ├── map.Designer.cs │ ├── map.cs │ ├── map.resx │ ├── miniMap.cs │ ├── variationSpawn.Designer.cs │ ├── variationSpawn.cs │ └── variationSpawn.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── ACLeaf.ico │ ├── ACLeaf2.ico │ ├── Celeste.ico │ ├── Leaf.png │ ├── acre │ ├── arrows-horizontal.png │ ├── dodo.png │ ├── f.ico │ ├── fasil.ico │ ├── gear.png │ ├── height.png │ ├── k.ico │ ├── loading.gif │ ├── marker.png │ └── timer.png ├── Setting │ ├── Log.cs │ ├── Setting.Designer.cs │ ├── Setting.cs │ └── Setting.resx ├── Twitch │ ├── DropOrder.cs │ ├── OrderDisplay.Designer.cs │ ├── OrderDisplay.cs │ ├── OrderDisplay.resx │ ├── PubSub.cs │ ├── TwitchBot.cs │ └── VillagerOrder.cs ├── Utilities.cs ├── Villager │ ├── Friendship.Designer.cs │ ├── Friendship.cs │ ├── Friendship.resx │ ├── VillagerMemory.cs │ └── villager.cs ├── VillagerDatabase │ ├── Io.nhv2 │ ├── ant00.nhv2 │ ├── ant00.nhvh2 │ ├── ant01.nhv2 │ ├── ant01.nhvh2 │ ├── ant02.nhv2 │ ├── ant02.nhvh2 │ ├── ant03.nhv2 │ ├── ant03.nhvh2 │ ├── ant05.nhv2 │ ├── ant05.nhvh2 │ ├── ant06.nhv2 │ ├── ant06.nhvh2 │ ├── ant08.nhv2 │ ├── ant08.nhvh2 │ ├── ant09.nhv2 │ ├── ant09.nhvh2 │ ├── bea00.nhv2 │ ├── bea00.nhvh2 │ ├── bea01.nhv2 │ ├── bea01.nhvh2 │ ├── bea02.nhv2 │ ├── bea02.nhvh2 │ ├── bea03.nhv2 │ ├── bea03.nhvh2 │ ├── bea05.nhv2 │ ├── bea05.nhvh2 │ ├── bea06.nhv2 │ ├── bea06.nhvh2 │ ├── bea07.nhv2 │ ├── bea07.nhvh2 │ ├── bea08.nhv2 │ ├── bea08.nhvh2 │ ├── bea09.nhv2 │ ├── bea09.nhvh2 │ ├── bea10.nhv2 │ ├── bea10.nhvh2 │ ├── bea11.nhv2 │ ├── bea11.nhvh2 │ ├── bea12.nhv2 │ ├── bea12.nhvh2 │ ├── bea13.nhv2 │ ├── bea13.nhvh2 │ ├── bea14.nhv2 │ ├── bea14.nhvh2 │ ├── bea15.nhv2 │ ├── bea15.nhvh2 │ ├── brd00.nhv2 │ ├── brd00.nhvh2 │ ├── brd01.nhv2 │ ├── brd01.nhvh2 │ ├── brd02.nhv2 │ ├── brd02.nhvh2 │ ├── brd03.nhv2 │ ├── brd03.nhvh2 │ ├── brd04.nhv2 │ ├── brd04.nhvh2 │ ├── brd05.nhv2 │ ├── brd05.nhvh2 │ ├── brd06.nhv2 │ ├── brd06.nhvh2 │ ├── brd08.nhv2 │ ├── brd08.nhvh2 │ ├── brd09.nhv2 │ ├── brd09.nhvh2 │ ├── brd11.nhv2 │ ├── brd11.nhvh2 │ ├── brd15.nhv2 │ ├── brd15.nhvh2 │ ├── brd16.nhv2 │ ├── brd16.nhvh2 │ ├── brd17.nhv2 │ ├── brd17.nhvh2 │ ├── brd18.nhv2 │ ├── brd18.nhvh2 │ ├── bul00.nhv2 │ ├── bul00.nhvh2 │ ├── bul01.nhv2 │ ├── bul01.nhvh2 │ ├── bul03.nhv2 │ ├── bul03.nhvh2 │ ├── bul05.nhv2 │ ├── bul05.nhvh2 │ ├── bul07.nhv2 │ ├── bul07.nhvh2 │ ├── bul08.nhv2 │ ├── bul08.nhvh2 │ ├── cat00.nhv2 │ ├── cat00.nhvh2 │ ├── cat01.nhv2 │ ├── cat01.nhvh2 │ ├── cat02.nhv2 │ ├── cat02.nhvh2 │ ├── cat03.nhv2 │ ├── cat03.nhvh2 │ ├── cat04.nhv2 │ ├── cat04.nhvh2 │ ├── cat05.nhv2 │ ├── cat05.nhvh2 │ ├── cat06.nhv2 │ ├── cat06.nhvh2 │ ├── cat07.nhv2 │ ├── cat07.nhvh2 │ ├── cat08.nhv2 │ ├── cat08.nhvh2 │ ├── cat09.nhv2 │ ├── cat09.nhvh2 │ ├── cat10.nhv2 │ ├── cat10.nhvh2 │ ├── cat11.nhv2 │ ├── cat11.nhvh2 │ ├── cat12.nhv2 │ ├── cat12.nhvh2 │ ├── cat13.nhv2 │ ├── cat13.nhvh2 │ ├── cat14.nhv2 │ ├── cat14.nhvh2 │ ├── cat15.nhv2 │ ├── cat15.nhvh2 │ ├── cat16.nhv2 │ ├── cat16.nhvh2 │ ├── cat17.nhv2 │ ├── cat17.nhvh2 │ ├── cat18.nhv2 │ ├── cat18.nhvh2 │ ├── cat19.nhv2 │ ├── cat19.nhvh2 │ ├── cat20.nhv2 │ ├── cat20.nhvh2 │ ├── cat21.nhv2 │ ├── cat21.nhvh2 │ ├── cat23.nhv2 │ ├── cat23.nhvh2 │ ├── cbr00.nhv2 │ ├── cbr00.nhvh2 │ ├── cbr01.nhv2 │ ├── cbr01.nhvh2 │ ├── cbr02.nhv2 │ ├── cbr02.nhvh2 │ ├── cbr03.nhv2 │ ├── cbr03.nhvh2 │ ├── cbr04.nhv2 │ ├── cbr04.nhvh2 │ ├── cbr05.nhv2 │ ├── cbr05.nhvh2 │ ├── cbr06.nhv2 │ ├── cbr06.nhvh2 │ ├── cbr07.nhv2 │ ├── cbr07.nhvh2 │ ├── cbr09.nhv2 │ ├── cbr09.nhvh2 │ ├── cbr10.nhv2 │ ├── cbr10.nhvh2 │ ├── cbr13.nhv2 │ ├── cbr13.nhvh2 │ ├── cbr14.nhv2 │ ├── cbr14.nhvh2 │ ├── cbr15.nhv2 │ ├── cbr15.nhvh2 │ ├── cbr16.nhv2 │ ├── cbr16.nhvh2 │ ├── cbr17.nhv2 │ ├── cbr17.nhvh2 │ ├── cbr18.nhv2 │ ├── cbr18.nhvh2 │ ├── cbr19.nhv2 │ ├── cbr19.nhvh2 │ ├── chn00.nhv2 │ ├── chn00.nhvh2 │ ├── chn01.nhv2 │ ├── chn01.nhvh2 │ ├── chn02.nhv2 │ ├── chn02.nhvh2 │ ├── chn05.nhv2 │ ├── chn05.nhvh2 │ ├── chn09.nhv2 │ ├── chn09.nhvh2 │ ├── chn10.nhv2 │ ├── chn10.nhvh2 │ ├── chn11.nhv2 │ ├── chn11.nhvh2 │ ├── chn12.nhv2 │ ├── chn12.nhvh2 │ ├── chn13.nhv2 │ ├── chn13.nhvh2 │ ├── cow00.nhv2 │ ├── cow00.nhvh2 │ ├── cow01.nhv2 │ ├── cow01.nhvh2 │ ├── cow06.nhv2 │ ├── cow06.nhvh2 │ ├── cow07.nhv2 │ ├── cow07.nhvh2 │ ├── crd00.nhv2 │ ├── crd00.nhvh2 │ ├── crd01.nhv2 │ ├── crd01.nhvh2 │ ├── crd02.nhv2 │ ├── crd02.nhvh2 │ ├── crd04.nhv2 │ ├── crd04.nhvh2 │ ├── crd05.nhv2 │ ├── crd05.nhvh2 │ ├── crd06.nhv2 │ ├── crd06.nhvh2 │ ├── crd07.nhv2 │ ├── crd07.nhvh2 │ ├── crd08.nhv2 │ ├── crd08.nhvh2 │ ├── der00.nhv2 │ ├── der00.nhvh2 │ ├── der01.nhv2 │ ├── der01.nhvh2 │ ├── der02.nhv2 │ ├── der02.nhvh2 │ ├── der03.nhv2 │ ├── der03.nhvh2 │ ├── der04.nhv2 │ ├── der04.nhvh2 │ ├── der05.nhv2 │ ├── der05.nhvh2 │ ├── der06.nhv2 │ ├── der06.nhvh2 │ ├── der07.nhv2 │ ├── der07.nhvh2 │ ├── der08.nhv2 │ ├── der08.nhvh2 │ ├── der09.nhv2 │ ├── der09.nhvh2 │ ├── der10.nhv2 │ ├── der10.nhvh2 │ ├── der11.nhv2 │ ├── der11.nhvh2 │ ├── dog00.nhv2 │ ├── dog00.nhvh2 │ ├── dog01.nhv2 │ ├── dog01.nhvh2 │ ├── dog02.nhv2 │ ├── dog02.nhvh2 │ ├── dog03.nhv2 │ ├── dog03.nhvh2 │ ├── dog04.nhv2 │ ├── dog04.nhvh2 │ ├── dog05.nhv2 │ ├── dog05.nhvh2 │ ├── dog06.nhv2 │ ├── dog06.nhvh2 │ ├── dog07.nhv2 │ ├── dog07.nhvh2 │ ├── dog08.nhv2 │ ├── dog08.nhvh2 │ ├── dog09.nhv2 │ ├── dog09.nhvh2 │ ├── dog10.nhv2 │ ├── dog10.nhvh2 │ ├── dog11.nhv2 │ ├── dog11.nhvh2 │ ├── dog14.nhv2 │ ├── dog14.nhvh2 │ ├── dog15.nhv2 │ ├── dog15.nhvh2 │ ├── dog16.nhv2 │ ├── dog16.nhvh2 │ ├── dog17.nhv2 │ ├── dog17.nhvh2 │ ├── dog18.nhv2 │ ├── dog18.nhvh2 │ ├── duk00.nhv2 │ ├── duk00.nhvh2 │ ├── duk01.nhv2 │ ├── duk01.nhvh2 │ ├── duk02.nhv2 │ ├── duk02.nhvh2 │ ├── duk03.nhv2 │ ├── duk03.nhvh2 │ ├── duk04.nhv2 │ ├── duk04.nhvh2 │ ├── duk05.nhv2 │ ├── duk05.nhvh2 │ ├── duk06.nhv2 │ ├── duk06.nhvh2 │ ├── duk07.nhv2 │ ├── duk07.nhvh2 │ ├── duk08.nhv2 │ ├── duk08.nhvh2 │ ├── duk09.nhv2 │ ├── duk09.nhvh2 │ ├── duk10.nhv2 │ ├── duk10.nhvh2 │ ├── duk11.nhv2 │ ├── duk11.nhvh2 │ ├── duk12.nhv2 │ ├── duk12.nhvh2 │ ├── duk13.nhv2 │ ├── duk13.nhvh2 │ ├── duk15.nhv2 │ ├── duk15.nhvh2 │ ├── duk16.nhv2 │ ├── duk16.nhvh2 │ ├── duk17.nhv2 │ ├── duk17.nhvh2 │ ├── elp00.nhv2 │ ├── elp00.nhvh2 │ ├── elp01.nhv2 │ ├── elp01.nhvh2 │ ├── elp02.nhv2 │ ├── elp02.nhvh2 │ ├── elp03.nhv2 │ ├── elp03.nhvh2 │ ├── elp04.nhv2 │ ├── elp04.nhvh2 │ ├── elp05.nhv2 │ ├── elp05.nhvh2 │ ├── elp06.nhv2 │ ├── elp06.nhvh2 │ ├── elp07.nhv2 │ ├── elp07.nhvh2 │ ├── elp09.nhv2 │ ├── elp09.nhvh2 │ ├── elp10.nhv2 │ ├── elp10.nhvh2 │ ├── elp11.nhv2 │ ├── elp11.nhvh2 │ ├── elp12.nhv2 │ ├── elp12.nhvh2 │ ├── flg00.nhv2 │ ├── flg00.nhvh2 │ ├── flg01.nhv2 │ ├── flg01.nhvh2 │ ├── flg02.nhv2 │ ├── flg02.nhvh2 │ ├── flg03.nhv2 │ ├── flg03.nhvh2 │ ├── flg04.nhv2 │ ├── flg04.nhvh2 │ ├── flg05.nhv2 │ ├── flg05.nhvh2 │ ├── flg06.nhv2 │ ├── flg06.nhvh2 │ ├── flg07.nhv2 │ ├── flg07.nhvh2 │ ├── flg09.nhv2 │ ├── flg09.nhvh2 │ ├── flg10.nhv2 │ ├── flg10.nhvh2 │ ├── flg11.nhv2 │ ├── flg11.nhvh2 │ ├── flg12.nhv2 │ ├── flg12.nhvh2 │ ├── flg13.nhv2 │ ├── flg13.nhvh2 │ ├── flg15.nhv2 │ ├── flg15.nhvh2 │ ├── flg16.nhv2 │ ├── flg16.nhvh2 │ ├── flg17.nhv2 │ ├── flg17.nhvh2 │ ├── flg18.nhv2 │ ├── flg18.nhvh2 │ ├── flg19.nhv2 │ ├── flg19.nhvh2 │ ├── goa00.nhv2 │ ├── goa00.nhvh2 │ ├── goa01.nhv2 │ ├── goa01.nhvh2 │ ├── goa02.nhv2 │ ├── goa02.nhvh2 │ ├── goa04.nhv2 │ ├── goa04.nhvh2 │ ├── goa06.nhv2 │ ├── goa06.nhvh2 │ ├── goa07.nhv2 │ ├── goa07.nhvh2 │ ├── goa08.nhv2 │ ├── goa08.nhvh2 │ ├── goa09.nhv2 │ ├── goa09.nhvh2 │ ├── gor00.nhv2 │ ├── gor00.nhvh2 │ ├── gor01.nhv2 │ ├── gor01.nhvh2 │ ├── gor02.nhv2 │ ├── gor02.nhvh2 │ ├── gor04.nhv2 │ ├── gor04.nhvh2 │ ├── gor05.nhv2 │ ├── gor05.nhvh2 │ ├── gor07.nhv2 │ ├── gor07.nhvh2 │ ├── gor08.nhv2 │ ├── gor08.nhvh2 │ ├── gor09.nhv2 │ ├── gor09.nhvh2 │ ├── gor10.nhv2 │ ├── gor10.nhvh2 │ ├── gor11.nhv2 │ ├── gor11.nhvh2 │ ├── ham00.nhv2 │ ├── ham00.nhvh2 │ ├── ham01.nhv2 │ ├── ham01.nhvh2 │ ├── ham02.nhv2 │ ├── ham02.nhvh2 │ ├── ham03.nhv2 │ ├── ham03.nhvh2 │ ├── ham04.nhv2 │ ├── ham04.nhvh2 │ ├── ham05.nhv2 │ ├── ham05.nhvh2 │ ├── ham06.nhv2 │ ├── ham06.nhvh2 │ ├── ham07.nhv2 │ ├── ham07.nhvh2 │ ├── ham09.nhv2 │ ├── ham09.nhvh2 │ ├── hip00.nhv2 │ ├── hip00.nhvh2 │ ├── hip02.nhv2 │ ├── hip02.nhvh2 │ ├── hip03.nhv2 │ ├── hip03.nhvh2 │ ├── hip04.nhv2 │ ├── hip04.nhvh2 │ ├── hip05.nhv2 │ ├── hip05.nhvh2 │ ├── hip08.nhv2 │ ├── hip08.nhvh2 │ ├── hip09.nhv2 │ ├── hip09.nhvh2 │ ├── hrs00.nhv2 │ ├── hrs00.nhvh2 │ ├── hrs01.nhv2 │ ├── hrs01.nhvh2 │ ├── hrs02.nhv2 │ ├── hrs02.nhvh2 │ ├── hrs03.nhv2 │ ├── hrs03.nhvh2 │ ├── hrs04.nhv2 │ ├── hrs04.nhvh2 │ ├── hrs05.nhv2 │ ├── hrs05.nhvh2 │ ├── hrs06.nhv2 │ ├── hrs06.nhvh2 │ ├── hrs07.nhv2 │ ├── hrs07.nhvh2 │ ├── hrs08.nhv2 │ ├── hrs08.nhvh2 │ ├── hrs09.nhv2 │ ├── hrs09.nhvh2 │ ├── hrs10.nhv2 │ ├── hrs10.nhvh2 │ ├── hrs11.nhv2 │ ├── hrs11.nhvh2 │ ├── hrs12.nhv2 │ ├── hrs12.nhvh2 │ ├── hrs13.nhv2 │ ├── hrs13.nhvh2 │ ├── hrs16.nhv2 │ ├── hrs16.nhvh2 │ ├── kal00.nhv2 │ ├── kal00.nhvh2 │ ├── kal01.nhv2 │ ├── kal01.nhvh2 │ ├── kal02.nhv2 │ ├── kal02.nhvh2 │ ├── kal03.nhv2 │ ├── kal03.nhvh2 │ ├── kal04.nhv2 │ ├── kal04.nhvh2 │ ├── kal05.nhv2 │ ├── kal05.nhvh2 │ ├── kal07.nhv2 │ ├── kal07.nhvh2 │ ├── kal08.nhv2 │ ├── kal08.nhvh2 │ ├── kal09.nhv2 │ ├── kal09.nhvh2 │ ├── kal10.nhv2 │ ├── kal10.nhvh2 │ ├── kgr00.nhv2 │ ├── kgr00.nhvh2 │ ├── kgr01.nhv2 │ ├── kgr01.nhvh2 │ ├── kgr02.nhv2 │ ├── kgr02.nhvh2 │ ├── kgr05.nhv2 │ ├── kgr05.nhvh2 │ ├── kgr06.nhv2 │ ├── kgr06.nhvh2 │ ├── kgr08.nhv2 │ ├── kgr08.nhvh2 │ ├── kgr09.nhv2 │ ├── kgr09.nhvh2 │ ├── kgr10.nhv2 │ ├── kgr10.nhvh2 │ ├── lon00.nhv2 │ ├── lon00.nhvh2 │ ├── lon01.nhv2 │ ├── lon01.nhvh2 │ ├── lon02.nhv2 │ ├── lon02.nhvh2 │ ├── lon04.nhv2 │ ├── lon04.nhvh2 │ ├── lon06.nhv2 │ ├── lon06.nhvh2 │ ├── lon07.nhv2 │ ├── lon07.nhvh2 │ ├── lon08.nhv2 │ ├── lon08.nhvh2 │ ├── mnk01.nhv2 │ ├── mnk01.nhvh2 │ ├── mnk02.nhv2 │ ├── mnk02.nhvh2 │ ├── mnk03.nhv2 │ ├── mnk03.nhvh2 │ ├── mnk04.nhv2 │ ├── mnk04.nhvh2 │ ├── mnk05.nhv2 │ ├── mnk05.nhvh2 │ ├── mnk06.nhv2 │ ├── mnk06.nhvh2 │ ├── mnk07.nhv2 │ ├── mnk07.nhvh2 │ ├── mnk08.nhv2 │ ├── mnk08.nhvh2 │ ├── mnk09.nhv2 │ ├── mnk09.nhvh2 │ ├── mus00.nhv2 │ ├── mus00.nhvh2 │ ├── mus01.nhv2 │ ├── mus01.nhvh2 │ ├── mus02.nhv2 │ ├── mus02.nhvh2 │ ├── mus03.nhv2 │ ├── mus03.nhvh2 │ ├── mus04.nhv2 │ ├── mus04.nhvh2 │ ├── mus05.nhv2 │ ├── mus05.nhvh2 │ ├── mus08.nhv2 │ ├── mus08.nhvh2 │ ├── mus09.nhv2 │ ├── mus09.nhvh2 │ ├── mus10.nhv2 │ ├── mus10.nhvh2 │ ├── mus12.nhv2 │ ├── mus12.nhvh2 │ ├── mus14.nhv2 │ ├── mus14.nhvh2 │ ├── mus15.nhv2 │ ├── mus15.nhvh2 │ ├── mus16.nhv2 │ ├── mus16.nhvh2 │ ├── mus17.nhv2 │ ├── mus17.nhvh2 │ ├── mus18.nhv2 │ ├── mus18.nhvh2 │ ├── mus19.nhv2 │ ├── mus19.nhvh2 │ ├── ocp00.nhv2 │ ├── ocp00.nhvh2 │ ├── ocp01.nhv2 │ ├── ocp01.nhvh2 │ ├── ocp02.nhv2 │ ├── ocp02.nhvh2 │ ├── ocp04.nhv2 │ ├── ocp04.nhvh2 │ ├── ost00.nhv2 │ ├── ost00.nhvh2 │ ├── ost01.nhv2 │ ├── ost01.nhvh2 │ ├── ost02.nhv2 │ ├── ost02.nhvh2 │ ├── ost03.nhv2 │ ├── ost03.nhvh2 │ ├── ost04.nhv2 │ ├── ost04.nhvh2 │ ├── ost05.nhv2 │ ├── ost05.nhvh2 │ ├── ost06.nhv2 │ ├── ost06.nhvh2 │ ├── ost07.nhv2 │ ├── ost07.nhvh2 │ ├── ost08.nhv2 │ ├── ost08.nhvh2 │ ├── ost09.nhv2 │ ├── ost09.nhvh2 │ ├── ost10.nhv2 │ ├── ost10.nhvh2 │ ├── pbr00.nhv2 │ ├── pbr00.nhvh2 │ ├── pbr01.nhv2 │ ├── pbr01.nhvh2 │ ├── pbr02.nhv2 │ ├── pbr02.nhvh2 │ ├── pbr03.nhv2 │ ├── pbr03.nhvh2 │ ├── pbr05.nhv2 │ ├── pbr05.nhvh2 │ ├── pbr06.nhv2 │ ├── pbr06.nhvh2 │ ├── pbr07.nhv2 │ ├── pbr07.nhvh2 │ ├── pbr08.nhv2 │ ├── pbr08.nhvh2 │ ├── pbr09.nhv2 │ ├── pbr09.nhvh2 │ ├── pbr10.nhv2 │ ├── pbr10.nhvh2 │ ├── pgn00.nhv2 │ ├── pgn00.nhvh2 │ ├── pgn01.nhv2 │ ├── pgn01.nhvh2 │ ├── pgn02.nhv2 │ ├── pgn02.nhvh2 │ ├── pgn03.nhv2 │ ├── pgn03.nhvh2 │ ├── pgn04.nhv2 │ ├── pgn04.nhvh2 │ ├── pgn05.nhv2 │ ├── pgn05.nhvh2 │ ├── pgn06.nhv2 │ ├── pgn06.nhvh2 │ ├── pgn07.nhv2 │ ├── pgn07.nhvh2 │ ├── pgn09.nhv2 │ ├── pgn09.nhvh2 │ ├── pgn10.nhv2 │ ├── pgn10.nhvh2 │ ├── pgn11.nhv2 │ ├── pgn11.nhvh2 │ ├── pgn12.nhv2 │ ├── pgn12.nhvh2 │ ├── pgn13.nhv2 │ ├── pgn13.nhvh2 │ ├── pgn14.nhv2 │ ├── pgn14.nhvh2 │ ├── pig00.nhv2 │ ├── pig00.nhvh2 │ ├── pig01.nhv2 │ ├── pig01.nhvh2 │ ├── pig02.nhv2 │ ├── pig02.nhvh2 │ ├── pig03.nhv2 │ ├── pig03.nhvh2 │ ├── pig04.nhv2 │ ├── pig04.nhvh2 │ ├── pig05.nhv2 │ ├── pig05.nhvh2 │ ├── pig08.nhv2 │ ├── pig08.nhvh2 │ ├── pig09.nhv2 │ ├── pig09.nhvh2 │ ├── pig10.nhv2 │ ├── pig10.nhvh2 │ ├── pig11.nhv2 │ ├── pig11.nhvh2 │ ├── pig13.nhv2 │ ├── pig13.nhvh2 │ ├── pig14.nhv2 │ ├── pig14.nhvh2 │ ├── pig15.nhv2 │ ├── pig15.nhvh2 │ ├── pig16.nhv2 │ ├── pig16.nhvh2 │ ├── pig17.nhv2 │ ├── pig17.nhvh2 │ ├── rbt00.nhv2 │ ├── rbt00.nhvh2 │ ├── rbt01.nhv2 │ ├── rbt01.nhvh2 │ ├── rbt02.nhv2 │ ├── rbt02.nhvh2 │ ├── rbt03.nhv2 │ ├── rbt03.nhvh2 │ ├── rbt04.nhv2 │ ├── rbt04.nhvh2 │ ├── rbt05.nhv2 │ ├── rbt05.nhvh2 │ ├── rbt06.nhv2 │ ├── rbt06.nhvh2 │ ├── rbt07.nhv2 │ ├── rbt07.nhvh2 │ ├── rbt08.nhv2 │ ├── rbt08.nhvh2 │ ├── rbt09.nhv2 │ ├── rbt09.nhvh2 │ ├── rbt10.nhv2 │ ├── rbt10.nhvh2 │ ├── rbt11.nhv2 │ ├── rbt11.nhvh2 │ ├── rbt12.nhv2 │ ├── rbt12.nhvh2 │ ├── rbt13.nhv2 │ ├── rbt13.nhvh2 │ ├── rbt14.nhv2 │ ├── rbt14.nhvh2 │ ├── rbt15.nhv2 │ ├── rbt15.nhvh2 │ ├── rbt16.nhv2 │ ├── rbt16.nhvh2 │ ├── rbt17.nhv2 │ ├── rbt17.nhvh2 │ ├── rbt18.nhv2 │ ├── rbt18.nhvh2 │ ├── rbt19.nhv2 │ ├── rbt19.nhvh2 │ ├── rbt20.nhv2 │ ├── rbt20.nhvh2 │ ├── rbt21.nhv2 │ ├── rbt21.nhvh2 │ ├── rhn00.nhv2 │ ├── rhn00.nhvh2 │ ├── rhn01.nhv2 │ ├── rhn01.nhvh2 │ ├── rhn02.nhv2 │ ├── rhn02.nhvh2 │ ├── rhn04.nhv2 │ ├── rhn04.nhvh2 │ ├── rhn05.nhv2 │ ├── rhn05.nhvh2 │ ├── rhn07.nhv2 │ ├── rhn07.nhvh2 │ ├── rhn08.nhv2 │ ├── rhn08.nhvh2 │ ├── shp00.nhv2 │ ├── shp00.nhvh2 │ ├── shp01.nhv2 │ ├── shp01.nhvh2 │ ├── shp02.nhv2 │ ├── shp02.nhvh2 │ ├── shp03.nhv2 │ ├── shp03.nhvh2 │ ├── shp04.nhv2 │ ├── shp04.nhvh2 │ ├── shp07.nhv2 │ ├── shp07.nhvh2 │ ├── shp08.nhv2 │ ├── shp08.nhvh2 │ ├── shp09.nhv2 │ ├── shp09.nhvh2 │ ├── shp10.nhv2 │ ├── shp10.nhvh2 │ ├── shp11.nhv2 │ ├── shp11.nhvh2 │ ├── shp12.nhv2 │ ├── shp12.nhvh2 │ ├── shp13.nhv2 │ ├── shp13.nhvh2 │ ├── shp14.nhv2 │ ├── shp14.nhvh2 │ ├── shp15.nhv2 │ ├── shp15.nhvh2 │ ├── squ00.nhv2 │ ├── squ00.nhvh2 │ ├── squ01.nhv2 │ ├── squ01.nhvh2 │ ├── squ02.nhv2 │ ├── squ02.nhvh2 │ ├── squ03.nhv2 │ ├── squ03.nhvh2 │ ├── squ04.nhv2 │ ├── squ04.nhvh2 │ ├── squ05.nhv2 │ ├── squ05.nhvh2 │ ├── squ06.nhv2 │ ├── squ06.nhvh2 │ ├── squ07.nhv2 │ ├── squ07.nhvh2 │ ├── squ08.nhv2 │ ├── squ08.nhvh2 │ ├── squ09.nhv2 │ ├── squ09.nhvh2 │ ├── squ10.nhv2 │ ├── squ10.nhvh2 │ ├── squ11.nhv2 │ ├── squ11.nhvh2 │ ├── squ13.nhv2 │ ├── squ13.nhvh2 │ ├── squ14.nhv2 │ ├── squ14.nhvh2 │ ├── squ15.nhv2 │ ├── squ15.nhvh2 │ ├── squ16.nhv2 │ ├── squ16.nhvh2 │ ├── squ17.nhv2 │ ├── squ17.nhvh2 │ ├── squ18.nhv2 │ ├── squ18.nhvh2 │ ├── squ21.nhv2 │ ├── squ21.nhvh2 │ ├── tig00.nhv2 │ ├── tig00.nhvh2 │ ├── tig01.nhv2 │ ├── tig01.nhvh2 │ ├── tig02.nhv2 │ ├── tig02.nhvh2 │ ├── tig03.nhv2 │ ├── tig03.nhvh2 │ ├── tig04.nhv2 │ ├── tig04.nhvh2 │ ├── tig05.nhv2 │ ├── tig05.nhvh2 │ ├── tig06.nhv2 │ ├── tig06.nhvh2 │ ├── wol00.nhv2 │ ├── wol00.nhvh2 │ ├── wol01.nhv2 │ ├── wol01.nhvh2 │ ├── wol02.nhv2 │ ├── wol02.nhvh2 │ ├── wol03.nhv2 │ ├── wol03.nhvh2 │ ├── wol04.nhv2 │ ├── wol04.nhvh2 │ ├── wol05.nhv2 │ ├── wol05.nhvh2 │ ├── wol06.nhv2 │ ├── wol06.nhvh2 │ ├── wol08.nhv2 │ ├── wol08.nhvh2 │ ├── wol09.nhv2 │ ├── wol09.nhvh2 │ ├── wol10.nhv2 │ ├── wol10.nhvh2 │ ├── wol12.nhv2 │ └── wol12.nhvh2 ├── acnhpoker.csproj ├── acnhpoker.csproj.user ├── csv │ ├── field.csv │ ├── flowers.csv │ ├── items.csv │ ├── kind.csv │ ├── override.csv │ ├── recipes.csv │ └── variations.csv ├── packages.config ├── save │ ├── (2)Fish.nhbs │ ├── (2)Insect.nhbs │ ├── (3)Fence.nhbs │ ├── (4)Flower.nhbs │ ├── (4)Materials.nhbs │ ├── (8)StarFragment.nhbs │ ├── 1100Update.nhi │ ├── 1110Update.nhi │ ├── AugUpdate.nhi │ ├── Cherry-blossom.nhi │ ├── Cinnamoroll.nhi │ ├── Cone.nhg │ ├── DIY[A-Z].nhbs │ ├── DIY[ID].nhbs │ ├── Demo.nhg │ ├── Demo.nhi │ ├── Empty.nhg │ ├── FakeArt.nhi │ ├── Festivale[1].nhi │ ├── Festivale[2].nhi │ ├── Festivale[3].nhi │ ├── Fossil.nhbs │ ├── GoldenTools.nhi │ ├── Gulliver.nhi │ ├── Halloween[1].nhi │ ├── Halloween[2].nhi │ ├── Halloween[3].nhi │ ├── Halloween[4].nhi │ ├── Hello Kitty.nhi │ ├── Kerokerokeroppi.nhi │ ├── Kiki&Lala.nhi │ ├── Mario[1].nhi │ ├── Mario[2].nhi │ ├── Mermaid.nhi │ ├── Mom[1].nhi │ ├── Mom[2].nhi │ ├── Mush.nhi │ ├── My Melody.nhi │ ├── NPCItem[1].nhi │ ├── NPCItem[2].nhi │ ├── NewDIY[A-Z].nhbs │ ├── NewDIY[id].nhbs │ ├── NookMilesItem[1].nhi │ ├── NookMilesItem[2].nhi │ ├── NookMilesItem[3].nhi │ ├── Photo.nhbs │ ├── Photo[A-Z].nhbs │ ├── Photo[ID].nhbs │ ├── Pirate.nhi │ ├── Pompompurin.nhi │ ├── Poster.nhbs │ ├── Poster[A-Z].nhbs │ ├── Poster[ID].nhbs │ ├── RealArt[01].nhi │ ├── RealArt[02].nhi │ ├── Sanrio Update[1].nhi │ ├── Sanrio Update[2].nhi │ ├── Sanrio Update[3].nhi │ ├── SeaCreature.nhi │ ├── SnorkelWetSuit.nhi │ ├── Song.nhbs │ ├── Song2.nhi │ ├── Wedding[1].nhi │ ├── Wedding[2].nhi │ ├── Winter[1].nhi │ ├── Winter[2].nhi │ ├── Winter[3].nhi │ ├── Winter[4].nhi │ ├── ZodiacFigurine.nhi │ └── twitch[template].json └── twitch[template].json ├── azure-pipelines.yml └── packages ├── AsyncAwaitBestPractices.6.0.4 ├── .signature.p7s ├── AsyncAwaitBestPractices.6.0.4.nupkg ├── README.md └── lib │ ├── netstandard1.0 │ ├── AsyncAwaitBestPractices.dll │ └── AsyncAwaitBestPractices.xml │ ├── netstandard2.0 │ ├── AsyncAwaitBestPractices.dll │ └── AsyncAwaitBestPractices.xml │ └── netstandard2.1 │ ├── AsyncAwaitBestPractices.dll │ └── AsyncAwaitBestPractices.xml ├── AutoCompleteMenu-ScintillaNET.1.6.2 ├── .signature.p7s ├── AutoCompleteMenu-ScintillaNET.1.6.2.nupkg └── lib │ └── net461 │ └── AutocompleteMenu-ScintillaNET.dll ├── DotNetZip.1.16.0 ├── .signature.p7s ├── DotNetZip.1.16.0.nupkg └── lib │ ├── net40 │ ├── DotNetZip.dll │ ├── DotNetZip.pdb │ └── DotNetZip.xml │ └── netstandard2.0 │ ├── DotNetZip.dll │ ├── DotNetZip.pdb │ └── DotNetZip.xml ├── LibUsbDotNet.2.2.29 ├── .signature.p7s ├── LibUsbDotNet.2.2.29.nupkg └── lib │ ├── net45 │ ├── LibUsbDotNet.LibUsbDotNet.dll │ └── LibUsbDotNet.LibUsbDotNet.pdb │ ├── netcoreapp2.0 │ ├── LibUsbDotNet.LibUsbDotNet.dll │ └── LibUsbDotNet.LibUsbDotNet.pdb │ ├── netstandard1.6 │ ├── LibUsbDotNet.LibUsbDotNet.dll │ └── LibUsbDotNet.LibUsbDotNet.pdb │ └── netstandard2.0 │ ├── LibUsbDotNet.LibUsbDotNet.dll │ └── LibUsbDotNet.LibUsbDotNet.pdb ├── Microsoft.Extensions.Logging.Abstractions.6.0.0 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── Microsoft.Extensions.Logging.Abstractions.6.0.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── analyzers │ └── dotnet │ │ ├── roslyn3.11 │ │ └── cs │ │ │ ├── Microsoft.Extensions.Logging.Generators.dll │ │ │ ├── cs │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── de │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── es │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── fr │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── it │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── ja │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── ko │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── pl │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── pt-BR │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── ru │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── tr │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ ├── zh-Hans │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ │ └── zh-Hant │ │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ └── roslyn4.0 │ │ └── cs │ │ ├── Microsoft.Extensions.Logging.Generators.dll │ │ ├── cs │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── de │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── es │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── fr │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── it │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── ja │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── ko │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── pl │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── pt-BR │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── ru │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── tr │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ ├── zh-Hans │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll │ │ └── zh-Hant │ │ └── Microsoft.Extensions.Logging.Generators.resources.dll ├── build │ └── Microsoft.Extensions.Logging.Abstractions.targets ├── buildTransitive │ ├── netcoreapp2.0 │ │ └── Microsoft.Extensions.Logging.Abstractions.targets │ └── netcoreapp3.1 │ │ └── _._ ├── lib │ ├── net461 │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ └── Microsoft.Extensions.Logging.Abstractions.xml │ ├── net6.0 │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ └── Microsoft.Extensions.Logging.Abstractions.xml │ └── netstandard2.0 │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ └── Microsoft.Extensions.Logging.Abstractions.xml └── useSharedDesignerContext.txt ├── Microsoft.Win32.Registry.6.0.0-preview.2.21154.6 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── Microsoft.Win32.Registry.6.0.0-preview.2.21154.6.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net46 │ │ └── Microsoft.Win32.Registry.dll │ ├── net461 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml │ ├── netstandard1.3 │ │ └── Microsoft.Win32.Registry.dll │ └── netstandard2.0 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml ├── ref │ ├── net46 │ │ └── Microsoft.Win32.Registry.dll │ ├── net461 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml │ ├── netstandard1.3 │ │ ├── Microsoft.Win32.Registry.dll │ │ ├── Microsoft.Win32.Registry.xml │ │ ├── de │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── es │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── fr │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── it │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── ja │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── ko │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── ru │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── zh-hans │ │ │ └── Microsoft.Win32.Registry.xml │ │ └── zh-hant │ │ │ └── Microsoft.Win32.Registry.xml │ └── netstandard2.0 │ │ ├── Microsoft.Win32.Registry.dll │ │ └── Microsoft.Win32.Registry.xml └── runtimes │ └── win │ └── lib │ ├── net46 │ └── Microsoft.Win32.Registry.dll │ ├── net461 │ ├── Microsoft.Win32.Registry.dll │ └── Microsoft.Win32.Registry.xml │ ├── netstandard1.3 │ └── Microsoft.Win32.Registry.dll │ └── netstandard2.0 │ ├── Microsoft.Win32.Registry.dll │ └── Microsoft.Win32.Registry.xml ├── NAudio.2.0.1 ├── .signature.p7s ├── NAudio.2.0.1.nupkg ├── lib │ └── netstandard2.0 │ │ ├── NAudio.dll │ │ └── NAudio.xml ├── license.txt └── naudio-icon.png ├── NAudio.Asio.2.0.0 ├── .signature.p7s ├── NAudio.Asio.2.0.0.nupkg ├── lib │ └── netstandard2.0 │ │ └── NAudio.Asio.dll └── naudio-icon.png ├── NAudio.Core.2.0.0 ├── .signature.p7s ├── NAudio.Core.2.0.0.nupkg ├── lib │ └── netstandard2.0 │ │ └── NAudio.Core.dll └── naudio-icon.png ├── NAudio.Midi.2.0.1 ├── .signature.p7s ├── NAudio.Midi.2.0.1.nupkg ├── lib │ └── netstandard2.0 │ │ └── NAudio.Midi.dll └── naudio-icon.png ├── NAudio.Wasapi.2.0.0 ├── .signature.p7s ├── NAudio.Wasapi.2.0.0.nupkg ├── lib │ ├── netstandard2.0 │ │ └── NAudio.Wasapi.dll │ └── uap10.0.17763 │ │ ├── NAudio.Wasapi.dll │ │ └── NAudio.Wasapi.pri └── naudio-icon.png ├── NAudio.WinForms.2.0.1 ├── .signature.p7s ├── NAudio.WinForms.2.0.1.nupkg ├── lib │ ├── net472 │ │ └── NAudio.WinForms.dll │ └── netcoreapp3.1 │ │ └── NAudio.WinForms.dll └── naudio-icon.png ├── NAudio.WinMM.2.0.1 ├── .signature.p7s ├── NAudio.WinMM.2.0.1.nupkg ├── lib │ └── netstandard2.0 │ │ └── NAudio.WinMM.dll └── naudio-icon.png ├── Newtonsoft.Json.13.0.1 ├── .signature.p7s ├── LICENSE.md ├── Newtonsoft.Json.13.0.1.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── packageIcon.png ├── System.Buffers.4.5.1 ├── .signature.p7s ├── LICENSE.TXT ├── System.Buffers.4.5.1.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net461 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.1 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ ├── netstandard2.0 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ └── uap10.0.16299 │ │ └── _._ ├── ref │ ├── net45 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.1 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ ├── netstandard2.0 │ │ ├── System.Buffers.dll │ │ └── System.Buffers.xml │ └── uap10.0.16299 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── System.Collections.Specialized.4.3.0 ├── .signature.p7s ├── System.Collections.Specialized.4.3.0.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Collections.Specialized.dll │ ├── netstandard1.3 │ │ └── System.Collections.Specialized.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net46 │ └── System.Collections.Specialized.dll │ ├── netstandard1.3 │ ├── System.Collections.Specialized.dll │ ├── System.Collections.Specialized.xml │ ├── de │ │ └── System.Collections.Specialized.xml │ ├── es │ │ └── System.Collections.Specialized.xml │ ├── fr │ │ └── System.Collections.Specialized.xml │ ├── it │ │ └── System.Collections.Specialized.xml │ ├── ja │ │ └── System.Collections.Specialized.xml │ ├── ko │ │ └── System.Collections.Specialized.xml │ ├── ru │ │ └── System.Collections.Specialized.xml │ ├── zh-hans │ │ └── System.Collections.Specialized.xml │ └── zh-hant │ │ └── System.Collections.Specialized.xml │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Memory.4.5.4 ├── .signature.p7s ├── LICENSE.TXT ├── System.Memory.4.5.4.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net461 │ │ ├── System.Memory.dll │ │ └── System.Memory.xml │ ├── netcoreapp2.1 │ │ └── _._ │ ├── netstandard1.1 │ │ ├── System.Memory.dll │ │ └── System.Memory.xml │ └── netstandard2.0 │ │ ├── System.Memory.dll │ │ └── System.Memory.xml ├── ref │ └── netcoreapp2.1 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── System.Numerics.Vectors.4.5.0 ├── .signature.p7s ├── LICENSE.TXT ├── System.Numerics.Vectors.4.5.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netstandard2.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── portable-net45+win8+wp8+wpa81 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── uap10.0.16299 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── net46 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── netstandard2.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ ├── uap10.0.16299 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── System.Reflection.Emit.Lightweight.4.7.0 ├── .signature.p7s ├── LICENSE.TXT ├── System.Reflection.Emit.Lightweight.4.7.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── netcore50 │ │ └── System.Reflection.Emit.Lightweight.dll │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ └── System.Reflection.Emit.Lightweight.xml │ ├── netstandard1.3 │ │ └── System.Reflection.Emit.Lightweight.dll │ ├── netstandard2.0 │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ └── System.Reflection.Emit.Lightweight.xml │ ├── netstandard2.1 │ │ └── _._ │ ├── portable-net45+wp8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── netcoreapp2.0 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ ├── System.Reflection.Emit.Lightweight.xml │ │ ├── de │ │ │ └── System.Reflection.Emit.Lightweight.xml │ │ ├── es │ │ │ └── System.Reflection.Emit.Lightweight.xml │ │ ├── fr │ │ │ └── System.Reflection.Emit.Lightweight.xml │ │ ├── it │ │ │ └── System.Reflection.Emit.Lightweight.xml │ │ ├── ja │ │ │ └── System.Reflection.Emit.Lightweight.xml │ │ ├── ko │ │ │ └── System.Reflection.Emit.Lightweight.xml │ │ ├── ru │ │ │ └── System.Reflection.Emit.Lightweight.xml │ │ ├── zh-hans │ │ │ └── System.Reflection.Emit.Lightweight.xml │ │ └── zh-hant │ │ │ └── System.Reflection.Emit.Lightweight.xml │ ├── netstandard2.0 │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ └── System.Reflection.Emit.Lightweight.xml │ ├── netstandard2.1 │ │ └── _._ │ ├── portable-net45+wp8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── runtimes │ └── aot │ │ └── lib │ │ └── netcore50 │ │ ├── System.Reflection.Emit.Lightweight.dll │ │ └── System.Reflection.Emit.Lightweight.xml ├── useSharedDesignerContext.txt └── version.txt ├── System.Runtime.CompilerServices.Unsafe.6.0.0 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── System.Runtime.CompilerServices.Unsafe.6.0.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── buildTransitive │ ├── netcoreapp2.0 │ │ └── System.Runtime.CompilerServices.Unsafe.targets │ └── netcoreapp3.1 │ │ └── _._ ├── lib │ ├── net461 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── net6.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ ├── netcoreapp3.1 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ └── netstandard2.0 │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ └── System.Runtime.CompilerServices.Unsafe.xml └── useSharedDesignerContext.txt ├── System.Runtime.Extensions.4.3.1 ├── .signature.p7s ├── System.Runtime.Extensions.4.3.1.nupkg ├── ThirdPartyNotices.txt ├── dotnet_library_license.txt ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── net462 │ │ └── System.Runtime.Extensions.dll │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ ├── win8 │ │ └── _._ │ ├── wp80 │ │ └── _._ │ ├── wpa81 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ └── ref │ ├── MonoAndroid10 │ └── _._ │ ├── MonoTouch10 │ └── _._ │ ├── net45 │ └── _._ │ ├── net462 │ └── System.Runtime.Extensions.dll │ ├── netcore50 │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── netstandard1.0 │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── netstandard1.3 │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── netstandard1.5 │ ├── System.Runtime.Extensions.dll │ ├── System.Runtime.Extensions.xml │ ├── de │ │ └── System.Runtime.Extensions.xml │ ├── es │ │ └── System.Runtime.Extensions.xml │ ├── fr │ │ └── System.Runtime.Extensions.xml │ ├── it │ │ └── System.Runtime.Extensions.xml │ ├── ja │ │ └── System.Runtime.Extensions.xml │ ├── ko │ │ └── System.Runtime.Extensions.xml │ ├── ru │ │ └── System.Runtime.Extensions.xml │ ├── zh-hans │ │ └── System.Runtime.Extensions.xml │ └── zh-hant │ │ └── System.Runtime.Extensions.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── win8 │ └── _._ │ ├── wp80 │ └── _._ │ ├── wpa81 │ └── _._ │ ├── xamarinios10 │ └── _._ │ ├── xamarinmac20 │ └── _._ │ ├── xamarintvos10 │ └── _._ │ └── xamarinwatchos10 │ └── _._ ├── System.Security.AccessControl.6.0.0 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── System.Security.AccessControl.6.0.0.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── buildTransitive │ ├── netcoreapp2.0 │ │ └── System.Security.AccessControl.targets │ └── netcoreapp3.1 │ │ └── _._ ├── lib │ ├── net461 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml │ ├── net6.0 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml │ └── netstandard2.0 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml ├── runtimes │ └── win │ │ └── lib │ │ ├── net461 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml │ │ ├── net6.0 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml │ │ └── netstandard2.0 │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.AccessControl.xml └── useSharedDesignerContext.txt ├── System.Security.Principal.Windows.6.0.0-preview.2.21154.6 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── System.Security.Principal.Windows.6.0.0-preview.2.21154.6.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net46 │ │ └── System.Security.Principal.Windows.dll │ ├── net461 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ ├── netstandard1.3 │ │ └── System.Security.Principal.Windows.dll │ └── netstandard2.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml ├── ref │ ├── net46 │ │ └── System.Security.Principal.Windows.dll │ ├── net461 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ ├── netcoreapp3.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ ├── netstandard1.3 │ │ ├── System.Security.Principal.Windows.dll │ │ ├── System.Security.Principal.Windows.xml │ │ ├── de │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── es │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── fr │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── it │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── ja │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── ko │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── ru │ │ │ └── System.Security.Principal.Windows.xml │ │ ├── zh-hans │ │ │ └── System.Security.Principal.Windows.xml │ │ └── zh-hant │ │ │ └── System.Security.Principal.Windows.xml │ └── netstandard2.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml └── runtimes │ ├── unix │ └── lib │ │ ├── netcoreapp2.1 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ │ └── netstandard2.0 │ │ ├── System.Security.Principal.Windows.dll │ │ └── System.Security.Principal.Windows.xml │ └── win │ └── lib │ ├── net46 │ └── System.Security.Principal.Windows.dll │ ├── net461 │ ├── System.Security.Principal.Windows.dll │ └── System.Security.Principal.Windows.xml │ ├── netcoreapp2.1 │ ├── System.Security.Principal.Windows.dll │ └── System.Security.Principal.Windows.xml │ ├── netstandard1.3 │ └── System.Security.Principal.Windows.dll │ └── netstandard2.0 │ ├── System.Security.Principal.Windows.dll │ └── System.Security.Principal.Windows.xml ├── System.Threading.Tasks.Extensions.4.5.4 ├── .signature.p7s ├── LICENSE.TXT ├── System.Threading.Tasks.Extensions.4.5.4.nupkg ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net461 │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ ├── netcoreapp2.1 │ │ └── _._ │ ├── netstandard1.0 │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ ├── netstandard2.0 │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ ├── portable-net45+win8+wp8+wpa81 │ │ ├── System.Threading.Tasks.Extensions.dll │ │ └── System.Threading.Tasks.Extensions.xml │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── netcoreapp2.1 │ │ └── _._ │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ ├── useSharedDesignerContext.txt └── version.txt ├── TwitchLib.Communication.1.0.3 ├── .signature.p7s ├── TwitchLib.Communication.1.0.3.nupkg └── lib │ └── netstandard2.0 │ └── TwitchLib.Communication.dll ├── TwitchLib.PubSub.3.2.3 ├── .signature.p7s ├── TwitchLib.PubSub.3.2.3.nupkg └── lib │ └── netstandard2.0 │ ├── TwitchLib.PubSub.dll │ └── TwitchLib.PubSub.xml ├── WinFormsToggleSwitch.1.1.0 ├── .signature.p7s ├── WinFormsToggleSwitch.1.1.0.nupkg └── lib │ └── net40 │ └── ToggleSwitch.dll └── jacobslusser.ScintillaNET.3.6.3 ├── .signature.p7s ├── jacobslusser.ScintillaNET.3.6.3.nupkg └── lib └── net40 ├── ScintillaNET.dll └── ScintillaNET.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/README.md -------------------------------------------------------------------------------- /acnhpoker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker.sln -------------------------------------------------------------------------------- /acnhpoker/ACLeaf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/ACLeaf.ico -------------------------------------------------------------------------------- /acnhpoker/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/App.config -------------------------------------------------------------------------------- /acnhpoker/Custom/CountDownTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/CountDownTimer.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/ExtendedPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/ExtendedPanel.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/HexUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/HexUpDown.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/ImgRetriever.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/ImgRetriever.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/ImgRetriever.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/ImgRetriever.resx -------------------------------------------------------------------------------- /acnhpoker/Custom/LoopStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/LoopStream.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/MyComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/MyComboBox.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/MyProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/MyProgressBar.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/MyStopWatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/MyStopWatch.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/MyStopWatch.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/MyStopWatch.resx -------------------------------------------------------------------------------- /acnhpoker/Custom/USBBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/USBBot.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/VillagerSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/VillagerSelector.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/myMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/myMessageBox.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/variation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/variation.Designer.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/variation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/variation.cs -------------------------------------------------------------------------------- /acnhpoker/Custom/variation.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Custom/variation.resx -------------------------------------------------------------------------------- /acnhpoker/Discord/DiscordStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Discord/DiscordStructs.cs -------------------------------------------------------------------------------- /acnhpoker/Discord/DiscordUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Discord/DiscordUtils.cs -------------------------------------------------------------------------------- /acnhpoker/Discord/DiscordWebHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Discord/DiscordWebHook.cs -------------------------------------------------------------------------------- /acnhpoker/Dodo/controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Dodo/controller.cs -------------------------------------------------------------------------------- /acnhpoker/Dodo/dodo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Dodo/dodo.Designer.cs -------------------------------------------------------------------------------- /acnhpoker/Dodo/dodo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Dodo/dodo.cs -------------------------------------------------------------------------------- /acnhpoker/Dodo/dodo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Dodo/dodo.resx -------------------------------------------------------------------------------- /acnhpoker/Dodo/teleport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Dodo/teleport.Designer.cs -------------------------------------------------------------------------------- /acnhpoker/Dodo/teleport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Dodo/teleport.cs -------------------------------------------------------------------------------- /acnhpoker/Dodo/teleport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Dodo/teleport.resx -------------------------------------------------------------------------------- /acnhpoker/Form1.Critter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Form1.Critter.cs -------------------------------------------------------------------------------- /acnhpoker/Form1.Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Form1.Debug.cs -------------------------------------------------------------------------------- /acnhpoker/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Form1.Designer.cs -------------------------------------------------------------------------------- /acnhpoker/Form1.Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Form1.Item.cs -------------------------------------------------------------------------------- /acnhpoker/Form1.Other.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Form1.Other.cs -------------------------------------------------------------------------------- /acnhpoker/Form1.Villager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Form1.Villager.cs -------------------------------------------------------------------------------- /acnhpoker/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Form1.cs -------------------------------------------------------------------------------- /acnhpoker/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Form1.resx -------------------------------------------------------------------------------- /acnhpoker/Inventory/ItemAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Inventory/ItemAttr.cs -------------------------------------------------------------------------------- /acnhpoker/Inventory/inventorySlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Inventory/inventorySlot.cs -------------------------------------------------------------------------------- /acnhpoker/Map/Freezer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/Freezer.Designer.cs -------------------------------------------------------------------------------- /acnhpoker/Map/Freezer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/Freezer.cs -------------------------------------------------------------------------------- /acnhpoker/Map/Freezer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/Freezer.resx -------------------------------------------------------------------------------- /acnhpoker/Map/MapRegenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/MapRegenerator.cs -------------------------------------------------------------------------------- /acnhpoker/Map/MapRegenerator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/MapRegenerator.resx -------------------------------------------------------------------------------- /acnhpoker/Map/bulkSpawn.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/bulkSpawn.Designer.cs -------------------------------------------------------------------------------- /acnhpoker/Map/bulkSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/bulkSpawn.cs -------------------------------------------------------------------------------- /acnhpoker/Map/bulkSpawn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/bulkSpawn.resx -------------------------------------------------------------------------------- /acnhpoker/Map/bulldozer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/bulldozer.Designer.cs -------------------------------------------------------------------------------- /acnhpoker/Map/bulldozer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/bulldozer.cs -------------------------------------------------------------------------------- /acnhpoker/Map/bulldozer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/bulldozer.resx -------------------------------------------------------------------------------- /acnhpoker/Map/floorSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/floorSlot.cs -------------------------------------------------------------------------------- /acnhpoker/Map/map.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/map.Designer.cs -------------------------------------------------------------------------------- /acnhpoker/Map/map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/map.cs -------------------------------------------------------------------------------- /acnhpoker/Map/map.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/map.resx -------------------------------------------------------------------------------- /acnhpoker/Map/miniMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/miniMap.cs -------------------------------------------------------------------------------- /acnhpoker/Map/variationSpawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/variationSpawn.cs -------------------------------------------------------------------------------- /acnhpoker/Map/variationSpawn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Map/variationSpawn.resx -------------------------------------------------------------------------------- /acnhpoker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Program.cs -------------------------------------------------------------------------------- /acnhpoker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /acnhpoker/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Properties/Resources.resx -------------------------------------------------------------------------------- /acnhpoker/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Properties/Settings.settings -------------------------------------------------------------------------------- /acnhpoker/Resources/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/1.png -------------------------------------------------------------------------------- /acnhpoker/Resources/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/2.png -------------------------------------------------------------------------------- /acnhpoker/Resources/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/3.png -------------------------------------------------------------------------------- /acnhpoker/Resources/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/4.png -------------------------------------------------------------------------------- /acnhpoker/Resources/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/5.png -------------------------------------------------------------------------------- /acnhpoker/Resources/ACLeaf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/ACLeaf.ico -------------------------------------------------------------------------------- /acnhpoker/Resources/ACLeaf2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/ACLeaf2.ico -------------------------------------------------------------------------------- /acnhpoker/Resources/Celeste.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/Celeste.ico -------------------------------------------------------------------------------- /acnhpoker/Resources/Leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/Leaf.png -------------------------------------------------------------------------------- /acnhpoker/Resources/acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/acre -------------------------------------------------------------------------------- /acnhpoker/Resources/dodo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/dodo.png -------------------------------------------------------------------------------- /acnhpoker/Resources/f.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/f.ico -------------------------------------------------------------------------------- /acnhpoker/Resources/fasil.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/fasil.ico -------------------------------------------------------------------------------- /acnhpoker/Resources/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/gear.png -------------------------------------------------------------------------------- /acnhpoker/Resources/height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/height.png -------------------------------------------------------------------------------- /acnhpoker/Resources/k.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/k.ico -------------------------------------------------------------------------------- /acnhpoker/Resources/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/loading.gif -------------------------------------------------------------------------------- /acnhpoker/Resources/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/marker.png -------------------------------------------------------------------------------- /acnhpoker/Resources/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Resources/timer.png -------------------------------------------------------------------------------- /acnhpoker/Setting/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Setting/Log.cs -------------------------------------------------------------------------------- /acnhpoker/Setting/Setting.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Setting/Setting.Designer.cs -------------------------------------------------------------------------------- /acnhpoker/Setting/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Setting/Setting.cs -------------------------------------------------------------------------------- /acnhpoker/Setting/Setting.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Setting/Setting.resx -------------------------------------------------------------------------------- /acnhpoker/Twitch/DropOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Twitch/DropOrder.cs -------------------------------------------------------------------------------- /acnhpoker/Twitch/OrderDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Twitch/OrderDisplay.cs -------------------------------------------------------------------------------- /acnhpoker/Twitch/OrderDisplay.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Twitch/OrderDisplay.resx -------------------------------------------------------------------------------- /acnhpoker/Twitch/PubSub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Twitch/PubSub.cs -------------------------------------------------------------------------------- /acnhpoker/Twitch/TwitchBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Twitch/TwitchBot.cs -------------------------------------------------------------------------------- /acnhpoker/Twitch/VillagerOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Twitch/VillagerOrder.cs -------------------------------------------------------------------------------- /acnhpoker/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Utilities.cs -------------------------------------------------------------------------------- /acnhpoker/Villager/Friendship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Villager/Friendship.cs -------------------------------------------------------------------------------- /acnhpoker/Villager/Friendship.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Villager/Friendship.resx -------------------------------------------------------------------------------- /acnhpoker/Villager/VillagerMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Villager/VillagerMemory.cs -------------------------------------------------------------------------------- /acnhpoker/Villager/villager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/Villager/villager.cs -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/Io.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/Io.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant02.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant02.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant03.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant03.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant06.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant06.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant08.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant08.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ant09.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ant09.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea02.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea02.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea03.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea03.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea06.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea06.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea07.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea07.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea08.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea08.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea09.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea09.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea10.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea10.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea11.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea11.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea12.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea12.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea13.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea13.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea14.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea14.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea14.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea14.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bea15.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bea15.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd02.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd02.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd03.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd03.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd04.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd04.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd06.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd06.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd08.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd08.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd09.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd09.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd11.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd11.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd15.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd15.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd16.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd16.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd17.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd17.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd17.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd17.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd18.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd18.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/brd18.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/brd18.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul03.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul03.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul07.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul07.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/bul08.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/bul08.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat02.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat02.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat03.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat03.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat04.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat04.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat06.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat06.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat07.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat07.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat08.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat08.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat09.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat09.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat10.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat10.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat11.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat11.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat12.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat12.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat13.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat13.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat14.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat14.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat14.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat14.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat15.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat15.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat16.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat16.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat17.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat17.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat17.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat17.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat18.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat18.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat18.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat18.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat19.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat19.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat19.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat19.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat20.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat20.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat20.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat20.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat21.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat21.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat21.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat21.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat23.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat23.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cat23.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cat23.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr02.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr02.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr03.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr03.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr04.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr04.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr06.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr06.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr07.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr07.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr09.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr09.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr10.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr10.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr13.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr13.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr14.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr14.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr14.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr14.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr15.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr15.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr16.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr16.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr17.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr17.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr17.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr17.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr18.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr18.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr18.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr18.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr19.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr19.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cbr19.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cbr19.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn02.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn02.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn09.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn09.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn10.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn10.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn11.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn11.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn12.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn12.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/chn13.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/chn13.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cow00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cow00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cow00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cow00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cow01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cow01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cow01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cow01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cow06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cow06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cow06.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cow06.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cow07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cow07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/cow07.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/cow07.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd02.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd02.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd04.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd04.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd06.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd06.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd07.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd07.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/crd08.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/crd08.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der02.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der02.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der03.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der03.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der04.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der04.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der06.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der06.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der07.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der07.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der08.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der08.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der09.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der09.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der10.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der10.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/der11.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/der11.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog02.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog02.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog03.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog03.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog04.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog04.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog06.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog06.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog07.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog07.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog08.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog08.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog09.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog09.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog10.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog10.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog11.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog11.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog14.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog14.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog14.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog14.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog15.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog15.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog16.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog16.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog17.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog17.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog17.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog17.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog18.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog18.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/dog18.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/dog18.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk00.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk00.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk01.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk01.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk02.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk02.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk03.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk03.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk04.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk04.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk05.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk05.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk06.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk06.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk07.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk07.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk08.nhvh2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk08.nhvh2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/duk17.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/duk17.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/elp12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/elp12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg17.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg17.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg18.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg18.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/flg19.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/flg19.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/goa00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/goa00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/goa01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/goa01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/goa02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/goa02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/goa04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/goa04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/goa06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/goa06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/goa07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/goa07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/goa08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/goa08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/goa09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/goa09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/gor00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/gor00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/gor01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/gor01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/gor02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/gor02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/gor04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/gor04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/gor05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/gor05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/gor07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/gor07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/gor08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/gor08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/gor09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/gor09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/gor10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/gor10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/gor11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/gor11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ham00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ham00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ham01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ham01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ham02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ham02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ham03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ham03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ham04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ham04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ham05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ham05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ham06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ham06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ham07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ham07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ham09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ham09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hip00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hip00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hip02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hip02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hip03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hip03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hip04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hip04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hip05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hip05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hip08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hip08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hip09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hip09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/hrs16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/hrs16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kal00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kal00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kal01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kal01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kal02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kal02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kal03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kal03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kal04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kal04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kal05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kal05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kal07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kal07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kal08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kal08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kal09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kal09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kal10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kal10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kgr00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kgr00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kgr01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kgr01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kgr02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kgr02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kgr05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kgr05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kgr06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kgr06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kgr08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kgr08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kgr09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kgr09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/kgr10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/kgr10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/lon00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/lon00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/lon01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/lon01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/lon02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/lon02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/lon04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/lon04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/lon06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/lon06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/lon07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/lon07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/lon08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/lon08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mnk01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mnk01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mnk02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mnk02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mnk03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mnk03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mnk04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mnk04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mnk05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mnk05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mnk06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mnk06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mnk07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mnk07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mnk08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mnk08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mnk09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mnk09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus14.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus14.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus17.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus17.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus18.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus18.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/mus19.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/mus19.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ocp00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ocp00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ocp01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ocp01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ocp02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ocp02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ocp04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ocp04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/ost10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/ost10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pbr00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pbr00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pbr01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pbr01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pbr02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pbr02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pbr03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pbr03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pbr05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pbr05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pbr06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pbr06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pbr07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pbr07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pbr08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pbr08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pbr09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pbr09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pbr10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pbr10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pgn14.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pgn14.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig14.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig14.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/pig17.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/pig17.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt14.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt14.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt17.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt17.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt18.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt18.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt19.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt19.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt20.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt20.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rbt21.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rbt21.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rhn00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rhn00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rhn01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rhn01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rhn02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rhn02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rhn04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rhn04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rhn05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rhn05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rhn07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rhn07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/rhn08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/rhn08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp14.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp14.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/shp15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/shp15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ07.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ07.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ11.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ11.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ13.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ13.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ14.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ14.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ15.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ15.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ16.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ16.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ17.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ17.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ18.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ18.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/squ21.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/squ21.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/tig00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/tig00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/tig01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/tig01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/tig02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/tig02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/tig03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/tig03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/tig04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/tig04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/tig05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/tig05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/tig06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/tig06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol00.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol00.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol01.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol01.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol02.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol02.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol03.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol03.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol04.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol04.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol05.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol05.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol06.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol06.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol08.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol08.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol09.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol09.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol10.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol10.nhv2 -------------------------------------------------------------------------------- /acnhpoker/VillagerDatabase/wol12.nhv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/VillagerDatabase/wol12.nhv2 -------------------------------------------------------------------------------- /acnhpoker/acnhpoker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/acnhpoker.csproj -------------------------------------------------------------------------------- /acnhpoker/acnhpoker.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/acnhpoker.csproj.user -------------------------------------------------------------------------------- /acnhpoker/csv/field.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/csv/field.csv -------------------------------------------------------------------------------- /acnhpoker/csv/flowers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/csv/flowers.csv -------------------------------------------------------------------------------- /acnhpoker/csv/items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/csv/items.csv -------------------------------------------------------------------------------- /acnhpoker/csv/kind.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/csv/kind.csv -------------------------------------------------------------------------------- /acnhpoker/csv/override.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/csv/override.csv -------------------------------------------------------------------------------- /acnhpoker/csv/recipes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/csv/recipes.csv -------------------------------------------------------------------------------- /acnhpoker/csv/variations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/csv/variations.csv -------------------------------------------------------------------------------- /acnhpoker/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/packages.config -------------------------------------------------------------------------------- /acnhpoker/save/(2)Fish.nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/(2)Fish.nhbs -------------------------------------------------------------------------------- /acnhpoker/save/(2)Insect.nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/(2)Insect.nhbs -------------------------------------------------------------------------------- /acnhpoker/save/(3)Fence.nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/(3)Fence.nhbs -------------------------------------------------------------------------------- /acnhpoker/save/(4)Flower.nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/(4)Flower.nhbs -------------------------------------------------------------------------------- /acnhpoker/save/(4)Materials.nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/(4)Materials.nhbs -------------------------------------------------------------------------------- /acnhpoker/save/(8)StarFragment.nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/(8)StarFragment.nhbs -------------------------------------------------------------------------------- /acnhpoker/save/1100Update.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/1100Update.nhi -------------------------------------------------------------------------------- /acnhpoker/save/1110Update.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/1110Update.nhi -------------------------------------------------------------------------------- /acnhpoker/save/AugUpdate.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/AugUpdate.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Cherry-blossom.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Cherry-blossom.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Cinnamoroll.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Cinnamoroll.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Cone.nhg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Cone.nhg -------------------------------------------------------------------------------- /acnhpoker/save/DIY[A-Z].nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/DIY[A-Z].nhbs -------------------------------------------------------------------------------- /acnhpoker/save/DIY[ID].nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/DIY[ID].nhbs -------------------------------------------------------------------------------- /acnhpoker/save/Demo.nhg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Demo.nhg -------------------------------------------------------------------------------- /acnhpoker/save/Demo.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Demo.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Empty.nhg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Empty.nhg -------------------------------------------------------------------------------- /acnhpoker/save/FakeArt.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/FakeArt.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Festivale[1].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Festivale[1].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Festivale[2].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Festivale[2].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Festivale[3].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Festivale[3].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Fossil.nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Fossil.nhbs -------------------------------------------------------------------------------- /acnhpoker/save/GoldenTools.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/GoldenTools.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Gulliver.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Gulliver.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Halloween[1].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Halloween[1].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Halloween[2].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Halloween[2].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Halloween[3].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Halloween[3].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Halloween[4].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Halloween[4].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Hello Kitty.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Hello Kitty.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Kerokerokeroppi.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Kerokerokeroppi.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Kiki&Lala.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Kiki&Lala.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Mario[1].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Mario[1].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Mario[2].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Mario[2].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Mermaid.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Mermaid.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Mom[1].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Mom[1].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Mom[2].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Mom[2].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Mush.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Mush.nhi -------------------------------------------------------------------------------- /acnhpoker/save/My Melody.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/My Melody.nhi -------------------------------------------------------------------------------- /acnhpoker/save/NPCItem[1].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/NPCItem[1].nhi -------------------------------------------------------------------------------- /acnhpoker/save/NPCItem[2].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/NPCItem[2].nhi -------------------------------------------------------------------------------- /acnhpoker/save/NewDIY[A-Z].nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/NewDIY[A-Z].nhbs -------------------------------------------------------------------------------- /acnhpoker/save/NewDIY[id].nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/NewDIY[id].nhbs -------------------------------------------------------------------------------- /acnhpoker/save/NookMilesItem[1].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/NookMilesItem[1].nhi -------------------------------------------------------------------------------- /acnhpoker/save/NookMilesItem[2].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/NookMilesItem[2].nhi -------------------------------------------------------------------------------- /acnhpoker/save/NookMilesItem[3].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/NookMilesItem[3].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Photo.nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Photo.nhbs -------------------------------------------------------------------------------- /acnhpoker/save/Photo[A-Z].nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Photo[A-Z].nhbs -------------------------------------------------------------------------------- /acnhpoker/save/Photo[ID].nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Photo[ID].nhbs -------------------------------------------------------------------------------- /acnhpoker/save/Pirate.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Pirate.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Pompompurin.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Pompompurin.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Poster.nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Poster.nhbs -------------------------------------------------------------------------------- /acnhpoker/save/Poster[A-Z].nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Poster[A-Z].nhbs -------------------------------------------------------------------------------- /acnhpoker/save/Poster[ID].nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Poster[ID].nhbs -------------------------------------------------------------------------------- /acnhpoker/save/RealArt[01].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/RealArt[01].nhi -------------------------------------------------------------------------------- /acnhpoker/save/RealArt[02].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/RealArt[02].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Sanrio Update[1].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Sanrio Update[1].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Sanrio Update[2].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Sanrio Update[2].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Sanrio Update[3].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Sanrio Update[3].nhi -------------------------------------------------------------------------------- /acnhpoker/save/SeaCreature.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/SeaCreature.nhi -------------------------------------------------------------------------------- /acnhpoker/save/SnorkelWetSuit.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/SnorkelWetSuit.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Song.nhbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Song.nhbs -------------------------------------------------------------------------------- /acnhpoker/save/Song2.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Song2.nhi -------------------------------------------------------------------------------- /acnhpoker/save/Wedding[1].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Wedding[1].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Wedding[2].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Wedding[2].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Winter[1].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Winter[1].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Winter[2].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Winter[2].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Winter[3].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Winter[3].nhi -------------------------------------------------------------------------------- /acnhpoker/save/Winter[4].nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/Winter[4].nhi -------------------------------------------------------------------------------- /acnhpoker/save/ZodiacFigurine.nhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/ZodiacFigurine.nhi -------------------------------------------------------------------------------- /acnhpoker/save/twitch[template].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/save/twitch[template].json -------------------------------------------------------------------------------- /acnhpoker/twitch[template].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/acnhpoker/twitch[template].json -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /packages/Microsoft.Extensions.Logging.Abstractions.6.0.0/buildTransitive/netcoreapp3.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Extensions.Logging.Abstractions.6.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/NAudio.2.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/packages/NAudio.2.0.1/.signature.p7s -------------------------------------------------------------------------------- /packages/NAudio.2.0.1/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/packages/NAudio.2.0.1/license.txt -------------------------------------------------------------------------------- /packages/NAudio.2.0.1/naudio-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyShiLingStar/ACNHPoker/HEAD/packages/NAudio.2.0.1/naudio-icon.png -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Buffers.4.5.1/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Collections.Specialized.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.4/lib/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.4/ref/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.4/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Memory.4.5.4/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.5.0/version.txt: -------------------------------------------------------------------------------- 1 | 30ab651fcb4354552bd4891619a0bdd81e0ebdbf 2 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/netstandard2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/portable-net45+wp8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/netstandard2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/portable-net45+wp8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.Emit.Lightweight.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.Extensions.4.3.1/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.6.0.0/buildTransitive/netcoreapp3.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.AccessControl.6.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/netcoreapp2.1/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Threading.Tasks.Extensions.4.5.4/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | --------------------------------------------------------------------------------