Making text appear in a random screen location

If you are requesting technical assistance with Twine, please specify:
Twine Version: Version 2.3.9
Story Format: Harlowe 3.2.3

I’m not sure if this is even possible, but I’d like to try!

I’d like to have a clickable word show up at a random location onscreen for a few seconds, then disappear and reappear somewhere else on the screen. It would keep doing this until the player clicks it. I’ve tried googling this and found guides to randomizing various other values, but not screen location/alignment. Is this even possible in Harlowe?

1 Like

Update: I’ve tried a workaround in which I create a table the width of the screen, and assign each cell a numeric hook name (say, 1-100). I then created a (live:) macro that began by assigning my event variable a random value from 1-100. I was hoping that I could use this to select a cell between 1 and 100 to display the link for a few seconds. But it appears there’s no way to compare the hook name with the variable name? (I tried using the (hooks-named:) macro, but got an error message that this was applicable only to strings.)

{(live: 4s)[

	(set: $calibrationevent to (random: 1,100))
	(replace: (hooks-named:$calibrationevent)[[[Calibrating...|Calibrated]]]
	(live: 3s)[(replace: (hooks-named:$calibrationevent)[](stop:)]
]
}

You need to use the (str:) macro to convert the Number to a String, before using it as an argument for the (hooks-named: ) macro.

(set: $calibrationevent to (str: (random: 1, 100)))

note: While the Harlowe documentation doesn’t seem to define a naming convention for a Hook Name, all of the hook names mentioned in the documentation start with a letter.

Have you considered how people who don’t use a mouse or touch-screen, or those people that have vision or reaction issues, are going to get passed the “random click area” puzzle?

Thank you!! And thank you for pointing that out about the documentation. It seems like identifying and comparing hook values is off the table, at least for now, so I’ll have to simplify this scene.

(Regarding your question: This will be part of a pseudo-immersive remote experience: I’ll know the names/identities of all the players and the devices they’ll be playing from.)

So… I was very sleep deprived last night, but was looking for a solution to this problem in my own program. I tried every workaround my melatonin-riddled brain let me think of. Alas, like a chihuahua is a hurricane, I stood no chance and I decided in all my genius that the best way to solve this problem was via blunt force trauma. And I would like to state for the record, it fucking works.

Ladies and gentlemen, may I present to you what is very possibly the most atrocious code I have ever written, or even seen for that matter.

CSS:

#RandText-0 { margin-top: 10%; margin-left: 0%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-1 { margin-top: 10%; margin-left: 10%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-2 { margin-top: 10%; margin-left: 20%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-3 { margin-top: 10%; margin-left: 30%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-4 { margin-top: 10%; margin-left: 40%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-5 { margin-top: 10%; margin-left: 50%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-6 { margin-top: 10%; margin-left: 60%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-7 { margin-top: 10%; margin-left: 70%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-8 { margin-top: 10%; margin-left: 80%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-9 { margin-top: 10%; margin-left: 90%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-10 { margin-top: 20%; margin-left: 0%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-11 { margin-top: 20%; margin-left: 10%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-12 { margin-top: 20%; margin-left: 20%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-13 { margin-top: 20%; margin-left: 30%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-14 { margin-top: 20%; margin-left: 40%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-15 { margin-top: 20%; margin-left: 50%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-16 { margin-top: 20%; margin-left: 60%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-17 { margin-top: 20%; margin-left: 70%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-18 { margin-top: 20%; margin-left: 80%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-19 { margin-top: 20%; margin-left: 90%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-20 { margin-top: 30%; margin-left: 0%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-21 { margin-top: 30%; margin-left: 10%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-22 { margin-top: 30%; margin-left: 20%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-23 { margin-top: 30%; margin-left: 30%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-24 { margin-top: 30%; margin-left: 40%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-25 { margin-top: 30%; margin-left: 50%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-26 { margin-top: 30%; margin-left: 60%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-27 { margin-top: 30%; margin-left: 70%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-28 { margin-top: 30%; margin-left: 80%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-29 { margin-top: 30%; margin-left: 90%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-30 { margin-top: 40%; margin-left: 0%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-31 { margin-top: 40%; margin-left: 10%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-32 { margin-top: 40%; margin-left: 20%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-33 { margin-top: 40%; margin-left: 30%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-34 { margin-top: 40%; margin-left: 40%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-35 { margin-top: 40%; margin-left: 50%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-36 { margin-top: 40%; margin-left: 60%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-37 { margin-top: 40%; margin-left: 70%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-38 { margin-top: 40%; margin-left: 80%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-39 { margin-top: 40%; margin-left: 90%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-40 { margin-top: 50%; margin-left: 0%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-41 { margin-top: 50%; margin-left: 10%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-42 { margin-top: 50%; margin-left: 20%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-43 { margin-top: 50%; margin-left: 30%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-44 { margin-top: 50%; margin-left: 40%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-45 { margin-top: 50%; margin-left: 50%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-46 { margin-top: 50%; margin-left: 60%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-47 { margin-top: 50%; margin-left: 70%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-48 { margin-top: 50%; margin-left: 80%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-49 { margin-top: 50%; margin-left: 90%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-50 { margin-top: 60%; margin-left: 0%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-51 { margin-top: 60%; margin-left: 10%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-52 { margin-top: 60%; margin-left: 20%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-53 { margin-top: 60%; margin-left: 30%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-54 { margin-top: 60%; margin-left: 40%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-55 { margin-top: 60%; margin-left: 50%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-56 { margin-top: 60%; margin-left: 60%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-57 { margin-top: 60%; margin-left: 70%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-58 { margin-top: 60%; margin-left: 80%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-59 { margin-top: 60%; margin-left: 90%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-60 { margin-top: 70%; margin-left: 0%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-61 { margin-top: 70%; margin-left: 10%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-62 { margin-top: 70%; margin-left: 20%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-63 { margin-top: 70%; margin-left: 30%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-64 { margin-top: 70%; margin-left: 40%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-65 { margin-top: 70%; margin-left: 50%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-66 { margin-top: 70%; margin-left: 60%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-67 { margin-top: 70%; margin-left: 70%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-68 { margin-top: 70%; margin-left: 80%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-69 { margin-top: 70%; margin-left: 90%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-70 { margin-top: 80%; margin-left: 0%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-71 { margin-top: 80%; margin-left: 10%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-72 { margin-top: 80%; margin-left: 20%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-73 { margin-top: 80%; margin-left: 30%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-74 { margin-top: 80%; margin-left: 40%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-75 { margin-top: 80%; margin-left: 50%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-76 { margin-top: 80%; margin-left: 60%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-77 { margin-top: 80%; margin-left: 70%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-78 { margin-top: 80%; margin-left: 80%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-79 { margin-top: 80%; margin-left: 90%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-80 { margin-top: 90%; margin-left: 0%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-81 { margin-top: 90%; margin-left: 10%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-82 { margin-top: 90%; margin-left: 20%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-83 { margin-top: 90%; margin-left: 30%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-84 { margin-top: 90%; margin-left: 40%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-85 { margin-top: 90%; margin-left: 50%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-86 { margin-top: 90%; margin-left: 60%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-87 { margin-top: 90%; margin-left: 70%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-88 { margin-top: 90%; margin-left: 80%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-89 { margin-top: 90%; margin-left: 90%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-90 { margin-top: 0%; margin-left: 0%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-91 { margin-top: 0%; margin-left: 10%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-92 { margin-top: 0%; margin-left: 20%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-93 { margin-top: 0%; margin-left: 30%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-94 { margin-top: 0%; margin-left: 40%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-95 { margin-top: 0%; margin-left: 50%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-96 { margin-top: 0%; margin-left: 60%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-97 { margin-top: 0%; margin-left: 70%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-98 { margin-top: 0%; margin-left: 80%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }
#RandText-99 { margin-top: 0%; margin-left: 90%; overflow-y: hidden; height: 100%; top: 0; bottom: 0; }

HARLOWE:

(live:0.1s)
[(set:$tp to (either:
"<div id='RandText-0'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-1'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-2'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-3'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-4'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-5'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-6'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-7'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-8'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-9'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-10'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-11'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-12'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-13'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-14'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-15'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-16'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-17'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-18'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-19'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-20'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-21'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-22'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-23'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-24'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-25'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-26'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-27'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-28'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-29'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-30'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-31'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-32'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-33'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-34'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-35'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-36'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-37'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-38'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-39'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-40'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-41'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-42'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-43'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-44'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-45'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-46'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-47'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-48'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-49'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-50'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-51'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-52'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-53'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-54'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-55'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-56'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-57'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-58'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-59'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-60'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-61'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-62'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-63'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-64'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-65'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-66'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-67'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-68'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-69'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-70'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-71'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-72'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-73'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-74'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-75'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-76'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-77'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-78'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-79'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-80'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-81'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-82'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-83'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-84'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-85'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-86'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-87'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-88'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-89'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-90'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 


"<div id='RandText-91'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-92'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-93'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-94'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-95'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-96'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-97'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-98'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>", 

"<div id='RandText-99'>
(either: $pt1, $pt2, $pt3, $pt4, $pt5, $pt6, $pt7, $pt8, $pt9, $pt10, $pt11, $pt12, $pt13, $pt14, $pt15, $pt16, $pt17, $pt18, $pt19, $pt20, $pt21, $pt22, $pt23, $pt24, $pt25, $pt26, $pt27, $pt28, $pt29, $pt30)
</div>"
))$tp]
(live:3s)[(go-to:"tutorial1")(stop:)]

And my guy this is not even all of it. I hand-typed this in a compulsive delirious mess high off nothing but elbow grease. Let this stand as a testament to what bullshit you can accomplish with thirty minutes of sleep, duct tape, and a dream.

2 Likes