<<nobr>>\n<<612 "what does gender feel like to you?">><br>\n\n<<timedreplace 3s>> \n<<594 "To me it feels like waves of water, sometimes I'm above it and other times tossed around underneath.">> \n<<endtimedreplace>>\n\n<<timedreplace 8s>> \n<<78 "It sorta feels like an invisible ball at th center of me, held up by tiny strings and I can only see the shape of it frm the places that th strings end.">>\n<<endtimedreplace>>\n\n<<timedreplace 13s>> \n<<30 "Just sort of a job that I've always had?">> \n<<endtimedreplace>>\n\n<<timedreplace 18s>> \n<<69 "pants that fit :D">> \n<<endtimedreplace>>\n\n<<timedreplace 23s>> \n<<420 "nothing?">> \n<<endtimedreplace>>\n\n<<timedreplace 28s>> \n<<115 "community">> \n<<endtimedreplace>>\n\n<<timedreplace 32s>> \n<<if visited("how", "what")>><<choice [[i think thats all my questions|end]]>><<endif>>\n<<if visited("when")>><<else>><<choice [[when did you know what your gender was?|when]]>><<endif>>\n<<if visited("how")>><<else>><<choice [[how did you know for sure?|how]]>><<endif>>\n<<endtimedreplace>>\n\n<<endnobr>>
<<nobr>>\n\n/%\nCHARACTER\nThis is a template for a character on the left hand side. Modify the elements below to customize the character. \n\nThe title for this passage is the name of the character macro you will call to create dialog in the story passages.\n%/\n\n\n<div class="text-object" >\n/%\nCHARACTER PORTRAIT:\nDIMENSIONS: 50x50\nChange the HTML element src below to modify character potrait.\nSet src="<filename of portrait>"\n%/\n<img class="portrait" src="594.png" > \n\n\n<div class="bubble-object" >\n\n/%\nCHANGE BUBBLE COLORS:\nAdd unique id to the div below, and then edit the corresponding colors in the stylesheet. \n%/\n<div id="fivehundred" class="talk-bubble round tri-right left-top">\n <div class="talktext">\n<p><<print parameter(0)>></p>\n<span class="timestamp">\n<<if parameter(1) != 0>>\n<<print parameter(1) + ",">> \n<<endif>>\n/%\nCHANGE CHARACTER NAME:\nSet the character's "full name" below if you want it to appear\n%/\n594 (she/her)\n\n</span>\n </div>\n</div>\n</div>\n</div>\n\n\n/%\nSOUND NOTIFICATION\nSet this character's sound notification. \n%/\n<audio src="smssounds/beep.ogg" autoplay></audio>\n<<endnobr>>
(function () {\n version.extensions['timedreplaceMacro'] = {\n major: 2,\n minor: 3,\n revision: 0\n };\n macros['timedcontinue'] = macros['timedinsert'] = macros['timedreplace'] = {\n handler: function (g, e, f, b) {\n function cssTimeUnit(s) {\n if (typeof s == "string") {\n if (s.slice(-2).toLowerCase() == "ms") {\n return Number(s.slice(0, -2)) || 0;\n }\n else if (s.slice(-1).toLowerCase() == "s") {\n return Number(s.slice(0, -1)) * 1000 || 0;\n }\n }\n throwError(g, s + " isn't a CSS time unit");\n return 0;\n }\n\n function tagcontents(starttag, endtag, k) {\n var a = b.source.slice(k);\n var l = 0;\n var c = "";\n for (var i = 0; i < a.length; i++) {\n var w = endtag.length;\n if (a.substr(i, w) == endtag) {\n if (l == 0) {\n b.nextMatch = k + i + w;\n return c;\n }\n else {\n l--;\n c += a.charAt(i);\n }\n }\n else {\n if (a.substr(i, starttag.length) == starttag) {\n l++;\n }\n c += a.charAt(i);\n }\n }\n return "";\n }\n var tr = "<<" + e;\n var rw = "<<replacewith>>";\n var etr = "<<end" + e + ">>";\n var k = b.source.indexOf('>>', b.matchStart) + 2;\n var c, d;\n\t if (e == "timedcontinue") {\n\t d = b.source.slice(k);\n\t\tb.nextMatch = k + d.length;\n\t }\n else if (e == "timedreplace") {\n c = tagcontents(tr, rw, k);\n d = tagcontents((c ? rw : tr), etr, c ? b.nextMatch : k);\n }\n else if (e == "timedinsert") {\n d = tagcontents(tr, etr, k);\n }\n else if (e == "timedremove") {\n c = tagcontents(tr, etr, k);\n }\n var tm;\n tm = cssTimeUnit(f[0]);\n var h;\n if (c) {\n if (d) {\n g = insertElement(g, "span", null, "timedreplacements");\n }\n h = insertElement(g, "span", null, "timedreplacement timedremove");\n new Wikifier(h, c);\n if (d || e == "timedremove") {\n setTimeout(function () {\n h.classList.add("replacement-out");\n setTimeout(function () {\n h.parentNode.removeChild(h);\n }, 1000);\n }, tm);\n }\n }\n if (d) {\n var m = insertElement(g, "span", null, "timedreplacement timedinsert", d);\n m.style.display = "none";\n setTimeout(function () {\n if (m) {\n var t = m.firstChild ? m.firstChild.nodeValue : "";\n removeChildren(m);\n new Wikifier(m, t);\n m.style.display = "inline";\n m.classList.add("replacement-in");\n setTimeout(function () {\n m.classList.remove("replacement-in");\n }, 1);\n scrollWindowTo(m);\n }\n }, tm);\n }\n else if (!c && e != "timedremove") {\n throwError(g, "can't find matching end" + e);\n return;\n }\n }\n }\n macros['timedremove'] = macros['timedreplace'];\n macros['replacewith'] = macros['endtimedinsert'] = macros['endtimedremove'] = macros['endtimedreplace'] = {\n handler: function () {}\n }\n scrollWindowTo=function(E){var D=window.scrollY?window.scrollY:document.body.scrollTop;\n var G=J(E);if(!G){return;}var C=Math.abs(D-G);var B=0;var I=(D>G)?-1:1;var F=window.setInterval(H,25);\ndocument.getElementById('content1').scrollTop = \n document.getElementById('content1').scrollHeight;\ndocument.getElementById('content1').scrollTop = \n document.getElementById('content1').scrollHeight;\n\ndocument.body.scrollTop = document.getElementById('content1').scrollTop = \n document.getElementById('content1').scrollHeight;\n\n function H(){B+=0.1;window.scrollTo(0,D+I*(C*Math.easeInOut(B)));if(B>=1){window.clearInterval(F);document.getElementById('content1').scrollTop = \n document.getElementById('content1').scrollHeight;\n\ndocument.body.scrollTop = document.getElementById('content1').scrollTop = \n document.getElementById('content1').scrollHeight;\n\n }}function J(N){var O=A(N);var P=O+N.offsetHeight;var K=window.scrollY?window.scrollY:document.body.scrollTop;\n var L=window.innerHeight?window.innerHeight:document.body.clientHeight;var M=K+L;\n\ndocument.getElementById('content1').scrollTop = \n document.getElementById('content1').scrollHeight;\n\ndocument.body.scrollTop = document.getElementById('content1').scrollTop = \n document.getElementById('content1').scrollHeight;\n\n if(O>=K){if(P>M){if(N.offsetHeight<L){return(O-(L-N.offsetHeight)+20);}else{return O;\n }}}}function A(K){var L=0;while(K.offsetParent){L+=K.offsetTop;K=K.offsetParent;}return L;\n document.getElementById('content1').scrollTop = \n document.getElementById('content1').scrollHeight;\n\ndocument.body.scrollTop = document.getElementById('content1').scrollTop = \n document.getElementById('content1').scrollHeight; }};\n}());\n\n\n
<<nobr>>\n<<612 "...">>\n\n<<timedreplace 3s>> \n<<30 "OH.">> \n<<endtimedreplace>>\n<<timedreplace 5s>> \n<<30 "I guess I didn't realize we had some stragglers still figuring that out.">><br>\n<<endtimedreplace>>\n\n<<timedreplace 8s>> \n@@font-size: x-large;78 mutes 30@@<br><br>\n<<endtimedreplace>>\n\n<<timedreplace 10s>> \n<<78 "Oh my GOD 30 please shut up, evrytime this comes up ur so terrible abt it">> \n<<endtimedreplace>>\n\n<<timedreplace 12s>> \n<<115 "shush">> \n<<endtimedreplace>>\n\n<<timedreplace 15s>> \n<<30 "It wasn’t meant to be an insult! I just forget about relative time, sometimes. I'll be quiet.">> \n<<endtimedreplace>>\n<<timedreplace 17s>> \n<<30 "(But you know only 1 can mute/ban, right?)">> \n<<endtimedreplace>>\n\n<<timedreplace 20s>> \n<<69 "lets all take a leisurely stroll down the technicolor road of self discoveryyyy \so/">> \n<<endtimedreplace>>\n\n<<timedreplace 22s>> \n<<420 "hell yes 612 how can we help?">> \n<<endtimedreplace>>\n\n\n<<timedreplace 25s>> \n<<choice [[i was looking for some perspective from all of you? me? us?|us]]>>\n<<endtimedreplace>>\n\n<<endnobr>>
<<nobr>>\n\n<<player_char "So kind of like Interstellar?" "2:05pm">> \n\n<<timedreplace 2s>> \n<<friend_char "Yeah make it sad af" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 4s>> \n<<player_char "Yo that's actually a sick idea" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 6s>> \n<<friend_char "And then one ages faster than the other and maybe there's time travel because " "2:06pm">> \n<<endtimedreplace>>\n\n<<timedreplace 9s>> \n<<friend_char "Time travel is the best trope" "2:06pm">> \n<<endtimedreplace>>\n\n<<timedreplace 11s>> \n<<friend_char "Time travel & texting, and you can fudge the time stamps" "4:22am THE YEAR 2070">> \n<<endtimedreplace>>\n\n\n/% autojump %/\n<<timedreplace 12s>> \n<<timedgoto "ChoiceExample" 0.01s >>\n<<endtimedreplace>>\n\n\n<<endnobr>>\n
<<nobr>>\n\n/%\nCHARACTER\nThis is a template for a character on the left hand side. Modify the elements below to customize the character. \n\nThe title for this passage is the name of the character macro you will call to create dialog in the story passages.\n%/\n\n\n<div class="text-object" >\n/%\nCHARACTER PORTRAIT:\nDIMENSIONS: 50x50\nChange the HTML element src below to modify character potrait.\nSet src="<filename of portrait>"\n%/\n<img class="portrait" src="115.png" > \n\n\n<div class="bubble-object" >\n\n/%\nCHANGE BUBBLE COLORS:\nAdd unique id to the div below, and then edit the corresponding colors in the stylesheet. \n%/\n<div id="hundred" class="talk-bubble round tri-right left-top">\n <div class="talktext">\n<p><<print parameter(0)>></p>\n<span class="timestamp">\n<<if parameter(1) != 0>>\n<<print parameter(1) + ",">> \n<<endif>>\n/%\nCHANGE CHARACTER NAME:\nSet the character's "full name" below if you want it to appear\n%/\n115 (she/her)\n\n</span>\n </div>\n</div>\n</div>\n</div>\n\n\n/%\nSOUND NOTIFICATION\nSet this character's sound notification. \n%/\n<audio src="smssounds/beep.ogg" autoplay></audio>\n<<endnobr>>
<<nobr>>\n/%\nEVERY PASSAGE NEEDS TO OPEN AND CLOSE WITH <<nobr>> <<endnobr>>\n\nREMOVES ALL HTML <BR> ELEMENTS\n%/\n\n\n/%<link style ="height: 0px" href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">%/\n/%\nset src=<filename> of the music you want to loop.\nJust delete this part if you don't want music in the game.\n%/\n/%\n<audio src="smssounds/music.mp3" loop autoplay></audio>--->\nmusic\n%/\n/%\nDialog begins here\nWrap your dialog macros around \n<<timedreplace [seconds]>>\n<<endtimedreplace>>\n\nNot wrapping will have the dialog appear instantly\n\nNot adding a timestamp will omit it from the text box. Time stamps are optional. \n%/\n@@font-size: x-large;WINDOW OPENING@@\n<<timedreplace 2s>>\n@@font-size: x-large;<br>{{{////////////////////}}}@@\n<<endtimedreplace>>\n<<timedreplace 3s>>\n@@font-size: x-large;<br>{{{////////////////////}}}@@\n<<endtimedreplace>>\n<<timedreplace 4s>>\n@@font-size: x-large;<br>{{{////////////////////}}}@@\n<<endtimedreplace>>\n<<timedreplace 5s>>\n@@font-size: x-large;<br>The window is now open.@@\n<<endtimedreplace>>\n\n<<timedreplace 7s>>\n<<choice [[hello?]]>>\n<<choice [[anybody there?]]>>\n<<endtimedreplace>>\n<<endnobr>>\n
<<nobr>>\n\n/%\nCHARACTER\nThis is a template for a character on the left hand side. Modify the elements below to customize the character. \n\nThe title for this passage is the name of the character macro you will call to create dialog in the story passages.\n%/\n\n\n<div class="text-object" >\n/%\nCHARACTER PORTRAIT:\nDIMENSIONS: 50x50\nChange the HTML element src below to modify character potrait.\nSet src="<filename of portrait>"\n%/\n<img class="portrait" src="69.png" > \n\n\n<div class="bubble-object" >\n\n/%\nCHANGE BUBBLE COLORS:\nAdd unique id to the div below, and then edit the corresponding colors in the stylesheet. \n%/\n<div id="sexnumber" class="talk-bubble round tri-right left-top">\n <div class="talktext">\n<p><<print parameter(0)>></p>\n<span class="timestamp">\n<<if parameter(1) != 0>>\n<<print parameter(1) + ",">> \n<<endif>>\n/%\nCHANGE CHARACTER NAME:\nSet the character's "full name" below if you want it to appear\n%/\n69 (ze/hir)\n\n</span>\n </div>\n</div>\n</div>\n</div>\n\n\n/%\nSOUND NOTIFICATION\nSet this character's sound notification. \n%/\n<audio src="smssounds/beep.ogg" autoplay></audio>\n<<endnobr>>
<<nobr>>\n\n/%\nCHARACTER\nThis is a template for a character on the left hand side. Modify the elements below to customize the character. \n\nThe title for this passage is the name of the character macro you will call to create dialog in the story passages.\n%/\n\n\n<div class="text-object" >\n/%\nCHARACTER PORTRAIT:\nDIMENSIONS: 50x50\nChange the HTML element src below to modify character potrait.\nSet src="<filename of portrait>"\n%/\n<img class="portrait" src="smsportraits/2b.png" > \n\n\n<div class="bubble-object" >\n\n/%\nCHANGE BUBBLE COLORS:\n1)Give the div below a unique id\nEX: id="ExampleCustomCharacter"\n2) Open the Stylesheet and add the following based on the ID name\n\n#ExampleCustomCharacter{\nbackground-color: red;\n}\n#ExampleCustomCharacter::after{\n border-color: red transparent transparent transparent;\n}\n\nExample provided below and in stylesheet\n%/\n\n<div id="ExampleCustomCharacter" class="talk-bubble round tri-right left-top">\n <div class="talktext">\n<p><<print parameter(0)>></p>\n<span class="timestamp">\n<<if parameter(1) != 0>>\n<<print parameter(1) + ",">> \n<<endif>>\n/%\nCHANGE CHARACTER NAME:\nSet the character's "full name" below if you want it to appear\n%/\n2B\n\n</span>\n </div>\n</div>\n</div>\n</div>\n\n\n/%\nSOUND NOTIFICATION\nSet this character's sound notification. \n%/\n<audio src="smssounds/beep.ogg" autoplay></audio>\n<<endnobr>>
version.extensions.timedgotoMacro={major:1,minor:2,revision:0};\nmacros["goto"]=macros.timedgoto={timer:null,handler:function(a,b,c,d){function cssTimeUnit(s){if(typeof s=="string"){if(s.slice(-2).toLowerCase()=="ms"){return +(s.slice(0,-2))||0\n}else{if(s.slice(-1).toLowerCase()=="s"){return +(s.slice(0,-1))*1000||0\n}}}throwError(a,s+" isn't a CSS time unit");return 0}var t,d,m,s;\nt=c[c.length-1];d=d.fullArgs();m=0;if(b!="goto"){d=d.slice(0,d.lastIndexOf(t));\nm=cssTimeUnit(t)}d=eval(Wikifier.parse(d));if(d+""&&state&&state.init){if(macros["goto"].timer){clearTimeout(macros["goto"].timer)\n}s=state.history[0].passage.title;macros["goto"].timer=setTimeout(function(){if(state.history[0].passage.title==s){state.display(d,a)\n}},m)}}};
\n<<nobr>>\n <div class="text-object player" >\n<div class="bubble-object player">\n<div class="talk-bubble round player decision">\n <div class="talktext">\n <p><<print parameter(0)>></p>\n </div>\n</div>\n</div>\n</div>\n</div>\n<<endnobr>>
<<nobr>>\n\n<<timedreplace 3s>> \n<<friend_char "Are you going to add multiple characters?" "2:07pm">> \n<<endtimedreplace>>\n\n<<timedreplace 5s>> \n<<player_char "Yeah maybe it's just two characters talking for most of the time, then a third one joins to show it supports group texting situations" "2:07pm">> \n<<endtimedreplace>>\n\n<<timedreplace 9s>> \n<<player_char "But I can't really think of an elegant way to handle the introduction" "2:08pm">> \n<<endtimedreplace>>\n\n<<timedreplace 12s>> \n<<shark_char "WATUP, you know who it is, it's shark" "2:08pm">> \n<<endtimedreplace>>\n\n<<timedreplace 15s>> \n<<friend_char "Maybe Shark has some ideas?" "2:08pm">> \n<<endtimedreplace>>\n\n<<timedreplace 18s>> \n<<shark_char "Actually I've been waiting at Chipotle with for like 20 minutes, where are you lol" "2:08pm">> \n<<endtimedreplace>>\n\n<<timedreplace 22s>> \n<<player_char "lol woops. ok we're on our way" "2:08pm">> \n<<endtimedreplace>>\n\n<<timedreplace 24s>> \n<<player_char "let's just figure out the ending later" "2:08pm">> \n<<endtimedreplace>>\n\n<<timedreplace 26s>> \n<<friend_char "good work team" "2:08pm">> \n<<endtimedreplace>>\n\n<<timedreplace 29s>> \n<<timedgoto "ClearTextExample" 0.01s >>\n<<endtimedreplace>>\n\n\n<<endnobr>>\n
<<nobr>>\n\n<<612 "uh... not really">>\n\n<<timedreplace 2s>> \n<<69 "hmmm">> \n<<endtimedreplace>>\n\n<<timedreplace 4s>> \n<<30 "Well I guess I'm confused. What exactly was your question? I guess you haven't said.">> \n<<endtimedreplace>>\n\n<<timedreplace 7s>> \n<<69 "oh this is a //personal// gender question isnt it :v">><br>\n<<endtimedreplace>>\n\n<<timedreplace 9s>> \n@@font-size: x-large;69 waggles hir eyebrows@@<br>\n<<endtimedreplace>>\n\n/% autojump %/\n<<timedreplace 12s>> \n<<choice [[...|YUP]]>>\n<<endtimedreplace>>\n\n<<endnobr>>
30: cis man\n78: trans woman\n115: cis woman\n594: genderfluid\n69: non-binary\n420: agender
<<nobr>>\n@@font-size: x-large;78 tries to steer the convo back on track@@<br><br>\n\n<<timedreplace 1s>>\n<<78 "Did you have a question 612?">>\n<<endtimedreplace>>\n\n<<timedreplace 3s>>\n<<594 "I've got a question">>\n<<endtimedreplace>>\n<<timedreplace 5s>>\n<<594 "Why isn't my chat bubble green">>\n<<endtimedreplace>>\n\n<<timedreplace 8s>>\n<<30 "Here we go again...">>\n<<endtimedreplace>>\n\n<<timedreplace 10s>>\n<<420 "everyone wannts">>\n<<endtimedreplace>>\n<<timedreplace 11s>>\n<<420 "the greeeeen">>\n<<endtimedreplace>>\n<<timedreplace 13s>>\n<<420 "so no one gets it">>\n<<endtimedreplace>>\n\n<<timedreplace 16s>>\n<<30 "Are you even the real 420? I don't remember them being this into the weed jokes.">>\n<<endtimedreplace>>\n\n<<timedreplace 19s>>\n<<420 "nah I'm 419 but 420 is always afk anyway">>\n<<endtimedreplace>>\n\n<<timedreplace 22s>>\n<<78 "594 ur new to th chat right? U should check out th FAQ">>\n<<endtimedreplace>>\n\n<<timedreplace 24s>>\n<<594 "Where's that?">>\n<<endtimedreplace>>\n\n<<timedreplace 26s>>\n<<78 "Ill PM u one sec">>\n<<endtimedreplace>>\n\n<<timedreplace 30s>>\n<<30 "The short version is that for most of us, green is our favorite color. If everyone picked it, this chat would be totally unreadable.">>\n<<endtimedreplace>>\n\n<<timedreplace 34s>>\n<<30 "We should get back on topic before this dissolves into more nonsense.">>\n<<endtimedreplace>>\n\n<<timedreplace 36s>>\n<<115 "agreed">>\n<<endtimedreplace>>\n\n<<timedreplace 40s>>\n<<78 "I just pulled up the data bout the gender stuff if u wanna have us go over it w/you?">>\n<<endtimedreplace>>\n\n<<timedreplace 43s>>\n<<choice [[sure?|data]]>>\n<<choice [[uh... not really|personal]]>>\n<<endtimedreplace>>\n<<endnobr>>
<<nobr>>\n<<612 "how did you know for sure?">><br>\n\n<<timedreplace 3s>> \n<<69 "oh man fun one >.>">> \n<<endtimedreplace>>\n<<timedreplace 6s>> \n<<69 "i went through a lot of work to figure out what fit me best">> \n<<endtimedreplace>>\n<<timedreplace 9s>> \n<<69 "tried on a lot of labels wore them like bad fitting pants for a while trying to convince myself they werent that bad :X">> \n<<endtimedreplace>>\n<<timedreplace 14s>> \n<<69 "pissed off my parents (fuck them) and confused a lot of people i thought were my friends">> \n<<endtimedreplace>>\n<<timedreplace 18s>> \n<<69 "(spoiler alert they were NOT good friends) >:(">> \n<<endtimedreplace>>\n<<timedreplace 21s>> \n<<69 "first i thought i was gay but then no maybe im bi but then maybe im a guy so then maybe i AM gay :?">> \n<<endtimedreplace>>\n<<timedreplace 24s>> \n<<69 "tried to play the part for a while cause i KNEW i wasnt a girl at that point so i got rid of a bunch of dresses and makeup and things that actually made me happy :(">> \n<<endtimedreplace>>\n<<timedreplace 29s>> \n<<69 "eventually realized i wasn't a guy either... and here i am enby and amazing :DDD">> \n<<endtimedreplace>>\n<<timedreplace 32s>> \n<<69 "so how did I know :? hard work trial and error and lot of stubborn ;)">> \n<<endtimedreplace>>\n\n<<timedreplace 37s>> \n<<420 "do I have to know for sure?">> \n<<endtimedreplace>>\n<<timedreplace 40s>> \n<<420 "does it hurt anyone if I don't?">> \n<<endtimedreplace>>\n<<timedreplace 43s>> \n<<420 "I know enough for right //now//.">> \n<<endtimedreplace>>\n<<timedreplace 46s>> \n<<420 "I spent so much time soul-searching and agonizing about being 'sure' and being 'right' that I was wasting time I could have been happy instead.">> \n<<endtimedreplace>>\n<<timedreplace 51s>> \n<<420 "I have been trying to draw from the well of gender but my bucket always comes up dry.">> \n<<endtimedreplace>>\n<<timedreplace 54s>> \n<<420 "maybe gender and I weren't meant to be.">> \n<<endtimedreplace>>\n\n<<timedreplace 58s>> \n<<115 "hm">> \n<<endtimedreplace>>\n\n<<timedreplace 60s>> \n<<69 "...">> \n<<endtimedreplace>>\n\n<<timedreplace 62s>> \n<<420 "...">> \n<<endtimedreplace>>\n\n<<timedreplace 64s>> \n<br>@@font-size: x-large;78 waits expectantly@@<br><br>\n<<endtimedreplace>>\n\n<<timedreplace 67s>> \n<<115 "I had a lot of conflicting feelings about being a woman. I didn’t like the expectations that society had for me, in regard to femininity and sexuality. I actively rejected a lot of what I thought it meant to be a woman, in fact.">> \n<<endtimedreplace>>\n<<timedreplace 73s>> \n<<115 "I was in a gender limbo for a while, but ultimately I decided that while I may not look or act 'like a woman', I still felt like a woman. I still wanted to be a woman. I still am a woman, and I’m happy with that.">> \n<<endtimedreplace>>\n<<timedreplace 79s>> \n<<115 "also">> \n<<endtimedreplace>>\n<<timedreplace 80s>> \n<<115 "big gay">> \n<<endtimedreplace>>\n\n<<timedreplace 84s>> \n<<69 "115 holy shit :OOOOOOOOOOOOOO">> \n<<endtimedreplace>>\n\n<<timedreplace 86s>> \n<<115 "what">> \n<<endtimedreplace>>\n\n<<timedreplace 88s>> \n<<69 "thats the most ive ever heard you say at once holy heck :OOOOOOOOOOOOOOOOOO">> \n<<endtimedreplace>>\n\n<<timedreplace 90s>> \n<<115 "lol">> \n<<endtimedreplace>>\n\n\n<<timedreplace 94s>> \n<<if visited("how", "what")>><<choice [[i think thats all my questions|end]]>><<endif>>\n<<if visited("when")>><<else>><<choice [[when did you know what your gender was?|when]]>><<endif>>\n<<if visited("what")>><<else>><<choice [[what does gender feel like to you?|what]]>><<endif>>\n<<endtimedreplace>>\n\n<<endnobr>>
<<nobr>>\n<<612 "when did you know what your gender was?">><br>\n\n<<timedreplace 3s>> \n<<78 "ah, good one">> \n<<endtimedreplace>>\n<<timedreplace 5s>> \n<<78 "I dont know if it was rly gender but I did have a sense of smthn bein... off? evn when I was a kid.">> \n<<endtimedreplace>>\n<<timedreplace 9s>> \n<<78 "Took me a while t figure it out, evn when I hit puberty and things just got monumentally worse all around. I just didnt have the words t express what I was feelin until I was 15, maybe 16?">> \n<<endtimedreplace>>\n<<timedreplace 14s>> \n<<78 "I found stuff on the internet talkin about what it was to be trans and I kind of had an oh shit moment like, wow, that kinda explains some things!">> \n<<endtimedreplace>>\n<<timedreplace 18s>> \n<<78 "So probly around then, for me.">><br>\n<<endtimedreplace>>\n\n\n<<timedreplace 24s>> \n<<30 "On the other hand, I'm cis...">> \n<<endtimedreplace>>\n<<timedreplace 26s>> \n<<30 "Not sure if you want my input, but I've never really had to think about my gender.">> \n<<endtimedreplace>>\n<<timedreplace 29s>> \n<<30 "I suppose I just took a look at the hand dealt to me and saw no problems with it. Never had to think about or question it. So when did I know? Always, never, forver, N/A?">> \n<<endtimedreplace>>\n<<timedreplace 33s>> \n<<30 "(Not even getting into toxic masculinity and all that jazz...)">><br>\n<<endtimedreplace>>\n\n\n<<timedreplace 38s>> \n<<594 "Bold of you to assume my gender is static">> \n<<endtimedreplace>>\n<<timedreplace 40s>> \n<<594 "Ok that was a joke but I am actually genderfluid">> \n<<endtimedreplace>>\n<<timedreplace 43s>> \n<<594 "Personally for me, I don't like to focus on the 'when'. My experience with gender is changing all the time? There is no magical gender that will come along and make me realize that oh yes, this is The One and now I'm done being genderfluid.">> \n<<endtimedreplace>>\n<<timedreplace 49s>> \n<<594 "I know my gender is Subject to Change and that's good enough for me.">> \n<<endtimedreplace>>\n\n\n\n<<timedreplace 53s>> \n<<if visited("how", "what")>><<choice [[i think thats all my questions|end]]>><<endif>>\n<<if visited("how")>><<else>><<choice [[how did you know for sure?|how]]>><<endif>>\n<<if visited("what")>><<else>><<choice [[what does gender feel like to you?|what]]>><<endif>>\n<<endtimedreplace>>\n\n<<endnobr>>
30: perfect punctuation and grammar\n78: ALL CAPS for emphasis, uses form shortened words, RPs\n115: lapslock, single word answers mostly\n594: similar to 30\n69: lapslock, no punctuation, lots of smileys\n420: idk
<<nobr>>\n\n/%\nCHARACTER\nThis is a template for a character on the left hand side. Modify the elements below to customize the character. \n\nThe title for this passage is the name of the character macro you will call to create dialog in the story passages.\n%/\n\n\n<div class="text-object" >\n/%\nCHARACTER PORTRAIT:\nDIMENSIONS: 50x50\nChange the HTML element src below to modify character potrait.\nSet src="<filename of portrait>"\n%/\n<img class="portrait" src="420.png" > \n\n\n<div class="bubble-object" >\n\n/%\nCHANGE BUBBLE COLORS:\nAdd unique id to the div below, and then edit the corresponding colors in the stylesheet. \n%/\n<div id="weednumber" class="talk-bubble round tri-right left-top">\n <div class="talktext">\n<p><<print parameter(0)>></p>\n<span class="timestamp">\n<<if parameter(1) != 0>>\n<<print parameter(1) + ",">> \n<<endif>>\n/%\nCHANGE CHARACTER NAME:\nSet the character's "full name" below if you want it to appear\n%/\n420 (they/them)\n\n</span>\n </div>\n</div>\n</div>\n</div>\n\n\n/%\nSOUND NOTIFICATION\nSet this character's sound notification. \n%/\n<audio src="smssounds/beep.ogg" autoplay></audio>\n<<endnobr>>
jquery:on\nhash:off\nbookmark:on\nmodernizr:off\nundo:off\nobfuscate:off\nexitprompt:off\nblankcss:off\n
<<nobr>>\n@@font-size: x-large;78 gives 30 a friendly smack@@<br><br>\n<<timedreplace 2s>> \n<<78 "Is THAT any way t talk to urself? Dont be rude!">>\n<<endtimedreplace>>\n\n<<timedreplace 6s>> \n<<30 "Please cut me some slack, 78, I'm really fucking tired.">> \n<<endtimedreplace>>\n\n<<timedreplace 7.5s>> \n<<594 "Biggest mood">> \n<<endtimedreplace>>\n\n<<timedreplace 8.5s>> \n<<78 "ok mood">> \n<<endtimedreplace>>\n\n<<timedreplace 9s>> \n<<69 "moooooood :/">> \n<<endtimedreplace>>\n\n<<timedreplace 9.5s>> \n<<115 "mood">> \n<<endtimedreplace>>\n\n<<timedreplace 11s>> \n<<420 "hey 69! what's up man!!!">> \n<<endtimedreplace>>\n\n<<timedreplace 13s>> \n<<69 "eyyyyy sup :D">> \n<<endtimedreplace>>\n\n<<timedreplace 14s>> \n<<78 "so whats up, 612?">> \n<<endtimedreplace>>\n\n/% autojump %/\n<<timedreplace 17s>> \n<<choice [[do you all remember that whole gender thing?|remember]]>>\n<<endtimedreplace>>\n\n<<endnobr>>
<<nobr>>\n/%\nPLAYER CHARACTER\nThis is a template for a character on the right side, typically the player character. Modify the elements below to customize the character. \n\nThe title for this passage is the name of the character macro you will call to create dialog in the story passages.\n%/\n\n<div class="text-object player" >\n\n/%\nCHARACTER PORTRAIT:\nDIMENSIONS: 50x50\nChange the HTML element src below to modify character potrait.\nSet src="<filename of portrait>"\n%/\n<img class="player-portrait" src="612.png">\n\n/%\nCHANGE BUBBLE COLORS:\nAdd unique id to the div below, and then edit the corresponding colors in the stylesheet. \n%/\n<div class="bubble-object player">\n<div class="talk-bubble round player tri-right right-top">\n <div class="talktext">\n <p><<print parameter(0)>></p>\n<span class="timestamp">\n<<if parameter(1) != 0>>\n<<print parameter(1) + ",">> \n<<endif>>\n/%\nCHANGE CHARACTER NAME:\nSet the character's "full name" below if you want it to appear\n%/\n612\n\n</span>\n </div>\n</div>\n</div>\n</div>\n\n/%\nSOUND NOTIFICATION\nSet this character's sound notification. \n%/\n/%<audio src="smssounds/beep.ogg" autoplay></audio>%/\n<<endnobr>>
<<nobr>>\n<<612 "i think thats all my questions">><br>\n\n<<timedreplace 3s>> \n<<78 "Well I hope we were able t help!">> \n<<endtimedreplace>>\n\n<<timedreplace 6s>> \n<<69 "gender is honestly a mess :/">> \n<<endtimedreplace>>\n<<timedreplace 8s>> \n<<69 "if you wanna talk more">> \n<<endtimedreplace>>\n<<timedreplace 10s>> \n<<69 "you can always PM me :)">> \n<<endtimedreplace>>\n\n<<timedreplace 13s>> \n<<30 "I'm sure everyone else has more to say on the topic than I do, but I can always help you set up a window with a focus group, so to speak.">> \n<<endtimedreplace>>\n<<timedreplace 17s>> \n<<30 "I have a lot of experience with these windows.">> \n<<endtimedreplace>>\n<<timedreplace 20s>> \n<<30 "(Just be glad you don't have a psychic link to all your selves.)">> \n<<endtimedreplace>>\n\n<<timedreplace 23s>> \n<<420 "you're always welcome to join...">> \n<<endtimedreplace>>\n<<timedreplace 25s>> \n<<420 "... the nonbinary club o/">> \n<<endtimedreplace>>\n\n<<timedreplace 27s>> \n<<69 "\s\so/">> \n<<endtimedreplace>>\n\n<<timedreplace 29s>> \n<<594 "\s\so">> \n<<endtimedreplace>>\n\n<<timedreplace 32s>> \n<<420 "hellllllllllllllllll yes triple HIGH five">> \n<<endtimedreplace>>\n\n<<timedreplace 34s>>\n<<78 "Or yknow, w/e team u want to join is fine!">>\n<<endtimedreplace>>\n<<timedreplace 36s>>\n<<78 "We’re here t support u!">>\n<<endtimedreplace>>\n \n<<timedreplace 39s>>\n<<594 "Yea, you know we love you, right? We’re all like… yknow">>\n<<endtimedreplace>>\n \n<<timedreplace 41s>>\n<<115 "family">>\n<<endtimedreplace>>\n \n<<timedreplace 43s>>\n<<69 "basically yea xD">>\n<<endtimedreplace>>\n \n<<timedreplace 46s>>\n<<30 "Sometimes a family is just you and 713 other versions of yourself from different facets of the m ltiverse?">>\n<<endtimedreplace>>\n \n<<timedreplace 50s>>\n<<69 "the RE L gender is the 713 other v rsions of yourself y u met al ng the way ;D">>\n<<endtimedreplace>>\n \n<<timedreplace 54s>>\n<<78 "Ah l oks li e the w n ow’s close g.">>\n<<endtimedreplace>>\n<<timedreplace 56s>>\n<<78 "T l ne t t me?">>\n<<endtimedreplace>>\n \n<<timedreplace 60s>>\n<<choice [[til next time|ended]]>>\n<<endtimedreplace>>\n\n<<endnobr>>
<<nobr>>\n\n<<612 "anybody there?">> \n\n<<timedreplace 3s>> \n<<115 "yup">> \n<<endtimedreplace>>\n\n<<timedreplace 5s>> \n<<30 "Unfortunately, yes. Not all of us have notifications turned off yet.">> \n<<endtimedreplace>>\n\n/% autojump %/\n<<timedreplace 8s>> \n<<timedgoto "rude" 0.01s >>\n<<endtimedreplace>>\n<<endnobr>>
<<nobr>>\n\n<<612 "hello?">> \n\n<<timedreplace 3s>> \n<<115 "hi">> \n<<endtimedreplace>>\n\n<<timedreplace 5s>> \n<<30 "Hello, yes. I guess I forgot to turn off notifications...">> \n<<endtimedreplace>>\n\n/% autojump %/\n<<timedreplace 8s>> \n<<timedgoto "rude" 0.01s >>\n<<endtimedreplace>>\n<<endnobr>>
a bunch of you in a crowded room
<<nobr>>\n\n<<cleartexthistory>>\n\n<<player_char "So like this?" "2:05pm">> \n\n<<timedreplace 2s>> \n<<friend_char "Exactly." "2:05pm">> \n<<endtimedreplace>>\n\n\n<<timedreplace 4s>> \n<<friend_char "Just to show the player they can click buttons" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 6s>> \n<<player_char "I don't want to feel like I'm just phoning it in" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 8s>> \n<<player_char "Kind of looking for more substance" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 11s>> \n<<friend_char "What if like texting" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 13s>> \n<<friend_char "but in space" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 15s>> \n<<player_char "???" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 17s>> \n<<friend_char "Like these two people text each other" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 18s>> \n<<friend_char "But one is in space" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 20s>> \n<<friend_char "And every time they go deeper into space" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 23s>> \n<<friend_char "it takes longer" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 26s>> \n<<friend_char "to recieve texts" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 30s>> \n<<friend_char "because physics" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 32s>> \n<<friend_char "and you can show off that the game supports varying delays between texts" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 35s>> \n<<choice [[Like in the anime movie Voices of a Distant Star?|DistantStar]]>>\n<<choice [[Like in the movie Interstellar?|Interstellar]]>>\n<<endtimedreplace>>\n\n\n\n\n\n<<endnobr>>\n
<<nobr>>\n\n<<612 "sure?">>\n\n<<timedreplace 2s>>\n<<78 "great!">>\n<<endtimedreplace>>\n\n<<timedreplace 4s>>\n<<30 "This data is based on some earlier stuff we were using trying to figure out sex ratios.">>\n<<endtimedreplace>>\n\n<<timedreplace 6s>>\n<<78 "We figured out (and by that I mean I convinced 30) that that wasnt really givin us a v good picture of anything??? it's kind of... shitty">>\n<<endtimedreplace>>\n\n<<timedreplace 10s>>\n<<69 "78 i didnt know you swore i feel scandalized :O">><br>\n<<endtimedreplace>>\n\n<<timedreplace 12s>>\n@@font-size: x-large;78 hushes 69@@<br><br>\n<<endtimedreplace>>\n\n<<timedreplace 14s>>\n<<30 "We ended up with a kind of a fill-in-the-blank approach to it, since different 'verses have different linguistic flair. I worked with 78 and a few others to get different wording sorted and translated, in some cases.">>\n<<endtimedreplace>>\n\n<<timedreplace 16s>>\n<<30 "In the end we had a whole heap of data that needed a whole lot of work to be legible. It still provides useful (in my opinion) data on the nature of our UNIFIED SELF.">>\n<<endtimedreplace>>\n\n<<timedreplace 18s>>\n<<78 "We are NOT dippin into ur unified self theory plz">><br>\n<<endtimedreplace>>\n\n<<timedreplace 19s>>\n<<30 "Regardless of my thoughts on the matter, you'll find in the data that in some ways we follow larger trends amongst the human population (assuming all of us are human which... we most likely can).">><br>\n<<endtimedreplace>>\n\n<<timedreplace 20s>>\n<<30 "Most of us ended up being cis, specifically cis women, at about 60%. After that, about 20% of us were cis men, and this follows the current pattern that as a whole we are less likely to be men for some reason.">><br>\n<<endtimedreplace>>\n\n<<timedreplace 21s>>\n<<30 "Our selves do however, tend to be trans more often that the general populace.">><br>\n<<endtimedreplace>>\n\n<<timedreplace 22s>>\n<<78 "In UR verse">><br>\n<<endtimedreplace>>\n\n<<timedreplace 23s>>\n<<30 "In most 'verses.">><br>\n<<endtimedreplace>>\n\n<<timedreplace 24s>>\n<<78 "We're definitely roundin here a bit, but that last twenty% are all trans in some way or another, tho the exact definitions can change depending on th facet or th timeline or w/e.">><br>\n<<endtimedreplace>>\n\n<<timedreplace 25s>>\n<<78 "More trans women (like me!) than trans men, still sort of goin with that trend of being girls that I still don't super get? Though quite a few of us fall under th non-binary umbrella too, meaning that they identify in a way that doesn't fall under man r woman, to keep things short.">><br>\n<<endtimedreplace>>\n\n<<timedreplace 26s>>\n<<30 "I'm still a big vague on the term myself but my understanding is that it's an umbrella term meant to cover a broad group of identities that don't fit under the other two categories, but there are lots and lots of different indentities within even this small percentage.">>\n<<endtimedreplace>>\n\n<<timedreplace 30s>>\n<<78 "Those are some of the basics, is that helpful at all?">><br>\n<<endtimedreplace>>\n\n<<timedreplace 35s>>\n<<choice [[uh... not really|personal]]>>\n<<endtimedreplace>>\n\n<<endnobr>>\n
<<nobr>>\n\n/%\nCHARACTER\nThis is a template for a character on the left hand side. Modify the elements below to customize the character. \n\nThe title for this passage is the name of the character macro you will call to create dialog in the story passages.\n%/\n\n\n<div class="text-object" >\n/%\nCHARACTER PORTRAIT:\nDIMENSIONS: 50x50\nChange the HTML element src below to modify character potrait.\nSet src="<filename of portrait>"\n%/\n<img class="portrait" src="78.png" > \n\n\n<div class="bubble-object" >\n\n/%\nCHANGE BUBBLE COLORS:\nAdd unique id to the div below, and then edit the corresponding colors in the stylesheet. \n%/\n<div id="seventy" class="talk-bubble round tri-right left-top">\n <div class="talktext">\n<p><<print parameter(0)>></p>\n<span class="timestamp">\n<<if parameter(1) != 0>>\n<<print parameter(1) + ",">> \n<<endif>>\n/%\nCHANGE CHARACTER NAME:\nSet the character's "full name" below if you want it to appear\n%/\n78 (she/her)\n\n</span>\n </div>\n</div>\n</div>\n</div>\n\n\n/%\nSOUND NOTIFICATION\nSet this character's sound notification. \n%/\n<audio src="smssounds/beep.ogg" autoplay></audio>\n<<endnobr>>
<<nobr>>\n\n<<player_char "So kind of like Voices of a Distant Star?" "2:05pm">> \n\n<<timedreplace 2s>> \n<<friend_char "Yeah make it anime af" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 4s>> \n<<player_char "Yo" "2:05pm">> \n<<endtimedreplace>>\n\n<<timedreplace 6s>> \n<<player_char "And then one ages faster than the other and it's like super sad" "2:06pm">> \n<<endtimedreplace>>\n\n<<timedreplace 9s>> \n<<friend_char "Suuuuuuuper sad" "2:06pm">> \n<<endtimedreplace>>\n\n<<timedreplace 11s>> \n<<player_char "And then I could like" "2:06pm">> \n<<endtimedreplace>>\n\n<<timedreplace 13s>> \n<<player_char "fudge the time stamps" "4:06am 2070">> \n<<endtimedreplace>>\n\n<<timedreplace 15s>> \n<<player_char "Because physics" "2:06pm">> \n<<endtimedreplace>>\n\n/% autojump %/\n<<timedreplace 16s>> \n<<timedgoto "ChoiceExample" 0.01s >>\n<<endtimedreplace>>\n\n<<endnobr>>\n
<<nobr>>\n\n<<612 "do you all remember that whole gender thing?">><br>\n\n<<timedreplace 2s>>\n<<115 "ya">>\n<<endtimedreplace>>\n\n<<timedreplace 5s>>\n<<78 "We DID have a poll/census thingy, I think we got like 70 % response rate for all selves?">>\n<<endtimedreplace>>\n\n<<timedreplace 8s>>\n<<420 "is 70% high?">>\n<<endtimedreplace>>\n<<timedreplace 9s>>\n<<420 "haha">>\n<<endtimedreplace>>\n\n<<timedreplace 12s>>\n<<30 "Well, I think most folks tend to ignore the polls since some people keep polling things like 'going to the store does anyone need anything' and other junk...">>\n<<endtimedreplace>>\n<<timedreplace 16s>>\n<<30 "... but yes, 70% is high.">>\n<<endtimedreplace>>\n\n<<timedreplace 18s>>\n<<69 "are you kidding we got some great response to that one">>\n<<endtimedreplace>>\n<<timedreplace 20s>>\n<<69 "jokes for DAYS funny stuff for those of us that didn't go to private school ;P">>\n<<endtimedreplace>>\n\n<<timedreplace 23s>>\n<<30 "Oh my GOD we’ve been over this, it was only for 2 years! I was homeschooled after that!">>\n<<endtimedreplace>>\n\n<<timedreplace 25s>>\n<<115 "lol">>\n<<endtimedreplace>>\n\n<<timedreplace 26s>>\n<<69 "30 you make this way too easy it's barely even fun to goof on you :(">>\n<<endtimedreplace>>\n\n<<timedreplace 28s>>\n<<78 "yall?">>\n<<endtimedreplace>>\n\n<<timedreplace 29s>>\n<<30 "...">>\n<<endtimedreplace>>\n\n<<timedreplace 32s>> \n<<timedgoto "question" 0.01s >>\n<<endtimedreplace>>\n\n<<endnobr>>
<<nobr>>\n<<612 "til next time">>\n\n<<timedreplace 3s>>\n<br>@@font-size: x-large;{{{////////////////////}}}@@\n<<endtimedreplace>>\n\n<<timedreplace 4s>>\n<br>@@font-size: x-large;{{{////////////////////}}}@@\n<<endtimedreplace>>\n\n<<timedreplace 5s>>\n<br>@@font-size: x-large;{{{////////////////////}}}@@\n<<endtimedreplace>>\n\n<<timedreplace 6s>>\n<br>@@font-size: x-large;WINDOW CLOSED@@\n<<endtimedreplace>>\n\n<<endnobr>>
<<nobr>>\n\n/%\nCHARACTER\nThis is a template for a character on the left hand side. Modify the elements below to customize the character. \n\nThe title for this passage is the name of the character macro you will call to create dialog in the story passages.\n%/\n\n\n<div class="text-object" >\n/%\nCHARACTER PORTRAIT:\nDIMENSIONS: 50x50\nChange the HTML element src below to modify character potrait.\nSet src="<filename of portrait>"\n%/\n<img class="portrait" src="30.png" > \n\n\n<div class="bubble-object" >\n\n/%\nCHANGE BUBBLE COLORS:\nAdd unique id to the div below, and then edit the corresponding colors in the stylesheet. \n%/\n<div id="thirty" class="talk-bubble round tri-right left-top">\n <div class="talktext">\n<p><<print parameter(0)>></p>\n<span class="timestamp">\n<<if parameter(1) != 0>>\n<<print parameter(1) + ",">> \n<<endif>>\n/%\nCHANGE CHARACTER NAME:\nSet the character's "full name" below if you want it to appear\n%/\n30 (he/him)\n\n</span>\n </div>\n</div>\n</div>\n</div>\n\n\n/%\nSOUND NOTIFICATION\nSet this character's sound notification. \n%/\n<audio src="smssounds/beep.ogg" autoplay></audio>\n<<endnobr>>
/* INSERT CUSTOM COLORS FOR BUBBLES BELOW */\n\n#thirty{\nbackground-color: red; /* BUBBLE */\n}\n#thirty::after{\n border-color: red transparent transparent transparent; /* BUBBLE TRIANGLE */\n}\n\n#seventy{\nbackground-color: purple; /* BUBBLE */\n}\n#seventy::after{\n border-color: purple transparent transparent transparent; /* BUBBLE TRIANGLE */\n}\n\n#hundred{\nbackground-color: orange; /* BUBBLE */\n}\n#hundred::after{\n border-color: orange transparent transparent transparent; /* BUBBLE TRIANGLE */\n}\n\n#fivehundred{\nbackground-color: violet; /* BUBBLE */\n}\n#fivehundred::after{\n border-color: violet transparent transparent transparent; /* BUBBLE TRIANGLE */\n}\n\n#sexnumber{\nbackground-color: brown; /* BUBBLE */\n}\n#sexnumber::after{\n border-color: brown transparent transparent transparent; /* BUBBLE TRIANGLE */\n}\n\n#weednumber{\nbackground-color: orangered; /* BUBBLE */\n}\n#weednumber::after{\n border-color: orangered transparent transparent transparent; /* BUBBLE TRIANGLE */\n}\n\n/* Your story will use the CSS in this passage to style the page.\nGive this passage more tags, and it will only affect passages with those tags.\nExample selectors: */\n\ndiv .title {\nvisibility: hidden;\nheight: 0px;\n}\n\nh1{\n\tbox-sizing: border-box;\n\tborder: 5px white solid;\n position: absolute;\n\tmargin-top: 0px;\n top: 0px;\n\tright: 0px;\n padding-top: 20px;\n padding-bottom: 20px;\n width: 100%;\n background-color: #000000;\n\tcolor: white;\n\tz-index: 1;\n}\n@media (max-width: 414px){\nh1 {\n\tborder: 0;\n position: fixed;\n width: 100%;\n margin: 0px;\n top: 0px;\n}\n}\n\n\nh2{\nvisibilty: hidden;\n}\nh3{\nvisibilty: hidden;\n}\n\n\nbody {\n\t/* This affects the entire page */\n position: relative;\n width: 477px;\n\tleft: 37%;\n background-color: #000000;\n\tfont-family:DisposableDroidBB;\n}\n\n@media (max-width: 414px){\nbody {\nleft: 0px;\n width: 100%;\n}\n}\n\n\n/* no idea why its content2 lol */\n#content1 {\n/*min-height: 1136px;*/\n\tbox-sizing: content-box;\n background-color: #cccccc;\n border: 10px #ffffff solid;\n\theight: 720px;\n overflow: auto;\n overflow-x: hidden;\n\tmargin: 0px;\n\tmargin-top: 10%;\n}\n\n@media (max-width: 414px){\n#content1 {\nborder: 0;\nheight: 100%;\nwidth: 100%;\nmargin: 0px;\noverflow-y: auto;\n}\n}\n\n\n\n#content2 {\n\nheight: 720px;\npadding-top: 0px;\npadding-bottom: 0px;\ndisplay: table-cell;\nvertical-align: bottom;\n\n}\n@media (max-width: 414px){\n#content2{\nheight: 100%\n}\n}\n\n\n\n#passages{\npadding-bottom: 0px;\npadding-top: 150px;\nbackground: none;\n\n}\n\n.passage {\nwidth: 700px\nmargin: 0px;\nfont-family:DisposableDroidBB;\nfont-style: italic;\n/*text-align: center;*/\nbackground: none;\n\n\t/* This only affects passages */\n\t\n\t\n}\n\n.passage:not(:last-child):not(:hover) {\n opacity: 1;\n /* transition: 0.5s;*/\n /* -webkit-transition: 0.5s; */\n}\n.passage a {\n\t/* This affects passage links */\n\tcolor: green;\n\n}\n\n\t\n}\n\n.talk-bubble.player.decision{\nwidth: 400px;\n}\n\n.choice {\n /*font-size: 2em;*/\n padding: 10px;\n text-align: left;\n line-height: 1.2em;\n width: 300px;\n /*border: 5px #000000 solid;\n border-radius: 25px;*/\n background-color: #000000;\n margin-bottom: 10px;\n left: 40px;\n position: relative;\n top: 10px;\n\tdisplay: block;\n\tfont-size: 2em;\nfont-style: normal;\n\n\n\n\nanimation-duration: 0.20s; animation-name: slidein_choice;}\n@keyframes slidein_choice\n{ \nfrom \n{ opacity: 0; top: 25px; } to \n{ opacity: 1; top: 10px; }\n}\n\n@media (max-width: 375px){\n.choice {\nz-index: 1;\nwidth: 200px;\n\n}\n}\n\n\n\n.disabled{\ndisplay: none;\n}\n\n.content a {\nfont-weight: normal;\ntext-decoration: underline;\n}\n.passage a:hover {\n\t/* This affects links while the cursor is over them */\n\tcolor: white;\n\t}\n\n.pos-right{\n float:right;\n}\n\n.pos-left{\n position: fixed;\n left: 50px;\n}\n\n\n/* General CSS Setup */\n\n/* portraits */\n\nimg.portrait {\n width: 50px;\n height: 50px;\n display: block;\n position: relative;\n float: left;\n /*left: -20;\n top: -40px;*/\n bottom: 25px;\n margin: 0;\n display: inline-block;\n padding: 0;\n}\n\nimg.player-portrait {\n width: 50px;\n height: 50px;\n display: block;\n position: relative;\n float: right;\n right: 10px;\n bottom: 20px;\n margin: 0;\n display: inline-block;\n padding: 0;\n}\n\n.text-object{\ndisplay: block;\nwidth: 425px;\nposition: relative;\nmargin-bottom: 0;\n/*margin-top: -100px;*/\n\nanimation-duration: 0.50s; animation-name: slidein;}\n@keyframes slidein \n{ \nfrom \n{ opacity: 0; top: 25px; } to \n{ opacity: 1; top: 0px; }\n}\n\n@media (max-width: 375px){\n.text-object {\n\ttext-align: left;\n width: 320px;\n}\n}\n\n\n.text-object.player\n{\ntext-align: right;\n}\n\n@media (max-width: 375px){\n.text-object.player {\n\nwidth: 320px;\n}\n}\n\n\n\n.bubble-object{\ndisplay: inline-block;\n/*float: left; */\nposition: relative;\nleft: 25px;\n/*bottom: 20px;\nleft: 10px;*/\n}\n\n\n\n@media (max-width: 375px){\n.bubble-object {\n\nwidth: 200px;\n}\n}\n\n\n.bubble-object.player{\nleft: -25px;\n/*display: inline-block;\nfloat: right;\nposition: relative;\nbottom: 20px;\nright: 10px; trying to fix style today */\n}\n\n.talk-bubble.player > .talktext > p{\npadding-right: 1em\n}\n\n.timestamp{\n padding: 1em;\n font-size: 0.8em;\n opacity: 0.75;\n display: block;\n margin-bottom: -55px;\n}\n\ndiv.player > .talktext > span.timestamp{\n\n /*font-weight: bold;*/\n opacity: 0.70\n}\n\n/* container */\n.container {\n padding: 5% 5%;\n}\n\n/* CSS talk bubble */\n.talk-bubble {\n display: inline-block;\n position: relative;\n\tmin-width: 150px;\n\theight: auto;\n\tbackground-color: green;\npadding: 0;\ncolor: white;\nfont-size: 2em;\nfont-style: normal;\n}\n\n.talk-bubble.player {\nbackground-color: black;\n/*color: black;*/\n}\n@media (max-width: 375px){\n.talk-bubble.player {\n\nwidth: 200px;\n\n\n}\n}\n\n/*.border{\n border: 8px solid #666;\n}\n.round{\n border-radius: 30px;\n\t-webkit-border-radius: 30px;\n\t-moz-border-radius: 30px;\n\n}*/\n\n\n\n/* Right triangle placed top left flush. */\n.tri-right.border.left-top:before {\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: -40px;\n\tright: auto;\n top: -8px;\n\tbottom: auto;\n\tborder: 32px solid;\n\tborder-color: orange transparent transparent transparent;\n}\n.tri-right.left-top:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: -15px;\n\tright: auto;\n top: 0px;\n\tbottom: auto;\n\tborder: 22px solid;\n\tborder-color: orange transparent transparent transparent;\n}\n\n.tri-right.left-in:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: -20px;\n\tright: auto;\n top: 38px;\n\tbottom: auto;\n\tborder: 12px solid;\n\tborder-color: lightyellow lightyellow transparent transparent;\n}\n\n.tri-right.btm-left:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n\tleft: 0px;\n right: auto;\n top: auto;\n\tbottom: -20px;\n\tborder: 22px solid;\n\tborder-color: transparent transparent transparent lightyellow;\n}\n\n.tri-right.btm-left-in:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n\tleft: 38px;\n right: auto;\n top: auto;\n\tbottom: -20px;\n\tborder: 12px solid;\n\tborder-color: lightyellow transparent transparent lightyellow;\n}\n.tri-right.btm-right-in:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: 38px;\n\tbottom: -20px;\n\tborder: 12px solid;\n\tborder-color: lightyellow lightyellow transparent transparent;\n}\n/*\n\tleft: -8px;\n right: auto;\n top: auto;\n\tbottom: -40px;\n\tborder: 32px solid;\n\tborder-color: transparent transparent transparent #666;\n\tleft: 0px;\n right: auto;\n top: auto;\n\tbottom: -20px;\n\tborder: 22px solid;\n\tborder-color: transparent transparent transparent lightyellow;\n\n/*Right triangle, placed bottom right side slightly in*/\n.tri-right.btm-right:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: 0px;\n\tbottom: -20px;\n\tborder: 12px solid;\n\tborder-color: lightyellow lightyellow transparent transparent;\n}\n\n/* Right triangle, right side slightly down*/\n.tri-right.right-in:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: -20px;\n top: 38px;\n\tbottom: auto;\n\tborder: 12px solid;\n\tborder-color: lightyellow transparent transparent lightyellow;\n}\n\n/* Right triangle placed top right flush. */\n.tri-right.border.right-top:before {\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: -40px;\n top: -8px;\n\tbottom: auto;\n\tborder: 32px solid;\n\tborder-color: #white transparent transparent transparent;\n}\n\n/*PLAYER TRIANGLE */\n.tri-right.right-top:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: -13px;\n top: 0px;\n\tbottom: auto;\n\tborder: 25px solid;\n\tborder-color: black transparent transparent transparent;\n}\n\n/* talk bubble contents */\n.talktext{\n\tpadding: 0.5em;\n\ttext-align: left;\n\tline-height: 1em;\n\tmargin-top: -0.4em;\n\tmargin-bottom: -1em;\n}\n.talktext p{\n /* remove webkit p margins */\n -webkit-margin-before: -1.8em;\n -webkit-margin-after: -1.8em;\n margin-left: 15px;\n word-wrap: break-word;\n max-width: 250px\n\n}\n\n\n#floater{\nvisibility: hidden;\n}\n.toolbar {\nvisibility: hidden;\n}\n\n.passage:hover .toolbar {\n\tvisibility: hidden;\n}\n#footer{\nvisibility: hidden;\nposition: absolute;\nbottom: 0px;\n\n}
<<nobr>>\n<<612 "i was looking for some perspective from all of you? me? us?">><br>\n\n<<timedreplace 3s>> \n<<115 "us">> \n<<endtimedreplace>>\n\n<<timedreplace 6s>> \n<<420 "i'm SURE we've all got plenty of experiences we can share">>\n<<endtimedreplace>>\n\n<<timedreplace 8s>> \n<<69 "wed be happy to help :)">>\n<<endtimedreplace>>\n\n<<timedreplace 11s>> \n<<30 "Well, why didn’t you say so?">>\n<<endtimedreplace>>\n\n<<timedreplace 13s>> \n<<78 "Yeah, ur welcome to ask anything!">>\n<<endtimedreplace>>\n\n<<timedreplace 15s>> \n<<594 "What d'ya want to know?">>\n<<endtimedreplace>>\n\n<<timedreplace 18s>> \n<<choice [[when did you know what your gender was?|when]]>>\n<<choice [[how did you know for sure?|how]]>>\n<<choice [[what does gender feel like to you?|what]]>>\n<<endtimedreplace>>\n\n<<endnobr>>
font[face="DisposableDroidBB"] {\n font-family: "DisposableDroidBB";\n}\n@font-face {\n font-family: "DisposableDroidBB";\n\n src: url(data:application/x-font-ttf;base64,AAEAAAATAQAABAAwR1BPU9U27xQAAHN4AAAB2kdTVULam91lAAB1VAAAAGZMVFNI6wcg4AAAA8AAAABuT1MvMoSLIR4AAAG4AAAAYFZETVheJWXQAAAEMAAABeBjbWFwP2Qg8wAAE8wAAALeY3Z0IAHyBFAAABi4AAAAHmZwZ20GWZw3AAAWrAAAAXNnbHlmH1yVagAAGNgAAFCEaGRtePhQ/doAAAoQAAAJvGhlYWTuMIQCAAABPAAAADZoaGVhBhEC9AAAAXQAAAAkaG10eLucGqcAAAIYAAABqGtlcm4CcgG/AABqNAAAAhZsb2NhXH5HjAAAaVwAAADWbWF4cAJ6AigAAAGYAAAAIG5hbWVTfZF6AABsTAAABjBwb3N0gt9/YQAAcnwAAAD7cHJlcB/ZyIwAABggAAAAlgABAAAAAQAAnV6Ju18PPPUAGQPoAAAAAMXmA8gAAAAAxfw9nAAE/0wDHQJsAAAACQACAAAAAAAAAAEAAALu/wYAAANpAAQAGgMdAAEAAAAAAAAAAAAAAAAAAABqAAEAAABqADgABQAAAAAAAQAAAAAACgAAAgAB7wAAAAAAAwGzAZAABQAEArwCigAAAIwCvAKKAAAB3QAyAPoAAAIABQYAAAACAASAAAADAAAACgAAAAAAAAAAcHlycwBAACAhIgLu/wYAAAJsALQAAAABAAAAAAFkAhQAAAAgAAMBYQAAAdgAOwHdAD0B2ABBAfoAUwHGAEcB3QA7AekASADpAEgB7gBMAd0AOwHjAEQBwQBAAjgAQgHjAEQB3QA+AcwAOwHjAD8B6QBHAd0AOQGZABsB3gA/Ad0APgIyADwB6QBHAdIAPAHHADUBIgA7AdIANgHjAEEBxgAnAd4APgHRAD8BvABBAdcAPAHYADsB7gBKAeMARAHeAD4B9ABOAeIASAHSAFEB4wBAAe8AUAD6AFMA9AAEAe8ASQD0AFECSQBFAekAQwHdAEAB6QBOAegASwHNAEMB4wBEAY4ARgHdAD0B3QBBAkQARwHuAD4B7gBMAeMARAD6AFkAzQA7Ad0ARQHjAEMA6QBIAeMAQAHjAEcB3gBCAhYAOwGIAD8DQQA8A0EAQwNpAFICLAA9Ac0ANwILADYCIgBGAwoAMgGfAE0CIQBJAY4ASAGkADIBwQBUAe4ASwEQAD8BJwBGARYAQAEcAEIBLgBLAS0ATAHfAD4A3AA/AZAAPwGRAD8A3wA/AOEAPwKuAD0C7gBZAQAAMwJCAD8BYQAAAPUARgDwAEYB3QA9AAAAagE3M0wBATM7AQE3RAFMOytMNzszAUw7Ozs3TAEvAUwrNyZMTEQrASIvTDczAQFEAURMN0w7TEw7NzsrATMBAQFEAQEBAQE7TDNMTAFEOzdML0RMLwEBATczTEQ7KwEzMwEBO0xMAQEBATMAAAAAAAEAAQEBAQEADAD4CP8ACAAF//4ACQAG//4ACgAH//4ACwAH//4ADAAI//0ADQAJ//0ADgAJ//0ADwAK//0AEAAK//0AEQAL//wAEgAM//wAEwAM//wAFAAN//wAFQAO//wAFgAO//wAFwAP//sAGAAP//sAGQAQ//sAGgAR//sAGwAR//sAHAAS//oAHQAS//oAHgAT//oAHwAU//oAIAAU//oAIQAV//oAIgAW//kAIwAW//kAJAAX//kAJQAX//kAJgAY//kAJwAZ//gAKAAZ//gAKQAa//gAKgAb//gAKwAb//gALAAc//gALQAc//cALgAd//cALwAe//cAMAAe//cAMQAf//cAMgAf//cAMwAg//YANAAh//YANQAh//YANgAi//YANwAj//YAOAAj//UAOQAk//UAOgAk//UAOwAl//UAPAAm//UAPQAm//UAPgAn//QAPwAo//QAQAAo//QAQQAp//QAQgAp//QAQwAq//MARAAr//MARQAr//MARgAs//MARwAt//MASAAt//MASQAu//IASgAu//IASwAv//IATAAw//IATQAw//IATgAx//EATwAx//EAUAAy//EAUQAz//EAUgAz//EAUwA0//EAVAA1//AAVQA1//AAVgA2//AAVwA2//AAWAA3//AAWQA4/+8AWgA4/+8AWwA5/+8AXAA6/+8AXQA6/+8AXgA7/+8AXwA7/+4AYAA8/+4AYQA9/+4AYgA9/+4AYwA+/+4AZAA+/+4AZQA//+0AZgBA/+0AZwBA/+0AaABB/+0AaQBC/+0AagBC/+wAawBD/+wAbABD/+wAbQBE/+wAbgBF/+wAbwBF/+wAcABG/+sAcQBH/+sAcgBH/+sAcwBI/+sAdABI/+sAdQBJ/+oAdgBK/+oAdwBK/+oAeABL/+oAeQBM/+oAegBM/+oAewBN/+kAfABN/+kAfQBO/+kAfgBP/+kAfwBP/+kAgABQ/+gAgQBQ/+gAggBR/+gAgwBS/+gAhABS/+gAhQBT/+gAhgBU/+cAhwBU/+cAiABV/+cAiQBV/+cAigBW/+cAiwBX/+YAjABX/+YAjQBY/+YAjgBZ/+YAjwBZ/+YAkABa/+YAkQBa/+UAkgBb/+UAkwBc/+UAlABc/+UAlQBd/+UAlgBd/+UAlwBe/+QAmABf/+QAmQBf/+QAmgBg/+QAmwBh/+QAnABh/+MAnQBi/+MAngBi/+MAnwBj/+MAoABk/+MAoQBk/+MAogBl/+IAowBm/+IApABm/+IApQBn/+IApgBn/+IApwBo/+EAqABp/+EAqQBp/+EAqgBq/+EAqwBr/+EArABr/+EArQBs/+AArgBs/+AArwBt/+AAsABu/+AAsQBu/+AAsgBv/98AswBv/98AtABw/98AtQBx/98AtgBx/98AtwBy/98AuABz/94AuQBz/94AugB0/94AuwB0/94AvAB1/94AvQB2/90AvgB2/90AvwB3/90AwAB4/90AwQB4/90AwgB5/90AwwB5/9wAxAB6/9wAxQB7/9wAxgB7/9wAxwB8/9wAyAB8/9wAyQB9/9sAygB+/9sAywB+/9sAzAB//9sAzQCA/9sAzgCA/9oAzwCB/9oA0ACB/9oA0QCC/9oA0gCD/9oA0wCD/9oA1ACE/9kA1QCF/9kA1gCF/9kA1wCG/9kA2ACG/9kA2QCH/9gA2gCI/9gA2wCI/9gA3ACJ/9gA3QCK/9gA3gCK/9gA3wCL/9cA4ACL/9cA4QCM/9cA4gCN/9cA4wCN/9cA5ACO/9YA5QCO/9YA5gCP/9YA5wCQ/9YA6ACQ/9YA6QCR/9YA6gCS/9UA6wCS/9UA7ACT/9UA7QCT/9UA7gCU/9UA7wCV/9QA8ACV/9QA8QCW/9QA8gCX/9QA8wCX/9QA9ACY/9QA9QCY/9MA9gCZ/9MA9wCa/9MA+ACa/9MA+QCb/9MA+gCb/9MA+wCc/9IA/ACd/9IA/QCd/9IA/gCe/9IA/wCf/9IAAAAXAAAAbAkIAwUFBQUEBQUCBAUFBAYGBQUFBQUEBQUGBQUFAwUEBQUFBAQFBAUEBQUFBQUCAgUCBgUEBQUFBQUFBQYEBQQCAgUEAgQEBAUECAgIBQUGBggEBgQEBAQCAwMEBAQFAgQEAgIHBwMFAwICBQoJBAUFBQUFBQUCBQUFBAYGBQUFBgUEBQUGBQUFAwUFBQUFBQYFBgUFBQUFBQUDAgYCBgUGBQUFBQUFBgYFBQUDAgUFAgUFBQYECQkJBgUGBggEBgQFBAUDBAQEBAQFAgQEAgIHBwMGBAICBQsKBAYGBgYFBgYDBQYGBQYGBgYGBgYFBgYGBgYFAwYFBQYGBQYGBgYFBgYGBgYDAwYDBwYGBgYGBgUGBgcFBgUDAgYFAwUFBQYFCgoKBgYHBwkFBwUFBQUDBAQEBAQGAgUFAgIICQQGBAMDBgwLBAYGBgYFBgYDBgYGBQcGBgYGBgYFBgYHBgYGAwYGBgYGBQYGBgYGBgYGBgYDAwYDBwYGBgYGBgUGBgcGBgYDAgYGAwYGBgcFCgoLBwYHBwoFBwUFBQYDBAQEBAQGAwUFAwMJCQQHBAMDBg0LBQYGBgcGBgYDBgYGBgcIBgYGBwYFBgYHBgYGBAYGBgYGBgcGBwYGBgYHBgcDAwYDCAYHBgYGBgYGBwgGBwYDAwcGAwYGBgcFCwsLBwYHBwoFBwUGBgYEBAQEBAQGAwUFAwMJCQQIBQMDBg8NBQcHBwgHBwcEBwcHBwkIBwcHBwcGBwcJBwcGBAcHBwcHBgcHBwcHBwcHBwcEBAcECQcHBwcHBwYHBwkHBwcEAwcHBAcHBwgGDA0NCAcICAwGCAYGBwcEBQQEBAQHAwYGAwMKCwQJBQQEBxAOBgcHBwgHBwcECAcHBwkIBwcHBwcHBwcJCAcIBQcIBwcHBwcHBwcIBwgIBwgEBAcECQcHCAcHBwYHCAkICAgEAwcIBAgICAgGDQ4OCQcICQwGCQYHBwgEBQQEBAQHBAYGBAQLCwQJBgQEBxEOBggICAkICAgECAgICAkJCAgICAgHCAgJCAgIBQgIBwgIBwcIBwgICAgICAgEBAgECggHCAgICAYHCAoICAgEAwgIBAgICAkGDg4OCQgJCQ0GCQYHCAgFBQQEBQUIBAYGBAQMDAQKBgQECBMQBwkJCQoJCQkECQkKCQoKCQkJCgkICQkKCQkJBgkJCQkJCAkJCQkJCQkJCQoFBQoFCwkJCgkJCQgJCQsJCQkFBAoJBAkJCQoIEBAQCwkLCg8ICwcICQkFBgYGBgYJBAgIBAQNDQULBwUFCRUTBwoKCgsKCgoFCgoKCQoKCgoKCwoJCgoKCgoJBgoKCQoKCgoKCQoKCgoK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ChC4AAjQuAAIL7kAAQAE9LgAAxC5AAQABPS4AAMQuAAG0LgABBC4AAvcALgAAEVYuAAALxu5AAAADT5ZuAAARVi4AAMvG7kAAwANPlm4AABFWLgAAS8buQABAAs+WbgAAEVYuAAFLxu5AAUABz5ZuAABELkABwAB9DAxExUzNTMRIxEhEYGvWlr+9wIUsrL97AEIAQwAAAAAAQA+//4BngISABMAp7sABwAFAAQABCu7ABMABQAIAAQrugACAAQABxESObgAAi+5AAEABvS4AAQQuAAK0LgAExC4AAzQuAAHELgADtC4ABMQuAAV3AC4AABFWLgACy8buQALAA0+WbgAAEVYuAABLxu5AAEABz5ZuwAGAAEAAwAEK7sAEAABAAkABCu4AAMQuAAA0LgAARC5AAcAAfS4AAsQuQANAAH0uAAAELkAEQAD9DAxJRUjNSM1MxUzNSETIRUhFTMVMxUBUsxIVbb+9QEBX/71x0RAQkJwWLEBCVhaQd8AAgA///4BngISAA8AEwCluwAQAAUACAAEK7sAAwAFABEABCu6AAoACAAQERI5uAAKL7kADQAG9LgAANC4AA0QuAAE0LgAChC4AAbQuAAGL7gAEBC4AA7QuAADELgAFdwAuAAARVi4AAsvG7kACwANPlm4AABFWLgABS8buQAFAAc+WbsAAgADAAMABCu7AAAAAQASAAQruAADELgAB9C4AAsQuQANAAH0uAAFELkAEAAB9DAxARUzFSMVIzUjETM1MxUjFREzNSMBVEpKy0pMycC1tQFgQt9BQQGRQlpY/viuAAAAAQBB//8BogITABcAzbsAAAAEAAEABCu7ABQABQAFAAQruwAQAAUACQAEK7oAAwABAAAREjm4AAMvugAHAAUAFBESObgABy+4AAEQuAAL0LgABxC5ABIABfS4AAMQuQAWAAX0uAAQELgAGdwAuAAARVi4AAwvG7kADAANPlm4AABFWLgAAC8buQAAAAc+WbkABAAC9LgAFNC4ABQvuAAF0LgABS+4AAwQuQAIAAL0uAAMELkACgAB9LgADtC4AA/QuAAIELgAENC4ABHQuAAUELgAFdC4ABUvMDEXIzUzNTM1MzUzNSM1IRUjFSMVIxUjFSOYVyo+OjzeAWEuPDo+KAFhWVdQWVpaX1JWWQAAAAADADz//gGbAhIAEwAXABsBGbgA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uQAFAAb0uAAA0AC7AAQAAQAFAAQruwAAAAEAAQAEKzAxExUjETMVIxHfRkagAmxX/e1XAsEAAAAAAQBG/6sA5gJsAAcAO7sABwAGAAAABCu4AAcQuQACAAT0uAAAELgABNC4AAcQuAAJ3AC7AAEAAQAAAAQruwAFAAEABAAEKzAxFzUzESM1MxFGRkagVVcCE1f9PwABAED/qwDgAmwACwBJuwAFAAQACgAEK7oAAAAKAAUREjm4AAAvuQADAAT0uAAG0LgAABC4AAjQuAADELgADdwAuwAGAAEABwAEK7sAAgABAAMABCswMRM1MxUjETMVIzUjEYZaRkZaRgIhS1f97VdKAiwAAAEAQv+rAOICbAALAE27AAEABAACAAQrugAEAAIAARESObgABC+4AAIQuAAG0LgAARC4AAjQuAAEELkACwAE9LgADdwAuwAEAAEAAQAEK7sACAABAAUABCswMRcVIzUzESM1MxUzEZxaR0daRglMVwITV0r91QAAAAEAS/+rAOsCbAATAIm7AAkABAACAAQrugAEAAIACRESObgABC+4AADQuAAAL7gABBC5AAoABPS4AAbQuAAGL7gACRC4AAzQuAAKELgADtC4AA4vuAAEELgAENC4AAIQuAAS0LgAChC4ABXcALsADgABAA8ABCu7AAAAAwARAAQruwAGAAEABwAEK7sACgACAAsABCswMTc1IzUzNTMVIxUzFSMVMxUjNSM1kEVGWkZFRUZaRsOF1k5XuaqwV0rOAAEATP+rAOwCbAATAJ67AAQABAAKAAQruAAEELgAANC4AAAvugAIAAoABBESObgACC+5AAMABPS4AAoQuAAG0LgABi+4AAgQuAAM0LgAChC4AA7QuAAOL7gABBC4ABDQuAADELgAEtC4AAMQuAAV3AC4AABFWLgACy8buQALAAs+WbsACAABAAUABCu7ABAAAQANAAQruwARAAMAAAAEK7gACxC5AAkAAvQwMRMVMxUjFSM1MzUjNTM1IzUzFTMVp0VGWkZFRUZaRgFVhtZOV7qpsFdKzQAAAAIAPgAAAaACFAALAA8AdbsADgAEAAgABCu7AAIABAAMAAQrugAGAAgADhESObgABi+5AAUABvS4AADQuAAGELgACtC4AAIQuAAR3AC4AABFWLgAAC8buQAAAA0+WbgAAEVYuAAFLxu5AAUA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);\n}
<<nobr>>\n\n<<cleartexthistory>>\n\n<<timedreplace 2s>> \n<<friend_char "Thanks for reading! This thank you also doubles as a way to show off that you can clear text history now!" "2:08pm">> \n<<endtimedreplace>>\n\n<<endnobr>>\n
try {\n version.extensions['cleartexthistory'] = { \n major:1, minor:0, revision:0 \n };\n macros['cleartexthistory'] = {\n handler: function(place, macroName, params, parser) {\n $(".text-object").css("display", "none");\n },\n init: function() { },\n };\n} catch(e) {\n throwError(place,"macrodemo Setup Error: "+e.message); \n}
/* INSERT CUSTOM COLORS FOR BUBBLES BELOW */\n\n#SharkChar{\nbackground-color: red; /* BUBBLE */\n}\n#SharkChar::after{\n border-color: red transparent transparent transparent; /* BUBBLE TRIANGLE */\n}\n\n/* Your story will use the CSS in this passage to style the page.\nGive this passage more tags, and it will only affect passages with those tags.\nExample selectors: */\n\ndiv .title {\nvisibility: hidden;\nheight: 0px;\n}\n\nh1{\n position: absolute;\n top: 0px;\n padding-top: 30px;\n width: 438px;\n z-index: 2;\n padding-bottom: 30px;\n background-color: #f8f8f8;\n}\n@media (max-width: 375px){\nh1 {\n\n position: fixed;\n width: 100%;\n z-index: 1;\n margin: 0px;\n top: 0px;\n}\n}\n@media (max-width: 414px){\nh1 {\n\n position: fixed;\n width: 100%;\n z-index: 2;\n margin: 0px;\n top: 0px;\n}\n}\n\n\n\nh2{\nposition: absolute;\ntop: 80px;\nwidth: 438px;\nz-index: 2;\nbackground-color: #f8f8f8;\n}\n@media (max-width: 375px){\nh2 {\n position: fixed;\n width: 100%;\n z-index: 2;\n top: 70px;\n}\n}\n@media (max-width: 414px){\nh2 {\n position: fixed;\n width: 100%;\n z-index: 2;\n top: 70px;\n}\n}\n\n\nh3{\nposition: absolute;\ntop: 130px;\nwidth: 438px;\nmargin: 0px;\npadding-bottom:20px;\nborder-bottom: 1px solid;\nmargin-bottom: 20px;\nz-index: 2;\nbackground-color: #f8f8f8;\n\n}\n@media (max-width: 375px){\nh3 {\n position: fixed;\n width: 100%;\n z-index: 2;\n top: 80px;\n background-color: #f8f8f8;\n border-bottom: 1px solid;\n}\n}\n@media (max-width: 414px){\nh3 {\n position: fixed;\n width: 100%;\n z-index: 2;\n top: 80px;\n background-color: #f8f8f8;\n border-bottom: 1px solid;\n}\n}\n\n.toolbar {\nvisibility: hidden;\n}\n\n.passage:hover .toolbar {\n\tvisibility: hidden;\n}\n\nbody {\n\t/* This affects the entire page */\n position: relative;\n\n width: 477px;\n\nleft: 37%;\n\n background-color: #f8f8f8;\n font-family: 'Roboto', sans-serif;"\n\n\n\n}\n\n@media (max-width: 414px){\nbody {\nleft: 0px;\n width: 100%;\n\n}\n\n\n}\n\n\n/* no idea why its content2 lol */\n#content1 {\n\nbackground-color: #f8f8f8;\nborder: 1px solid;\n/*min-height: 1136px;*/\n background-color: #f8f8f8;\n border: 1px solid;\n border-radius: 25px;\n border-left-width: 20px;\n border-right-width: 20px;\n border-top-width: 45px;\n border-bottom-width: 55px;\nheight: 720px;\n overflow: scroll;\n overflow-x: hidden;\nmargin: 0px;\nmargin-top: 5%;\n\n\n}\n\n\n@media (max-width: 375px){\n#content1 {\n\nborder: 0px;\nborder-radius: 0px;\nheight: 100%;\nwidth: 100%;\nmargin: 0px;\noverflow-y: hidden;\n\n\n}\n}\n@media (max-width: 414px){\n#content1 {\n\nborder: 0px;\nborder-radius: 0px;\nheight: 100%;\nwidth: 100%;\nmargin: 0px;\noverflow-y: hidden;\n\n\n}\n}\n\n#content2 {\n\n\nheight: 720px;\npadding-bottom: 0px;\ndisplay: table-cell;\nvertical-align: bottom;\n\n}\n@media (max-width: 375px){\n#content2{\nheight: 100%\n}\n}\n\n\n\n#passages{\npadding-bottom: 0px;\npadding-top: 150px;\n\n}\n\n.passage {\nwidth: 640px\nbackground: none;\nmargin: 0px;\n\n\t/* This only affects passages */\n\t\n\t\n}\n\n.passage:not(:last-child):not(:hover) {\n opacity: 1;\n /* transition: 0.5s;*/\n /* -webkit-transition: 0.5s; */\n}\n.passage a {\n\t/* This affects passage links */\n\tcolor:white;\n\n}\n\n\t\n}\n\n.talk-bubble.player.decision{\nwidth: 400px;\n}\n\n.choice {\n font-size: 1.4em;\n padding: 10px;\n text-align: left;\n line-height: 1.2em;\n width: 300px;\n border: 5px #1ca0d5 solid;\n border-radius: 25px;\n background-color: #1ca0d5;\n margin-bottom: 10px;\n left: 40px;\n position: relative;\n top: 10px;\ndisplay: block;\n\n\n\nanimation-duration: 0.20s; animation-name: slidein_choice;}\n@keyframes slidein_choice\n{ \nfrom \n{ opacity: 0; top: 25px; } to \n{ opacity: 1; top: 10px; }\n}\n\n@media (max-width: 375px){\n.choice {\nz-index: 1;\nwidth: 200px;\n\n}\n}\n\n\n\n.disabled{\ndisplay: none;\n}\n\n.content a {\nfont-weight: normal;\ntext-decoration: underline;\n}\n.passage a:hover {\n\t/* This affects links while the cursor is over them */\n\tcolor: white;\n\t}\n\n.pos-right{\n float:right;\n}\n\n.pos-left{\n position: fixed;\n left: 50px;\n}\n\n\n/* General CSS Setup */\nbody{\n\n}\n\n\n\n/* portraits */\n\nimg.portrait {\n width: 50px;\n height: 50px;\n display: block;\n position: relative;\n float: left;\n /*left: -20;\n top: -40px;*/\n bottom: 25px;\n margin: 0;\n display: inline-block;\n padding: 0;\n}\n\nimg.player-portrait {\n width: 50px;\n height: 50px;\n display: block;\n position: relative;\n float: right;\n right: 10px;\n bottom: 20px;\n margin: 0;\n display: inline-block;\n padding: 0;\n}\n\n#char2b{\n background-image: url("smsportraits/2b.png");\n width: 50px;\n height: 50px;\n display: block;\n position: relative;\n float: left;\n /*left: -20;\n top: -40px;*/\n bottom: 25px;\n margin: 0;\n display: inline-block;\n padding: 0;\n}\n\n.text-object{\ndisplay: block;\nwidth: 425px;\nposition: relative;\n/*margin-bottom: 60px;*/\n/*margin-top: -100px;*/\n\n\n/*animation-duration: 3s; animation-name: slidein;}\n@keyframes slidein \n{ \nfrom \n{ margin-left: 100%; height: 300%; } to \n{ margin-left: 0%; height: 100%; }*/\n\nanimation-duration: 0.50s; animation-name: slidein;}\n@keyframes slidein \n{ \nfrom \n{ opacity: 0; top: 25px; } to \n{ opacity: 1; top: 0px; }\n}\n\n@media (max-width: 375px){\n.text-object {\n\n width: 320px;\n\n}\n\n\n}\n\n\n.text-object.player\n{\ntext-align: right;\n}\n\n@media (max-width: 375px){\n.text-object.player {\n\nwidth: 320px;\n\n\n}\n}\n\n.bubble-object{\ndisplay: inline-block;\n/*float: left; */\nposition: relative;\nleft: 25px;\n/*bottom: 20px;\nleft: 10px;*/\n}\n@media (max-width: 375px){\n.bubble-object {\n\nwidth: 200px;\n\n\n}\n}\n\n\n.bubble-object.player{\nleft: -25px;\n/*display: inline-block;\nfloat: right;\nposition: relative;\nbottom: 20px;\nright: 10px; trying to fix style today */\n}\n\n.talk-bubble.player > .talktext > p{\npadding-right: 1em\n}\n\n#char9s{\n background-image: url("smsportraits/9s.png");\n width: 50px;\n height: 50px;\n display: block;\n position: relative;\n float: right;\n right: 10px;\n bottom: 20px;\n margin: 0;\n display: inline-block;\n padding: 0;\n}\n\n.timestamp{\n padding: 1em;\n font-size: 0.8em;\n opacity: 0.75;\n display: block;\n margin-bottom: -55px;\n}\n\ndiv.player > .talktext > span.timestamp{\n\n font-weight: bold;\n opacity: 0.50\n}\n\n/* container */\n.container {\n padding: 5% 5%;\n}\n\n/* CSS talk bubble */\n.talk-bubble {\n display: inline-block;\n position: relative;\n\tmin-width: 150px;\n\theight: auto;\n\tbackground-color: orange;\ncolor: white;\nfont-size: 12pt;\n}\n\n.talk-bubble.player {\nbackground-color: #1ca0d5;\n/*color: black;*/\n}\n@media (max-width: 375px){\n.talk-bubble.player {\n\nwidth: 200px;\n\n\n}\n}\n\n\n.border{\n border: 8px solid #666;\n}\n.round{\n border-radius: 30px;\n\t-webkit-border-radius: 30px;\n\t-moz-border-radius: 30px;\n\n}\n\n\n\n/* Right triangle placed top left flush. */\n.tri-right.border.left-top:before {\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: -40px;\n\tright: auto;\n top: -8px;\n\tbottom: auto;\n\tborder: 32px solid;\n\tborder-color: orange transparent transparent transparent;\n}\n.tri-right.left-top:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: -15px;\n\tright: auto;\n top: 0px;\n\tbottom: auto;\n\tborder: 22px solid;\n\tborder-color: orange transparent transparent transparent;\n}\n\n/* Right triangle, left side slightly down */\n.tri-right.border.left-in:before {\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: -40px;\n\tright: auto;\n top: 30px;\n\tbottom: auto;\n\tborder: 20px solid;\n\tborder-color: #666 #666 transparent transparent;\n}\n.tri-right.left-in:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: -20px;\n\tright: auto;\n top: 38px;\n\tbottom: auto;\n\tborder: 12px solid;\n\tborder-color: lightyellow lightyellow transparent transparent;\n}\n\n/*Right triangle, placed bottom left side slightly in*/\n.tri-right.border.btm-left:before {\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n\tleft: -8px;\n right: auto;\n top: auto;\n\tbottom: -40px;\n\tborder: 32px solid;\n\tborder-color: transparent transparent transparent #666;\n}\n.tri-right.btm-left:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n\tleft: 0px;\n right: auto;\n top: auto;\n\tbottom: -20px;\n\tborder: 22px solid;\n\tborder-color: transparent transparent transparent lightyellow;\n}\n\n/*Right triangle, placed bottom left side slightly in*/\n.tri-right.border.btm-left-in:before {\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n\tleft: 30px;\n right: auto;\n top: auto;\n\tbottom: -40px;\n\tborder: 20px solid;\n\tborder-color: #666 transparent transparent #666;\n}\n.tri-right.btm-left-in:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n\tleft: 38px;\n right: auto;\n top: auto;\n\tbottom: -20px;\n\tborder: 12px solid;\n\tborder-color: lightyellow transparent transparent lightyellow;\n}\n\n/*Right triangle, placed bottom right side slightly in*/\n.tri-right.border.btm-right-in:before {\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: 30px;\n\tbottom: -40px;\n\tborder: 20px solid;\n\tborder-color: #666 #666 transparent transparent;\n}\n.tri-right.btm-right-in:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: 38px;\n\tbottom: -20px;\n\tborder: 12px solid;\n\tborder-color: lightyellow lightyellow transparent transparent;\n}\n/*\n\tleft: -8px;\n right: auto;\n top: auto;\n\tbottom: -40px;\n\tborder: 32px solid;\n\tborder-color: transparent transparent transparent #666;\n\tleft: 0px;\n right: auto;\n top: auto;\n\tbottom: -20px;\n\tborder: 22px solid;\n\tborder-color: transparent transparent transparent lightyellow;\n\n/*Right triangle, placed bottom right side slightly in*/\n.tri-right.border.btm-right:before {\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: -8px;\n\tbottom: -40px;\n\tborder: 20px solid;\n\tborder-color: #666 #666 transparent transparent;\n}\n.tri-right.btm-right:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: 0px;\n\tbottom: -20px;\n\tborder: 12px solid;\n\tborder-color: lightyellow lightyellow transparent transparent;\n}\n\n/* Right triangle, right side slightly down*/\n.tri-right.border.right-in:before {\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: -40px;\n top: 30px;\n\tbottom: auto;\n\tborder: 20px solid;\n\tborder-color: #orange transparent transparent #666;\n}\n.tri-right.right-in:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: -20px;\n top: 38px;\n\tbottom: auto;\n\tborder: 12px solid;\n\tborder-color: lightyellow transparent transparent lightyellow;\n}\n\n/* Right triangle placed top right flush. */\n.tri-right.border.right-top:before {\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: -40px;\n top: -8px;\n\tbottom: auto;\n\tborder: 32px solid;\n\tborder-color: #white transparent transparent transparent;\n}\n\n/*PLAYER TRIANGLE */\n.tri-right.right-top:after{\n\tcontent: ' ';\n\tposition: absolute;\n\twidth: 0;\n\theight: 0;\n left: auto;\n\tright: -13px;\n top: 0px;\n\tbottom: auto;\n\tborder: 25px solid;\n\tborder-color: #1ca0d5 transparent transparent transparent;\n}\n\n/* talk bubble contents */\n.talktext{\n padding: 0.5em;\n\ttext-align: left;\n line-height: 1.2em;\nmargin-top: -0.5em\n}\n.talktext p{\n /* remove webkit p margins */\n -webkit-margin-before: -1.8em;\n -webkit-margin-after: -1.8em;\n margin-left: 15px;\n word-wrap: break-word;\n max-width: 250px\n\n}\n\n#footer{\nposition: absolute;\nbottom: 0px;\ncolor: white;\n\n}\n\n#footer a.externalLink {\ncolor: white;\n}\n@media (max-width: 414px){\n#footer {\n\n position: absolute;\n top: 70px;\n z-index: -1;\ncolor: black;\n}\n\n#footer a.externalLink {\ncolor: black;\n}\n}\n\n