REVO2700/mPersons.Witnesses H)Z 4P , U helvetica U helvetica Utimes Ucourier U helvetica W helveticaU helvetica Ums sans serif U Bodoni MT U Arial BalticU Arial BalticUArialU Arial GreekUAmerType Md BTU Allegro BT U Allegro BT UBerlin Sans FB U Segoe UI U Arial Black UPalatino LinotypeUPalatino Linotype UtimesUtimes UcourierU Segoe UIUPalatino LinotypeU Segoe UIU Arial BlackW Arial BalticW Bodoni MTUcourierUTimes New RomanUTimes New Roman UTimes New RomanU helvetica U@Batang U Courier NewU Arial BalticW Arial BalticU Arial Black U Arial BalticW helveticaW helveticaU8514oem2Network,C:/MarshalEvidence/MarshalNet/Network.revcREVGeometryCachestackID12141 cREVGeneralscripteditorvscroll0breakpointconditionsscripteditorselection0 breakpointsbreakpointstatesstackfileversion2.7cRevStandaloneSettings"t Title Page@ZcREVGeometryCacheIDs124984478549012111124984473456012110124984080341512090124936873900212021124936876824312023cREVGeometrycachetotal5order ../:/N/O Explanation @ZcREVGeometryCacheIDs12498452529051213612493688781691202512498452458491213512493693044241207510550335316401211412013038948071211912013079100531213412493688991851202612013078722351213112013078630111213011237408504071211712493690180961202812013058612681212812013046830901212512013042151281212112013042321381212312411403925165912120130359808812118124114039252111944120147883717312113120130389966712120120130544754312127120130783831312129120130788228712132120130789167912133124984492846212112120130485966212126cREVGeometryCachetotal27order /P/g/h/k @ZcREVGeometryCacheIDs12498452529051213612493688781691202512498452458491213512493693044241207510550335316401211412013038948071211912013079100531213412493688991851202612013078722351213112013078630111213011237408504071211712493690180961202812013058612681212812013046830901212512013042151281212112013042321381212312411403925165912120130359808812118124114039252111944120147883717312113120130389966712120120130544754312127120130783831312129120130788228712132120130789167912133124984492846212112120130485966212126cREVGeometrycacheorder total27/P/g/h/l @ZcREVGeometryCacheIDs12498452529051213612493688781691202512498452458491213512493693044241207510550335316401211412013038948071211912013079100531213412493688991851202612013078722351213112013078630111213011237408504071211712493690180961202812013058612681212812013046830901212512013042151281212112013042321381212312411403925165912120130359808812118124114039252111944120147883717312113120130389966712120120130544754312127120130783831312129120130788228712132120130789167912133124984492846212112120130485966212126cREVGeometrycacheorder total27/P/g/h/m @ZcREVGeometryCacheIDs12498452529051213612493688781691202512498452458491213512493693044241207510550335316401211412013038948071211912013079100531213412493688991851202612013078722351213112013078630111213011237408504071211712493690180961202812013058612681212812013046830901212512013042151281212112013042321381212312411403925165912120130359808812118124114039252111944120147883717312113120130389966712120120130544754312127120130783831312129120130788228712132120130789167912133124984492846212112120130485966212126cREVGeometrycacheorder total27/P/g/h/i @ZcREVGeometryCacheIDs12498452529051213612493688781691202512498452458491213512493693044241207510550335316401211412013038948071211912013079100531213412493688991851202612013078722351213112013078630111213011237408504071211712493690180961202812013058612681212812013046830901212512013042151281212112013042321381212312411403925165912120130359808812118124114039252111944120147883717312113120130389966712120120130544754312127120130783831312129120130788228712132120130789167912133124984492846212112120130485966212126cREVGeometrycacheorder total27/P/g/h/j @ZcREVGeometryCacheIDs12498452529051213612493688781691202512498452458491213512493693044241207510550335316401211412013038948071211912013079100531213412493688991851202612013078722351213112013078630111213011237408504071211712493690180961202812013058612681212812013046830901212512013042151281212112013042321381212312411403925165912120130359808812118124114039252111944120147883717312113120130389966712120120130544754312127120130783831312129120130788228712132120130789167912133124984492846212112120130485966212126cREVGeometrycacheorder total27/P/g/hgroup id 5912ion openCard if there is a bkgnd field id 11 then put "Card" && the number of this card && "of" && \ the number of cards into bkgnd field id 11 pass openCard end openCard C cREVGeneral revUniqueID 1241140392516.group id 12028i; cREVGeneral revUniqueID 1249369018096/+group id 12075i3 cREVGeneral revUniqueID 1249369304424 . HCCdNmbrOfHC function cardData -- this handler stores the card data specified by the -- user. DO NOT MOVE THE POSITION OF THIS HANDLER! return "bkgnd" end cardData on newfield -- create a new openCard handler when pasted put word 1 of the long name of me into fieldType if fieldType is "Bkgnd" then set sharedText of me to true addStackScript fieldType updateCardData fieldType end newfield on deleteField removeScript end deleteField on removeScript -- removes the openCard handler added on newField put cardData() into fieldType get script of fieldType if line 1 of scriptBody(fieldType) is in it then put offset(line 1 of scriptBody(fieldType),it) into startBlock put startBlock + number of chars in scriptBody(fieldType) + \ the number of lines in scriptBody(fieldType) + 1 into endBlock delete char startBlock to endBlock of it set script of fieldType to it end if end removeScript on mouseUp -- rebuilds the openCard handler in the stack script if necessary addStackScript cardData() end mouseUp on addStackScript fieldType get script of fieldType if "openCard" is in it then if (fieldType && "field id" && id of me) is not in it then put scriptBody(fieldType) & return after char \ (offSet("openCard",it) + 8) of it set script of fieldType to it end if else if it <> empty then if last char of it = return then put return after it else put return & return after it end if -- write the full handler put "on openCard" & return & scriptBody(fieldType) & return & \ "pass openCard" & return & "end openCard" after it set script of fieldType to it end if end addStackScript function scriptBody fieldType -- returns the body of the openCard handler return "if there is a" && fieldType && "field id" && id of me & return & \ "then put" && quote & "Card" & quote && "&& the number of this card && " & \ quote & "of" & quote && "&& \" & return & "the number of cards into" && \ fieldType && "field id" && id of me end scriptBody on updateCardData fieldType -- write range back to the data handler in this script -- doesn't take effect until idle get script of me put quote & fieldType & quote into newData put newData into char offset(quote,it) to (offSet("end",it) - 2) of it set script of me to it end updateCardData+  cREVGeneral revUniqueID 1241140392521 Card 2 of 7 Card Indexion openCard if there is a bkgnd field id 5 then put "Card" && the number of this card && "of" && \ the number of cards into bkgnd field id 5 pass openCard end openCard6$ D"   ` ` la~0 c1Y aa2 aa4 aex qiֱ `qg   ` ` la~0 c1Y aa2 aa4 aex qiֱ `qg  .Table of Contents xon mouseDown if the shiftKey is down then sort lines of me else if the optionKey is down then createCardNameList -- rebuild list exit mouseDown else -- go to the card associated with the click currentLine put the ticks into theTicks repeat until the mouse is up if the mouseloc is within the rect of target then currentLine put the ticks into theTicks else select empty end repeat if (the ticks - theTicks) < 10 then get the value of the selectedLine if it is empty then exit mouseDown visual effect iris open if the style of me is "Scrolling" then set scroll of me to 0 go cd it end if end if select empty end mouseDown on currentLine put (((the mouseV - top of the target) - 4) + scroll of the target)\ div (textHeight of the target) + 1 into theLine select char 1 to ((number of chars in (line theLine of target)) + 1)\ of line theLine to (theLine + 1) of target end currentLine on createCardNameList -- create the list of card names set the dontWrap of me to true set the lockText of me to true if the style of me is "Scrolling" then set scroll of me to 0 if "bkgnd" is in the target then set the sharedText of target to true put empty into me repeat with curCard = 1 to number of cards set cursor to busy get the short name of card curCard put it into line curCard of me if the length of me > 30000 then answer "Sorry, but this field's 30000" &&\ "character limit has been reached." -- exit to HyperCard end if end repeat end createCardNameList on newField -- auto builds a new list when this field is pasted createCardNameList end newFieldV?[ Title Page Network Refinements Card Index Evidence Evidence Evidence card id 7116 card id 2165 card id 12435 card id 10959 card id 10246 card id 10674 card id 7187 card id 7620 card id 2395 card id 7891 card id 8125 Evidence card id 9142 Evidence card id 9693 card id 12053 card id 9824 card id 10002 card id 11688 card id 11923. `@@.Previous cardC  +on mouseUp go to previous card end mouseUp3 @ . Next cardC  'on mouseUp go to next card end mouseUp2 A cREVGeneral bookmarks handlerListmouseUp tempScript prevHandlermouseUpscriptSelection char 14 to 13script .Network Manager@e y @on mouseUp go to card id 2246 of stack "Network" end mouseUp :yNetwork Manager cREVGeneralscriptChecksum(IY)f bookmarks handlerListmouseUp tempScript prevHandlermouseUpscriptSelection char 50 to 49scripte

on mouseUp

go to card id 2246 of stack "Network"

end mouseUp

. HCCdNmbrOfHC X function cardData -- this handler stores the card data specified by the -- user. DO NOT MOVE THE POSITION OF THIS HANDLER! return "bkgnd" end cardData on newfield -- create a new openCard handler when pasted put word 1 of the long name of me into fieldType if fieldType is "Bkgnd" then set sharedText of me to true addStackScript fieldType updateCardData fieldType end newfield on deleteField removeScript end deleteField on removeScript -- removes the openCard handler added on newField put cardData() into fieldType get script of fieldType if line 1 of scriptBody(fieldType) is in it then put offset(line 1 of scriptBody(fieldType),it) into startBlock put startBlock + number of chars in scriptBody(fieldType) + \ the number of lines in scriptBody(fieldType) + 1 into endBlock delete char startBlock to endBlock of it set script of fieldType to it end if end removeScript on mouseUp -- rebuilds the openCard handler in the stack script if necessary addStackScript cardData() end mouseUp on addStackScript fieldType get script of fieldType if "openCard" is in it then if (fieldType && "field id" && id of me) is not in it then put scriptBody(fieldType) & return after char \ (offSet("openCard",it) + 8) of it set script of fieldType to it end if else if it <> empty then if last char of it = return then put return after it else put return & return after it end if -- write the full handler put "on openCard" & return & scriptBody(fieldType) & return & \ "pass openCard" & return & "end openCard" after it set script of fieldType to it end if end addStackScript function scriptBody fieldType -- returns the body of the openCard handler return "if there is a" && fieldType && "field id" && id of me & return & \ "then put" && quote & "Card" & quote && "&& the number of this card && " & \ quote & "of" & quote && "&& \" & return & "the number of cards into" && \ fieldType && "field id" && id of me end scriptBody on updateCardData fieldType -- write range back to the data handler in this script -- doesn't take effect until idle get script of me put quote & fieldType & quote into newData put newData into char offset(quote,it) to (offSet("end",it) - 2) of it set script of me to it end updateCardData^# Card 3 of 8 Evidenceion openCard if there is a bkgnd field id 8 then put "Card" && the number of this card && "of" && \ the number of cards into bkgnd field id 8 pass openCard end openCard ( cREVGeneral revUniqueID 1245741823566 . HCCdNmbrOfHC x function cardData -- this handler stores the card data specified by the -- user. DO NOT MOVE THE POSITION OF THIS HANDLER! return "bkgnd" end cardData on newfield -- create a new openCard handler when pasted put word 1 of the long name of me into fieldType if fieldType is "Bkgnd" then set sharedText of me to true addStackScript fieldType updateCardData fieldType end newfield on deleteField removeScript end deleteField on removeScript -- removes the openCard handler added on newField put cardData() into fieldType get script of fieldType if line 1 of scriptBody(fieldType) is in it then put offset(line 1 of scriptBody(fieldType),it) into startBlock put startBlock + number of chars in scriptBody(fieldType) + \ the number of lines in scriptBody(fieldType) + 1 into endBlock delete char startBlock to endBlock of it set script of fieldType to it end if end removeScript on mouseUp -- rebuilds the openCard handler in the stack script if necessary addStackScript cardData() end mouseUp on addStackScript fieldType get script of fieldType if "openCard" is in it then if (fieldType && "field id" && id of me) is not in it then put scriptBody(fieldType) & return after char \ (offSet("openCard",it) + 8) of it set script of fieldType to it end if else if it <> empty then if last char of it = return then put return after it else put return & return after it end if -- write the full handler put "on openCard" & return & scriptBody(fieldType) & return & \ "pass openCard" & return & "end openCard" after it set script of fieldType to it end if end addStackScript function scriptBody fieldType -- returns the body of the openCard handler return "if there is a" && fieldType && "field id" && id of me & return & \ "then put" && quote & "Card" & quote && "&& the number of this card && " & \ quote & "of" & quote && "&& \" & return & "the number of cards into" && \ fieldType && "field id" && id of me end scriptBody on updateCardData fieldType -- write range back to the data handler in this script -- doesn't take effect until idle get script of me put quote & fieldType & quote into newData put newData into char offset(quote,it) to (offSet("end",it) - 2) of it set script of me to it end updateCardData  cREVGeneral revUniqueID 1241119143065 Card 7 of 7.iL! cREVGeneral revUniqueID 1249244541896 .Label Field actor)HP9 cREVTable currentviewBActors or persons: (e.g., investigators, trial lawyers, witnesses) cREVGeneral revUniqueID 1244641863434 Actors or persons: (e.g., investigators, trial lawyers, witnesses) .Label Field event  d cREVTable currentview Event or act: cREVGeneral revUniqueID 1244642161061 Event or act: .Label Field Time  D{! cREVTable currentviewTime of event or act: cREVGeneral revUniqueID 1244642199897 Time of event or act:.PersonsE xOon mouseUp visual effect dissolve go to "Persons.LegalActors" end mouseUp 9  cREVGeneral revUniqueID 1244640532576scripteditorvscroll0scripteditorselection35 .Witness HistoryE xMon mouseUp visual effect dissolve go to "Time Line.Witness" end mouseUp 9  cREVGeneralscripteditorvscroll0 revUniqueID 1244640735354scripteditorselection62 .Tangible Evidence HistoryE xNon mouseUp visual effect dissolve go to "Time Line.Tangible" end mouseUp -9  cREVGeneral revUniqueID 1244640771993scripteditorvscroll0scripteditorselection63 .Make New CardEx*on mouseUp doMenu "New Card" end mouseUp @@@@ky5  cREVGeneral revUniqueID 1201478837173 . Next cardG Hon mouseUp visual effect scroll left go to next card end mouseUp $PD A cREVGeneral revUniqueID 1244635688662scripteditorvscroll0scripteditorselection43 .Network ManagerE x*on mouseUp go to "Network" end mouseUp 9  cREVGeneral revUniqueID 1243836241004 .Previous cardG xPon mouseUp visual effect scroll right slowly go to previous card end mouseUp `H @ cREVGeneral revUniqueID 1244639334376scripteditorvscroll0scripteditorselection0 .Field)h cREVGeneral revUniqueID 1244639617965. `@ .Field)hS) cREVGeneral revUniqueID 1244639674196 .Field)h@) cREVGeneral revUniqueID 1244640062304.group id 11982i( cREVGeneral revUniqueID 1249244681082.i() cREVGeneral revUniqueID 1249244810301 .Investigation Time Line ,! cREVTable currentviewInvestigation Time Line cREVGeneral revUniqueID 1249090675678 Investigation Time Line.i7 1 cREVGeneral revUniqueID 1249244869261 .Trial Time Line  ; ) cREVTable currentviewTrial Time Line cREVGeneral revUniqueID 1249244858356 Trial Time Line. Next cardG (on mouseUp go to next card end mouseUp  fqdd(A cREVGeneral revUniqueID 1249368739002 .Network ManagerD &0on mouseUp go to stack "Network" end mouseUp E( cREVGeneral revUniqueID 1249368768243scripteditorvscroll0scripteditorselection0 "t /group id 1017i$` cREVGeneral revUniqueID 1245885842458/Narratives; StoriesE "1on mouseUp go to stack "Narrative" end mouseUp   D"O cREVGeneralscripteditorvscroll0 revUniqueID 1245885693603scripteditorselection33 /Peter Tillers+H@@?# cREVGeneral revUniqueID 1241582521792/Proof Time Linee Zon mouseUp visual effect dissolve slowly go to stack "Proof Time Line" end mouseUp *@*$M Investigation & Proof Time Line cREVGeneral revUniqueID 1245730567721scripteditorvscroll0scripteditorselection47 /Network ManagerE Uon mouseUp visual effect dissolve go to card 2 of stack "Network" end mouseUp E; cREVGeneralscripteditorvscroll0 revUniqueID 1205651794138scripteditorselection36 /Probative ValueE 7on mouseUp go to stack "Probative Value" end mouseUp K cREVGeneralscripteditorvscroll0 revUniqueID 1149850759477scripteditorselection39 /Time Line.Witnesse :on mouseUp go to stack "Time Line.Witness" end mouseUp *@$ITime Lines for Witnesses cREVGeneralscripteditorvscroll0 revUniqueID 1149851002669 /Elimination of PossibilitiesE [on mouseUp visual effect dissolve go to stack "Possibilities Elimination" end mouseUp &I cREVGeneral revUniqueID 1149724130760 / Legal Actorse ;on mouseUp go to stack "Persons.LegalActors" end mouseUp *&O Legal Actors cREVGeneralscripteditorvscroll0 revUniqueID 1149724374008 / D.@````0wg~` 08c `0c 0xa 0Øa< 0`  0`Ѓ08`` >?y```@ ?`g0  a00  `0 N`qx< @0``0f0 qf0 0`0 0a @`0 0 a  0x`0 0 @a 0 0`0 0 a 0080`0 0 a 9ç``0 v0 aLay<x?Þf|}8g3010q w 0~` c ;110aaa`>3 0a` 0ca13 0``0ca13 0``0caq3 0``0ca3 0`` 0cac0110as`x<>`  0p̂g0La0c0 `00 x`7x0`8 Ì0 1`0 c 0 1`0 c 0 1`0 0 1`0  0 1`0  0 0`0 :~x y}Ǟ00`8C΅0p`0A`0p8`0 & `0 `&01~>~p|; >8o&0s0a` a٘c0` caq%0 0F10 a 1`0c0 c a%? <1 a1`0c? c a%0 <1a1`0c0 aa 0 1a1`0c0 ca%0 108a1`0c8 ca&08a`pac0` caX/>x|<s?<>Ø| ````0wg~` 08c `0c 0xa 0Øa< 0`  0`Ѓ08`` >?y```@ ?`g0  a00  `0 N`qx< @0``0f0 qf0 0`0 0a @`0 0 a  0x`0 0 @a 0 0`0 0 a 0080`0 0 a 9ç``0 v0 aLay<x?Þf|}8g3010q w 0~` c ;110aaa`>3 0a` 0ca13 0``0ca13 0``0caq3 0``0ca3 0`` 0cac0110as`x<>`  0p̂g0La0c0 `00 x`7x0`8 Ì0 1`0 c 0 1`0 c 0 1`0 0 1`0  0 1`0  0 0`0 :~x y}Ǟ00`8C΅0p`0A`0p8`0 & `0 `&01~>~p|; >8o&0s0a` a٘c0` caq%0 0F10 a 1`0c0 c a%? <1 a1`0c? c a%0 <1a1`0c0 aa 0 1a1`0c0 ca%0 108a1`0c8 ca&08a`pac0` caX/>x|<s?<>Ø|  cREVGeneral revUniqueID 1055033531619 / (h(cCurrentObjectjstack "C:/Users/Peter Tillers/Documents/MarshalAll/MarshalNet06/Network/Loose Thoughts/Loose Thoughts.rev" cREVGeneral revUniqueID 1055033531620 / (hcB# cREVGeneral revUniqueID 1055033531621 / )h}p<cCurrentObjectQstack "C:/Users/Peter Tillers/Desktop/Net2008X/Loose Thoughts/Loose Thoughts.rev" cREVGeneral revUniqueID 1055033531622/ `@cq // a@~ / One Thought)hzs cREVGeneral revUniqueID 1055033531623/ `@d f/ a@{) / Next CardG Uon mouseUp visual effect scroll left very slowly go to next card end mouseUp @@HHOA cREVGeneralscripteditorvscroll0 revUniqueID 1055033531624scripteditorselection0 /Previous CardG Jon mouseUp visual effect scroll right slowly go to prev card end mouseUp 8[HO@ cREVGeneralscripteditorvscroll0 revUniqueID 1055033531625scripteditorselection29 /Scenario.Casee \on mouseUp visual effect dissolve go to card 1 of stack "Scenario.Case" end mouseUp $KCase Scenarios cREVGeneral revUniqueID 1055033531626 /Case Time Linese \on mouseUp visual effect scroll down slowly go to stack "Time Line.Case" end mouseUp $KCase Time Lines cREVGeneral revUniqueID 1055033531627scripteditorvscroll0scripteditorselection77 / Witnessese :on mouseUp go to stack "Persons.Witnesses" end mouseUp & I Witnesses cREVGeneral revUniqueID 1055033531628 /Legal ArgumentE 7on mouseUp go to stack "Legal Argument" end mouseUp & I cREVGeneral revUniqueID 1055033531629 /Questions & IssuesE :on mouseUp go to stack "Questions & Issues" end mouseUp & O cREVGeneral revUniqueID 1055033531632 /Witness Credibilitye 

opaquetrue threeDHilitefalse shadowOffset4 showBordertrue disabledfalse textSize12fixedLineHeightfalse textFont helveticavScroll0 hilitedLinesshowFocusBordertrue cREVGeneral revUniqueID 1123740850407  charlie /j /i /m /l /k /V Label Field - Info from Witness  | cREVTable currentviewName of Witness: cREVGeneral revUniqueID 1201303598088 Name of Witness: /W!Label Field - Info about Witness /K cREVTablecurrentvscroll0currenthscroll0currentxmouseloc341 viewablerows2currentymouseloc77scrollbarwidth20 cellyspacing16rightfieldloc222viewablecolumns3numbertabstops1 topfieldloc47 leftfieldloc50 cellxspacing75 currentviewEvidence about the Witness:bottomfieldloc68 cREVGeneral revUniqueID 1201303894807 Evidence about the Witness: /X Label Field 9K cREVTablecurrentvscroll0currenthscroll0currentxmouseloc322 viewablerows2currentymouseloc80scrollbarwidth20 cellyspacing16rightfieldloc648viewablecolumns3numbertabstops1 topfieldloc57 leftfieldloc454 cellxspacing75 currentviewEvidence from the Witness:bottomfieldloc78 cREVGeneral revUniqueID 1201303899667 Evidence from the Witness: /YField)`O#cCurrentObjectsstack "K:/MarshalAll/Aussie-Scot MarshalPlan/MarshalNet08/Network/Actors & Persons/Witnesses/Persons.Witnesses.rev" cREVGeneral revUniqueID 1201304215128  /j /i /m /l /k /Z `@P! /[Field)`P% cREVGeneral revUniqueID 1201304232138  /j /i /m /l /k /\ `@IQ# /]Label Field - Time of Report G  cREVTable currentview#Time and Date of Report by Witness: cREVGeneral revUniqueID 1201304683090 $Time and Date of Report by Witness: /^Field)`4L cREVGeneral revUniqueID 1201304859662  /j /i /m /l /k /_Witness's Source of Evidence? m 3P- HearsayBPersonal Observation & Inference Hearsay Conjecture or Assumption cREVGeneral revUniqueID 1201305447543 /`'Label Field - Issues and Possibilities %K cREVTablecurrentvscroll0currenthscroll0currentxmouseloc336 viewablerows2currentymouseloc76scrollbarwidth20 cellyspacing16rightfieldloc853viewablecolumns7numbertabstops1 topfieldloc387 leftfieldloc390 cellxspacing75 currentviewZ

Possibilities & Issues Presented by the Evidence about & from this Witness:

bottomfieldloc417 cREVGeneral revUniqueID 1201305861268 LPossibilities & Issues Presented by the Evidence about & from this Witness:/aLegal Issues & Possibilities`D5on mouseUp go to stack "Legal Rules" end mouseUp  cREVGeneral revUniqueID 1201307838313scripteditorvscroll0scripteditorselection0  /j /i /m /l /k /bFactual Issues & Possibilities`D7on mouseUp go to stack "Possibilities" end mouseUp  cREVGeneral revUniqueID 1201307863011scripteditorvscroll0  /j /i /m /l /k /c0Possible Scenarios or Questions about Scenarios`D7on mouseUp go to stack "Scenario.Case" end mouseUp i cREVGeneral revUniqueID 1201307872235scripteditorvscroll0  /j /i /m /l /k /d%Investigative Issues & Possibilities`DDon mouseUp go to stack "Evidence of Material Facts" end mouseUp  cREVGeneral revUniqueID 1201307882287scripteditorvscroll0scripteditorselection53  /j /i /m /l /k /e(Issues of Credibility & Probative Value`D=on mouseUp go to stack "Witness Credibility" end mouseUp 6 cREVGeneral revUniqueID 1201307891679scripteditorvscroll0scripteditorselection47  /j /i /m /l /k /f>Other Issues & Questions; Unfocused but Interesting Questions`D8on mouseUp go to stack "Loose Thoughts" end mouseUp  cREVGeneral revUniqueID 1201307910053scripteditorvscroll0  /j /i /m /l /k /gib cREVGeneral revUniqueID 1249845245849.Previous CardG x (on mouseUp go to prev card end mouseUp  xZ,@ cREVGeneral revUniqueID 1249368878169 /hi0~b cREVGeneral revUniqueID 1249845252905. Next CardG son mouseUp visual effect dissolve slowly to center visual effect scroll left go to next card end mouseUp 4vZ.A cREVGeneralscripteditorvscroll0 revUniqueID 1249368899185scripteditorselection53