diff --git a/ps2emuDALLHUMANS2/PS20220WD20050620.crack b/ps2emuDALLHUMANS2/PS20220WD20050620.crack
new file mode 100644
index 0000000..668ff93
Binary files /dev/null and b/ps2emuDALLHUMANS2/PS20220WD20050620.crack differ
diff --git a/ps2emuDALLHUMANS2/config-emu-ps4.txt b/ps2emuDALLHUMANS2/config-emu-ps4.txt
new file mode 100644
index 0000000..92b4bdb
--- /dev/null
+++ b/ps2emuDALLHUMANS2/config-emu-ps4.txt
@@ -0,0 +1,13 @@
+--path-vmc="/tmp/vmc"
+--path-emulog="/tmp/recordings"
+--path-patches="/app0/patches"
+--path-trophydata="/app0/trophy_data"
+--path-featuredata="/app0/feature_data"
+--host-osd=0
+--host-audio=1
+--host-display-mode=full
+--ps2-title-id=SLES-00000
+--ps2-lang=system
+--gs-uprender=2x2
+--gs-upscale=EdgeSmooth
+--rom="PS20220WD20050620.crack"
\ No newline at end of file
diff --git a/ps2emuDALLHUMANS2/docs/revision.h b/ps2emuDALLHUMANS2/docs/revision.h
new file mode 100644
index 0000000..acc1050
--- /dev/null
+++ b/ps2emuDALLHUMANS2/docs/revision.h
@@ -0,0 +1,12 @@
+/* This file is autogenerated. DO NOT EDIT. */
+#define PACKAGE_NAME "Packaging/PackageBuild-BuildBinary-1297"
+#define PACKAGE_BUILT_BY ""
+#define PACKAGE_BUILT_ON "20161011"
+#define PACKAGE_DATE_STRING "04 Nov 16"
+#define JENKINS_JOB_NAME "Packaging/PackageBuild-BuildBinary"
+#define JENKINS_JOB_NUMBER "1297"
+#define REV_BINARY_SHA "f0207aa1d909063aafd9f78007159a47ad7236081df57cdc41b45df2c0475d03"
+#define GIT_BRANCH "titles/DestroyAllHumans2"
+#define GIT_REV_DATE "20161011-1"
+#define GIT_HASH_BINARY "5bda63a10da0ea6ca0b660edfafa2ba3bf4cde9b"
+
diff --git a/ps2emuDALLHUMANS2/eboot.bin b/ps2emuDALLHUMANS2/eboot.bin
new file mode 100644
index 0000000..c6387ad
Binary files /dev/null and b/ps2emuDALLHUMANS2/eboot.bin differ
diff --git a/ps2emuDALLHUMANS2/formatted.card b/ps2emuDALLHUMANS2/formatted.card
new file mode 100644
index 0000000..1ecafd6
Binary files /dev/null and b/ps2emuDALLHUMANS2/formatted.card differ
diff --git a/ps2emuDALLHUMANS2/lua_include/MipsInsn.lua b/ps2emuDALLHUMANS2/lua_include/MipsInsn.lua
new file mode 100644
index 0000000..66e9a3c
--- /dev/null
+++ b/ps2emuDALLHUMANS2/lua_include/MipsInsn.lua
@@ -0,0 +1,35 @@
+
+MipsInsn = {}
+MipsInsn.IsAddi = function(insn) return (insn & 0xfc000000) == 0x20000000 end -- addi rt,rs,simm
+MipsInsn.IsAddiu = function(insn) return (insn & 0xfc000000) == 0x24000000 end -- addiu rt,rs,simm
+MipsInsn.IsDaddu = function(insn) return (insn & 0xfc0007ff) == 0x0000002d end -- daddu rd,rs,rt
+MipsInsn.IsAddu = function(insn) return (insn & 0xfc0007ff) == 0x00000021 end -- addu rd,rs,rt
+MipsInsn.IsBeq = function(insn) return (insn & 0xfc000000) == 0x10000000 end -- beq rs,rt,off
+MipsInsn.IsJ = function(insn) return (insn & 0xfc000000) == 0x08000000 end -- j target
+MipsInsn.IsJal = function(insn) return (insn & 0xfc000000) == 0x0c000000 end -- jal target
+MipsInsn.IsJr = function(insn) return (insn & 0xfc1fffff) == 0x00000008 end -- jr rs
+MipsInsn.IsLq = function(insn) return (insn & 0xfc000000) == 0x78000000 end -- lq rt,simm(rs)
+MipsInsn.IsLd = function(insn) return (insn & 0xfc000000) == 0xdc000000 end -- ld rt,simm(rs)
+MipsInsn.IsLw = function(insn) return (insn & 0xfc000000) == 0x8c000000 end -- lw rt,simm(rs)
+MipsInsn.IsSq = function(insn) return (insn & 0xfc000000) == 0x7c000000 end -- sq rt,simm(rs)
+MipsInsn.IsSd = function(insn) return (insn & 0xfc000000) == 0xfc000000 end -- sd rt,simm(rs)
+MipsInsn.IsSw = function(insn) return (insn & 0xfc000000) == 0xac000000 end -- sw rt,simm(rs)
+MipsInsn.IsEnd = function(insn) return (insn & 0xfc00003f) == 0x0000000d end -- break [code]
+
+MipsInsn.GetRt = function(insn) return (insn >> 16) & 0x1f end
+MipsInsn.GetRs = function(insn) return (insn >> 21) & 0x1f end
+MipsInsn.GetRd = function(insn) return (insn >> 11) & 0x1f end
+--MipsInsn.GetSimm = function(insn) return ((insn << 48) >> 48) end -- this can't create a negative value correctly
+MipsInsn.GetSimm = function(insn)
+ -- Lua5.3 shifts are all logical (WHY!?). threfore (insn<<48)>>48 cannot extend the sign.
+ -- Instead of using shift, do following
+ local bit = 16 -- sign bit place.
+ local v = insn & 0xffff
+ local m = 1 << (bit - 1)
+ v = v & ((1 << bit) - 1)
+ return (v ~ m) - m -- '~' is xor in Lua... how strange it is.
+end
+MipsInsn.GetOff = function(insn) return MipsInsn.GetSimm(insn) end
+MipsInsn.GetTarget = function(insn) return insn & 0x3ffffff end
+
+return MipsInsn
diff --git a/ps2emuDALLHUMANS2/lua_include/ee-cpr0-alias.lua b/ps2emuDALLHUMANS2/lua_include/ee-cpr0-alias.lua
new file mode 100644
index 0000000..42af8b6
--- /dev/null
+++ b/ps2emuDALLHUMANS2/lua_include/ee-cpr0-alias.lua
@@ -0,0 +1,26 @@
+cpr = {}
+
+cpr.index = 0
+cpr.random = 1
+cpr.entrylo0 = 2
+cpr.entrylo1 = 3
+cpr.context = 4
+cpr.pagemask = 5
+cpr.wired = 6
+cpr.badvaddr = 8
+cpr.count = 9
+cpr.entryhi = 10
+cpr.compare = 11
+cpr.status = 12
+cpr.cause = 13
+cpr.epc = 14
+cpr.prid = 15
+cpr.config = 16
+cpr.badpaddr = 23
+cpr.hwbk = 24
+cpr.pccr = 25
+cpr.taglo = 28
+cpr.taghi = 29
+cpr.errorepc = 30
+
+return cpr
\ No newline at end of file
diff --git a/ps2emuDALLHUMANS2/lua_include/ee-gpr-alias.lua b/ps2emuDALLHUMANS2/lua_include/ee-gpr-alias.lua
new file mode 100644
index 0000000..e491810
--- /dev/null
+++ b/ps2emuDALLHUMANS2/lua_include/ee-gpr-alias.lua
@@ -0,0 +1,43 @@
+
+-- Recommended method to import this module:
+-- local gpr = require("ee-gpr-alias")
+--
+-- Using the global 'lang' variable is depreciated. This will change to a local-scope variable after
+-- the depreciation period has expired in April 2016.
+
+gpr = {}
+
+gpr.zero = 0
+gpr.at = 1
+gpr.v0 = 2
+gpr.v1 = 3
+gpr.a0 = 4
+gpr.a1 = 5
+gpr.a2 = 6
+gpr.a3 = 7
+gpr.t0 = 8
+gpr.t1 = 9
+gpr.t2 = 10
+gpr.t3 = 11
+gpr.t4 = 12
+gpr.t5 = 13
+gpr.t6 = 14
+gpr.t7 = 15
+gpr.s0 = 16
+gpr.s1 = 17
+gpr.s2 = 18
+gpr.s3 = 19
+gpr.s4 = 20
+gpr.s5 = 21
+gpr.s6 = 22
+gpr.s7 = 23
+gpr.t8 = 24
+gpr.t9 = 25
+gpr.k0 = 26
+gpr.k1 = 27
+gpr.gp = 28
+gpr.sp = 29
+gpr.fp = 30
+gpr.ra = 31
+
+return gpr
diff --git a/ps2emuDALLHUMANS2/lua_include/ee-hwaddr.lua b/ps2emuDALLHUMANS2/lua_include/ee-hwaddr.lua
new file mode 100644
index 0000000..6197c6e
--- /dev/null
+++ b/ps2emuDALLHUMANS2/lua_include/ee-hwaddr.lua
@@ -0,0 +1,29 @@
+gif_hw = {}
+vif0_hw = {}
+vif1_hw = {}
+
+gif_hw.CHCR = 0x1000A000
+gif_hw.MADR = 0x1000A010
+gif_hw.QWC = 0x1000A020
+gif_hw.TADR = 0x1000A030
+gif_hw.ASR0 = 0x1000A040
+gif_hw.ASR1 = 0x1000A050
+gif_hw.SADR = 0x1000A080
+
+vif0_hw.CHCR = 0x10008000
+vif0_hw.MADR = 0x10008010
+vif0_hw.QWC = 0x10008020
+vif0_hw.TADR = 0x10008030
+vif0_hw.ASR0 = 0x10008040
+vif0_hw.ASR1 = 0x10008050
+vif0_hw.SADR = 0x10008080
+
+vif1_hw.CHCR = 0x10009000
+vif1_hw.MADR = 0x10009010
+vif1_hw.QWC = 0x10009020
+vif1_hw.TADR = 0x10009030
+vif1_hw.ASR0 = 0x10009040
+vif1_hw.ASR1 = 0x10009050
+vif1_hw.SADR = 0x10009080
+
+return gif_hw, vif0_hw, vif1_hw, nil
\ No newline at end of file
diff --git a/ps2emuDALLHUMANS2/lua_include/language.lua b/ps2emuDALLHUMANS2/lua_include/language.lua
new file mode 100644
index 0000000..5365327
--- /dev/null
+++ b/ps2emuDALLHUMANS2/lua_include/language.lua
@@ -0,0 +1,34 @@
+
+-- Recommended method to import this module:
+-- local lang = require("language")
+--
+-- Using the global 'lang' variable is depreciated. This will change to a local-scope variable after
+-- the depreciation period has expired in April 2016.
+
+lang = {}
+
+lang.japanese = 0
+lang.english = 1
+lang.french = 2
+lang.spanish = 3
+lang.german = 4
+lang.italian = 5
+lang.dutch = 6
+lang.portuguese = 7
+lang.russian = 8
+lang.korean = 9
+lang.chinese_traditional = 10
+lang.chinese_simplified = 11
+lang.finnish = 12
+lang.swedish = 13
+lang.danish = 14
+lang.norwegian = 15
+lang.polish = 16
+lang.portuguese_brazil = 17
+lang.english_gb = 18
+lang.turkish = 19
+lang.spanish_la = 20
+lang.arabic = 21
+lang.french_canada = 22
+
+return lang
\ No newline at end of file
diff --git a/ps2emuDALLHUMANS2/lua_include/pad-and-key.lua b/ps2emuDALLHUMANS2/lua_include/pad-and-key.lua
new file mode 100644
index 0000000..6e6c616
--- /dev/null
+++ b/ps2emuDALLHUMANS2/lua_include/pad-and-key.lua
@@ -0,0 +1,58 @@
+
+pad = {}
+
+-- Left Side
+pad.LU = 0x0010 -- Up
+pad.LD = 0x0040 -- Down
+pad.LL = 0x0080 -- Left
+pad.LR = 0x0020 -- Right
+
+-- Right Side
+pad.RU = 0x1000 -- Up (Triangle)
+pad.RD = 0x4000 -- Down (Cross)
+pad.RL = 0x8000 -- Left (Square)
+pad.RR = 0x2000 -- Right (Circle)
+
+-- aliases
+pad.UP = 0x0010 -- LU
+pad.DOWN = 0x0040 -- LD
+pad.LEFT = 0x0080 -- LL
+pad.RIGHT = 0x0020 -- LR
+pad.TRIANGLE= 0x1000
+pad.CROSS = 0x4000
+pad.SQUARE = 0x8000
+pad.CIRCLE = 0x2000
+
+pad.L1 = 0x0400
+pad.L2 = 0x0100
+pad.L3 = 0x0002
+
+pad.R1 = 0x0800
+pad.R2 = 0x0200
+pad.R3 = 0x0004
+
+pad.SELECT = 0x0001
+pad.START = 0x0008
+
+keyboard = {}
+
+keyboard.ESCAPE = 0x1000
+keyboard.SLASH = 0x1001
+keyboard.SEPARATOR = 0x1002 -- backslash or pipe (\|)
+keyboard.BACKQUOTE = 0x1003
+keyboard.PAGEDOWN = 0x1004
+keyboard.PAGEUP = 0x1005
+keyboard.F1 = 0x1006
+keyboard.F2 = 0x1007
+keyboard.F3 = 0x1008
+keyboard.F4 = 0x1009
+keyboard.F5 = 0x100a
+keyboard.F6 = 0x100b
+keyboard.F7 = 0x100c
+keyboard.F8 = 0x100d
+keyboard.F9 = 0x100e
+keyboard.F10 = 0x100f
+keyboard.F11 = 0x1010
+keyboard.F12 = 0x1011
+
+return pad, keyboard
\ No newline at end of file
diff --git a/ps2emuDALLHUMANS2/lua_include/pad-connect-type.lua b/ps2emuDALLHUMANS2/lua_include/pad-connect-type.lua
new file mode 100644
index 0000000..6075410
--- /dev/null
+++ b/ps2emuDALLHUMANS2/lua_include/pad-connect-type.lua
@@ -0,0 +1,9 @@
+
+local PadConnectType = {}
+
+PadConnectType.DS4 = 0
+PadConnectType.HID = 1 -- any 3rd party USB controller (fight stick, turbo controller, etc), always local.
+PadConnectType.REMOTE_DS4 = 2 -- remote DS4 should behave just like regular DS4
+PadConnectType.REMOTE_VITA = 3 -- remote VITA lacks analog L2/R2
+
+return PadConnectType
\ No newline at end of file
diff --git a/ps2emuDALLHUMANS2/lua_include/sprite.lua b/ps2emuDALLHUMANS2/lua_include/sprite.lua
new file mode 100644
index 0000000..49c10bd
--- /dev/null
+++ b/ps2emuDALLHUMANS2/lua_include/sprite.lua
@@ -0,0 +1,57 @@
+
+local kFilterMode = {}
+kFilterMode.Point = 0x00000000 -- < Sample the one texel nearest to the sample point.
+kFilterMode.Bilinear = 0x00000001 -- < Sample the four texels nearest the sample point, and blend linearly.
+
+local kWrapMode = {}
+kWrapMode.Wrap = 0x00000000 -- < The integer portion of the input coordinate is discarded, and the fractional portion is used instead. U=U-floorf(U);
+kWrapMode.Mirror = 0x00000001 -- < The input coordinate is "reflected" across the texture boundary. This reflection may occur multiple times until the coordinate falls within the [0..1] range. U=isOdd(floorf(U)) ? 1-fracf(U) : fracf(U)
+kWrapMode.ClampLastTexel = 0x00000002 -- < The input coordinate is clamped to the range [0..1]. U=max(0,min(1,U));
+kWrapMode.MirrorOnceLastTexel = 0x00000003 -- < The input coordinate is reflected at most one time and then clamped to the range [0..1]. U=abs(max(-1,min(1,U));
+kWrapMode.ClampHalfBorder = 0x00000004 -- < Similar to kWrapModeClampLastTexel, but if clamping is necessary, the output color will be the border color specified by the Sampler. For this mode, coordinates that are not within half a pixel of the border are considered clamped.
+kWrapMode.MirrorOnceHalfBorder = 0x00000005 -- < Similar to kWrapModeMirrorOnceLastTexel, but if clamping is necessary, the output color will be the border color specified by the Sampler. For this mode, coordinates that are not within half a pixel of the border are considered clamped.
+kWrapMode.ClampBorder = 0x00000006 -- < Similar to kWrapModeClampLastTexel, but if clamping is necessary, the output color will be the border color specified by the Sampler. For this mode, coordinates that are outside the range [0..1] are considered clamped.
+kWrapMode.MirrorOnceBorder = 0x00000007 -- < Similar to kWrapModeMirrorOnceLastTexel, but if clamping is necessary, the output color will be the border color specified by the Sampler. For this mode, coordinates that are outside the range [0..1] are considered clamped.
+
+local kBlendMultiplier = {}
+kBlendMultiplier.Zero = 0x00000000 -- < Multiply the associated input by zero.
+kBlendMultiplier.One = 0x00000001 -- < Multiply the associated input by one.
+kBlendMultiplier.SrcColor = 0x00000002 -- < Multiply the associated input by the fragment color.
+kBlendMultiplier.OneMinusSrcColor = 0x00000003 -- < Multiply the associated input by one minus the fragment color.
+kBlendMultiplier.SrcAlpha = 0x00000004 -- < Multiply the associated input by the fragment alpha.
+kBlendMultiplier.OneMinusSrcAlpha = 0x00000005 -- < Multiply the associated input by one minus the fragment alpha.
+kBlendMultiplier.DestAlpha = 0x00000006 -- < Multiply the associated input by the render target alpha.
+kBlendMultiplier.OneMinusDestAlpha = 0x00000007 -- < Multiply the associated input by one minus the render target alpha.
+kBlendMultiplier.DestColor = 0x00000008 -- < Multiply the associated input by the render target color.
+kBlendMultiplier.OneMinusDestColor = 0x00000009 -- < Multiply the associated input by one minus the render target color.
+kBlendMultiplier.SrcAlphaSaturate = 0x0000000a -- < Multiply the associated input by the minimum of 1 or fragment alpha.
+kBlendMultiplier.ConstantColor = 0x0000000d -- < Multiply the associated input by the constant color. @see DrawCommandBuffer::setBlendColor()
+kBlendMultiplier.OneMinusConstantColor = 0x0000000e -- < Multiply the associated input by one minus the constant color. @see DrawCommandBuffer::setBlendColor()
+kBlendMultiplier.Src1Color = 0x0000000f -- < Multiply the associated input by a secondary fragment color.
+kBlendMultiplier.InverseSrc1Color = 0x00000010 -- < Multiply the associated input by one minus a secondary fragment color.
+kBlendMultiplier.Src1Alpha = 0x00000011 -- < Multiply the associated input by a secondary fragment alpha.
+kBlendMultiplier.InverseSrc1Alpha = 0x00000012 -- < Multiply the associated input by one minus a secondary fragment alpha.
+kBlendMultiplier.ConstantAlpha = 0x00000013 -- < Multiply the associated input by the constant color alpha. @see DrawCommandBuffer::setBlendColor()
+kBlendMultiplier.OneMinusConstantAlpha = 0x00000014 -- < Multiply the associated input by one minus the constant color alpha. @see DrawCommandBuffer::setBlendColor()
+
+local kBlendFunc = {}
+kBlendFunc.Add = 0x00000000 -- < The source value is added to the destination value.
+kBlendFunc.Subtract = 0x00000001 -- < The destination value is subtracted from the source value.
+kBlendFunc.Min = 0x00000002 -- < The minimum of the source and destination values is selected.
+kBlendFunc.Max = 0x00000003 -- < The maximum of the source and destination values is selected.
+kBlendFunc.ReverseSubtract = 0x00000004 -- < The source value is subtracted from the destination value.
+
+-- Default blending mode, ideal for typical alpha channel embedded into a PNG image.
+blendDefaultEquation = {
+ kBlendMultiplier.SrcAlpha, -- src multiplier
+ kBlendFunc.Add, -- blend function
+ kBlendMultiplier.OneMinusSrcAlpha, -- dest multiplier
+}
+
+blendConstFadeEquation = {
+ kBlendMultiplier.ConstantAlpha, -- src multiplier
+ kBlendFunc.Add, -- blend function
+ kBlendMultiplier.OneMinusConstantAlpha, -- dest multiplier
+}
+
+return kFilterMode, kWrapMode, kBlendMultiplier, kBlendFunc
diff --git a/ps2emuDALLHUMANS2/lua_include/utils.lua b/ps2emuDALLHUMANS2/lua_include/utils.lua
new file mode 100644
index 0000000..b5e7bd9
--- /dev/null
+++ b/ps2emuDALLHUMANS2/lua_include/utils.lua
@@ -0,0 +1,60 @@
+-- utility classes/functions
+
+-- Stack
+-- ex:
+-- my_stack = Stack.new()
+-- my_stack:push( val )
+-- print( my_stack:pop( val ) )
+Stack = {}
+
+function Stack.new()
+ local obj = { buff = {} }
+ return setmetatable(obj, {__index = Stack})
+end
+
+function Stack:push(x)
+ table.insert(self.buff, x)
+end
+
+function Stack:pop()
+ return table.remove(self.buff)
+end
+
+function Stack:top()
+ return self.buff[#self.buff]
+end
+
+function Stack:isEmpty()
+ return #self.buff == 0
+end
+
+
+-- Queue
+-- ex:
+-- my_queue = Queue.new()
+-- my_queue:enqueue( val )
+-- print( my_queue:dequeue(val) )
+Queue = {}
+
+function Queue.new(x)
+ local obj = { buff = x == nil and {} or x }
+ return setmetatable(obj, {__index = Queue})
+end
+
+function Queue:enqueue(x)
+ table.insert(self.buff, x)
+end
+
+function Queue:dequeue()
+ return table.remove(self.buff, 1)
+end
+
+function Queue:top()
+ if #self.buff > 0 then
+ return self.buff[1]
+ end
+end
+
+function Queue:isEmpty()
+ return #self.buff == 0
+end
diff --git a/ps2emuDALLHUMANS2/ps2-emu-compiler.self b/ps2emuDALLHUMANS2/ps2-emu-compiler.self
new file mode 100644
index 0000000..07f8b3c
Binary files /dev/null and b/ps2emuDALLHUMANS2/ps2-emu-compiler.self differ
diff --git a/ps2emuDALLHUMANS2/sce_discmap.plt b/ps2emuDALLHUMANS2/sce_discmap.plt
new file mode 100644
index 0000000..3811f68
Binary files /dev/null and b/ps2emuDALLHUMANS2/sce_discmap.plt differ
diff --git a/ps2emuDALLHUMANS2/sce_module/libSceFios2.prx b/ps2emuDALLHUMANS2/sce_module/libSceFios2.prx
new file mode 100644
index 0000000..c147b34
Binary files /dev/null and b/ps2emuDALLHUMANS2/sce_module/libSceFios2.prx differ
diff --git a/ps2emuDALLHUMANS2/sce_module/libc.prx b/ps2emuDALLHUMANS2/sce_module/libc.prx
new file mode 100644
index 0000000..8997363
Binary files /dev/null and b/ps2emuDALLHUMANS2/sce_module/libc.prx differ
diff --git a/ps2emuDALLHUMANS2/sce_sys/param.sfo b/ps2emuDALLHUMANS2/sce_sys/param.sfo
new file mode 100644
index 0000000..d31774c
Binary files /dev/null and b/ps2emuDALLHUMANS2/sce_sys/param.sfo differ
diff --git a/ps2emuDALLHUMANS2/sce_sys/shareparam.json b/ps2emuDALLHUMANS2/sce_sys/shareparam.json
new file mode 100644
index 0000000..8f4038b
--- /dev/null
+++ b/ps2emuDALLHUMANS2/sce_sys/shareparam.json
@@ -0,0 +1 @@
+{"ps4_share_param_version":"01.10","game_version":"01.00","client_id":"460621181150-9g1m23knq95uld74tnjap752q87pug9v.apps.googleusercontent.com","overlay_position":{"x":0,"y":0}}
\ No newline at end of file