for Blair image erros replace this from line 47131:
<<widget actionDream>>
<<set _sleepAction = {
place: either(['basement', 'bathhouse', 'default', 'forest', 'kitchen', 'maid', 'nightclub', 'shower', 'streets']),
type: either('pussy', 'anal', 'bj', 'dp'
}>>
<<if typeof setup.actions !== 'undefined'>>
<<set _dreamImg = setup.ImagePath+'actions/female/' + _sleepAction.place + '/' + _sleepAction.type + '/' + either(setup.actions.female[_sleepAction.place][_sleepAction.type])>>
<<else>>
<<set _dreamImg = 'actions/female/default/' + _sleepAction.type + '/' + either(setup.actions.female.default[_sleepAction.type])>>
<</if>>
<<actionImageOutput _dreamImg>>
<</widget>>
<<widget actionImageOutput>>
<<set _extension = $args[0].split('.'
.pop()>>
<<if ['mp4', 'webm'].includes(_extension)>>
<<set _videoType = 'video/' + _extension>>
<<set _url to $args[0]>>
<<video _url>>
<<else>>
<<image $args[0]>>
<</if>>
with:
<<widget actionDream>>
<<set _sleepAction = {
place: either(['basement', 'bathhouse', 'default', 'forest', 'kitchen', 'maid', 'nightclub', 'shower', 'streets']),
type: either('pussy', 'anal', 'bj', 'dp'
}>>
<<if typeof setup.actions !== 'undefined'>>
<<set _dreamImg = setup.ImagePath+'actions/female/' + _sleepAction.place + '/' + _sleepAction.type + '/' + either(setup.actions.female[_sleepAction.place][_sleepAction.type])>>
<<else>>
<<set _dreamImg = setup.ImagePath+'actions/female/default/' + _sleepAction.type + '/' + either(setup.actions.female.default[_sleepAction.type])>>
<</if>>
<<actionImageOutput _dreamImg>>
<</widget>>
<<widget actionImageOutput>>
<<set _extension = $args[0].split('.'
.pop()>>
<<if ['mp4', 'webm'].includes(_extension)>>
<<set _videoType = 'video/' + _extension>>
<<set _url to $args[0]>>
<video controls autoplay loop>
<source @src="_url" @type="_videoType">
</video>
<<else>>
[img[$args[0]]]
<</if>>