Post numbers

Obsolete, fixed, and incorrect bug requests and problems. Browse here before posting a new topic, to avoid duplicates.
Locked
User avatar
MacavityLock
MacavityLock
Impin' Ain't Easy
User avatar
User avatar
MacavityLock
Impin' Ain't Easy
Impin' Ain't Easy
Posts: 2486
Joined: August 14, 2008

Post numbers

Post Post #0 (ISO) » Wed Jun 16, 2010 6:16 am

Post by MacavityLock »

Are post numbers in thread gone for good?
Yes, my fake claim is Innocent Aligned with the Town win condition as per the mod's first post.
User avatar
MacavityLock
MacavityLock
Impin' Ain't Easy
User avatar
User avatar
MacavityLock
Impin' Ain't Easy
Impin' Ain't Easy
Posts: 2486
Joined: August 14, 2008

Post Post #1 (ISO) » Wed Jun 16, 2010 6:18 am

Post by MacavityLock »

MacavityLock wrote:Are post numbers in thread gone for good?
Missed the answer to this question in the other thread, my apologies.
Yes, my fake claim is Innocent Aligned with the Town win condition as per the mod's first post.
User avatar
Ythan
Ythan
She
Welcome to the Haystack
User avatar
User avatar
Ythan
She
Welcome to the Haystack
Welcome to the Haystack
Posts: 15149
Joined: August 11, 2009
Pronoun: She

Post Post #2 (ISO) » Wed Jun 16, 2010 6:20 am

Post by Ythan »

MacavityLock wrote:
MacavityLock wrote:Are post numbers in thread gone for good?
Missed the answer to this question in the other thread, my apologies.
I'm curious.
User avatar
Nobody Special
Nobody Special
Survivor
User avatar
User avatar
Nobody Special
Survivor
Survivor
Posts: 14479
Joined: January 6, 2010
Location: Not here

Post Post #3 (ISO) » Wed Jun 16, 2010 6:37 am

Post by Nobody Special »

It's on Mr. Flay's To Do list, per mith.
....what?



Blitz: Picking Simplicity taking pre-ins; PM for info. (0/13)
User avatar
Axelrod
Axelrod
Mafia Scum
User avatar
User avatar
Axelrod
Mafia Scum
Mafia Scum
Posts: 1453
Joined: February 25, 2005

Post Post #4 (ISO) » Thu Jun 17, 2010 9:16 am

Post by Axelrod »

Please, please, please find a way to have posts be individually numbered again in the threads. This would make my life so much easier.
User avatar
UnofficialRulerOfEveryone
UnofficialRulerOfEveryone
Goon
User avatar
User avatar
UnofficialRulerOfEveryone
Goon
Goon
Posts: 935
Joined: February 28, 2008

Post Post #5 (ISO) » Sat Jun 19, 2010 8:28 am

Post by UnofficialRulerOfEveryone »

imkingdavid wrote:
Johoohno wrote:I miss the post count at the top of each post.
That is currently on the to do list afaik. I miss it too. ;)
Yeah, and if I understand correctly, Flay is working on porting JEEP's MOD over, since we couldn't find a MOD that started from 0 rather than 1.
Show
I OWN PANTS!

I am URoE! Ruler of all things stupid!

Town: 1 - 4
Scum: 1 - 2

I suck.

[01:53:40] <@Phayt> ATTENTION DUELISTS
[01:53:51] <@Phayt> i'd just like to express derision and amusement that someone considers uroe to be a good player
User avatar
imkingdavid
imkingdavid
Mafia Scum
User avatar
User avatar
imkingdavid
Mafia Scum
Mafia Scum
Posts: 1201
Joined: June 13, 2009
Location: Virginia, US (Eastern Time Zone)
Contact:

Post Post #6 (ISO) » Sat Jun 19, 2010 8:40 am

Post by imkingdavid »

UnofficialRulerOfEveryone wrote:
imkingdavid wrote:
Johoohno wrote:I miss the post count at the top of each post.
That is currently on the to do list afaik. I miss it too. ;)
Yeah, and if I understand correctly, Flay is working on porting JEEP's MOD over, since we couldn't find a MOD that started from 0 rather than 1.
Well, starting for 0 instead of 1 is a simple subtract 1 from whatever number it would show. No need to do a bunch of extra work porting something when something else exist and shouldn't be too difficult to fix. That being said, I haven't actually seen the code for the one that starts at 1, so I am speaking theoretically.

EDIT: Alright, just looked. I believe that the following code sets the current post number in the MOD that we're talking about:

Code: Select all

        $postrow['POST_NUM'] = $start + ($i+1); 

Simply changing it to:

Code: Select all

        $postrow['POST_NUM'] = $start + $i; 
should do the trick.
Naughty little fly, why does it cry? Caught in a web, Soon you'll be...
eaten!
User avatar
Mr. Flay
Mr. Flay
Metatron
User avatar
User avatar
Mr. Flay
Metatron
Metatron
Posts: 24969
Joined: March 12, 2004
Location: Gormenghast
Contact:

Post Post #7 (ISO) » Sat Jun 19, 2010 8:51 am

Post by Mr. Flay »

Yeah, sorry. Having car trouble today which is delaying work. Still probably get post numbers done by Monday.
Retired as of October 2014.
User avatar
UnofficialRulerOfEveryone
UnofficialRulerOfEveryone
Goon
User avatar
User avatar
UnofficialRulerOfEveryone
Goon
Goon
Posts: 935
Joined: February 28, 2008

Post Post #8 (ISO) » Sat Jun 19, 2010 9:13 am

Post by UnofficialRulerOfEveryone »

imkingdavid wrote:
UnofficialRulerOfEveryone wrote:
imkingdavid wrote:
Johoohno wrote:I miss the post count at the top of each post.
That is currently on the to do list afaik. I miss it too. ;)
Yeah, and if I understand correctly, Flay is working on porting JEEP's MOD over, since we couldn't find a MOD that started from 0 rather than 1.
Well, starting for 0 instead of 1 is a simple subtract 1 from whatever number it would show. No need to do a bunch of extra work porting something when something else exist and shouldn't be too difficult to fix. That being said, I haven't actually seen the code for the one that starts at 1, so I am speaking theoretically.

EDIT: Alright, just looked. I believe that the following code sets the current post number in the MOD that we're talking about:

Code: Select all

        $postrow['POST_NUM'] = $start + ($i+1); 

Simply changing it to:

Code: Select all

        $postrow['POST_NUM'] = $start + $i; 
should do the trick.
Haha, nice. I know pretty much nothing about php programming, so don't blame me for not knowing a fix :D
Show
I OWN PANTS!

I am URoE! Ruler of all things stupid!

Town: 1 - 4
Scum: 1 - 2

I suck.

[01:53:40] <@Phayt> ATTENTION DUELISTS
[01:53:51] <@Phayt> i'd just like to express derision and amusement that someone considers uroe to be a good player
User avatar
ChannelDelibird
ChannelDelibird
He/they
Card Czar
User avatar
User avatar
ChannelDelibird
He/they
Card Czar
Card Czar
Posts: 10601
Joined: March 18, 2006
Pronoun: He/they
Location: Nottingham, UK
Contact:

Post Post #9 (ISO) » Sat Jun 19, 2010 11:14 pm

Post by ChannelDelibird »

Can we get post numbers back at the top of each post?
#greenshirtthursdays
User avatar
Porochaz
Porochaz
Oh, Prozac
User avatar
User avatar
Porochaz
Oh, Prozac
Oh, Prozac
Posts: 9317
Joined: September 6, 2007

Post Post #10 (ISO) » Sun Jun 20, 2010 12:59 am

Post by Porochaz »

Mr. Flay wrote: [*]
Post Numbers
- I haven't ported it over yet, but I have at least two examples to work from.
Estimated completion: 6/20.
Mostly retired. Unless you ask or it's something interesting.
User avatar
ChannelDelibird
ChannelDelibird
He/they
Card Czar
User avatar
User avatar
ChannelDelibird
He/they
Card Czar
Card Czar
Posts: 10601
Joined: March 18, 2006
Pronoun: He/they
Location: Nottingham, UK
Contact:

Post Post #11 (ISO) » Sun Jun 20, 2010 2:28 am

Post by ChannelDelibird »

Cheers Prozac. I fail at reading.
#greenshirtthursdays
User avatar
Mr. Flay
Mr. Flay
Metatron
User avatar
User avatar
Mr. Flay
Metatron
Metatron
Posts: 24969
Joined: March 12, 2004
Location: Gormenghast
Contact:

Post Post #12 (ISO) » Thu Jul 08, 2010 8:17 am

Post by Mr. Flay »

Elsewhere, Mr. Flay wrote:Okay, since I started posting in games again I'm finding the popup annoying, especially after years of clicking the little icon. I can either flip them so that the post number does the javascript popup, or just make them both plain links.

In other news, I think I'll change POST_NUM from "Post number:" to "Post" tonight. I think there needs to be some plain text between the two, especially if they're going to continue to do slightly different things.
Thoughts? I know a couple people have already been confused by the javascript popup on the page icon, and it's practically no work to flip it to the 'number', except that that will then confuse people who are getting used to the current behavior. But as I actually play games, I find my muscle memory expects the icon to be a regular link, and I notice that it's a regular link on 'View My Topics' and Forum View.

If you have Javascript disabled, it should just click through any normal link, so you may not even have noticed this feature.
Retired as of October 2014.
User avatar
Zorblag
Zorblag
Troll
User avatar
User avatar
Zorblag
Troll
Troll
Posts: 4057
Joined: September 25, 2008
Location: Under a bridge in Seattle

Post Post #13 (ISO) » Fri Jul 09, 2010 4:46 am

Post by Zorblag »

Troll would like it if the functions were switched. Troll do be used to the old method of clicking on the page to go to the thread and at this point Troll gets it wrong the first time Troll clicks on something every time.

Troll fears and loathes change though so Troll's opinion no needs to be the important one.

-Zorblag R`Lyeh
User avatar
CSL
CSL
Jack of All Trades
User avatar
User avatar
CSL
Jack of All Trades
Jack of All Trades
Posts: 6208
Joined: August 2, 2009
Location: Mitakihara

Post Post #14 (ISO) » Fri Jul 09, 2010 7:29 am

Post by CSL »

Zorblag wrote:Troll would like it if the functions were switched. Troll do be used to the old method of clicking on the page to go to the thread and at this point Troll gets it wrong the first time Troll clicks on something every time.

Troll fears and loathes change though so Troll's opinion no needs to be the important one.

-Zorblag R`Lyeh
QFT
Show
"I can't kill my own best friend, especially when I can't do shit at all!" - Tragedy


"
T
H
E
T
I
G
E
R
B
L
O
O
D
L
U
S
T
W
A
S
R
U
N
N
I
N
G
T
H
R
O
U
G
H
M
Y
V
E
I
N
S
" - Amrun

V/LA from Mafia on weekends. Sorry!
User avatar
Porochaz
Porochaz
Oh, Prozac
User avatar
User avatar
Porochaz
Oh, Prozac
Oh, Prozac
Posts: 9317
Joined: September 6, 2007

Post Post #15 (ISO) » Fri Jul 09, 2010 10:03 am

Post by Porochaz »

Id prefer if the box didnt appear at all no matter what you clicked, but thats just me.
Mostly retired. Unless you ask or it's something interesting.
User avatar
Mr. Flay
Mr. Flay
Metatron
User avatar
User avatar
Mr. Flay
Metatron
Metatron
Posts: 24969
Joined: March 12, 2004
Location: Gormenghast
Contact:

Post Post #16 (ISO) » Fri Jul 09, 2010 10:22 am

Post by Mr. Flay »

Yeah, really at this point this thread is for someone to go "NOOOOOO! Mah popups!!!!". I've disabled them in the meantime; both links now have the 'old' behavior of linking straight to that post.
Retired as of October 2014.
User avatar
imkingdavid
imkingdavid
Mafia Scum
User avatar
User avatar
imkingdavid
Mafia Scum
Mafia Scum
Posts: 1201
Joined: June 13, 2009
Location: Virginia, US (Eastern Time Zone)
Contact:

Post Post #17 (ISO) » Sun Jul 18, 2010 1:09 pm

Post by imkingdavid »

Well, if we're going to have both links do the same thing, why not scrap one of the links (aka. just leave the #0 as a bold text with no link) and leave the old functionality for the page icon.

However, if we're going to keep both things (the popup and the direct link to the post) I think that the page icon should be the direct link, and the post # should be the popup.

In the end, I can adapt to change either way, so no biggie for me.
Naughty little fly, why does it cry? Caught in a web, Soon you'll be...
eaten!
User avatar
Mr. Flay
Mr. Flay
Metatron
User avatar
User avatar
Mr. Flay
Metatron
Metatron
Posts: 24969
Joined: March 12, 2004
Location: Gormenghast
Contact:

Post Post #18 (ISO) » Sun Jul 18, 2010 2:43 pm

Post by Mr. Flay »

At this point I've heard no real call for popups to be enabled... and people used to 'miss' that the page icon was a link all the time, so I suspect it may still be useful to have both. But it's easy enough to change if people want one (and I agree it should be the post #, if anything)
Retired as of October 2014.
User avatar
Ythill
Ythill
Fabio
User avatar
User avatar
Ythill
Fabio
Fabio
Posts: 4892
Joined: November 10, 2007

Post Post #19 (ISO) » Wed Jul 21, 2010 11:35 pm

Post by Ythill »

I actually kind of liked the popups. I have slow internet and it's a pain to load a whole new page just to copy the post URL.

Also, would it be possible to indicate original post numbers somewhere in iso? So that I can look at iso24 and know it is #342 without navigating?
Record:
Town 10W/15L
Scum 4W/1L
Other 2W/2L
Newbie 1L


"So yeah, it is a sign from the angels." ~CooLDoG
User avatar
yabbaguy
yabbaguy
(O)ptimized
User avatar
User avatar
yabbaguy
(O)ptimized
(O)ptimized
Posts: 3175
Joined: April 26, 2009
Location: Massachusetts

Post Post #20 (ISO) » Thu Jul 22, 2010 1:00 am

Post by yabbaguy »

@Ythill: Right-click and select copy link location to workaround the former problem.
yabbaguy ~ Winning without actually winning.

Town: 10-21 | Mafia: 3-4 | Other: 0-1
yGDB
(meta + commentary)

- On reruns at Sens-O-Tape!
User avatar
Mr. Flay
Mr. Flay
Metatron
User avatar
User avatar
Mr. Flay
Metatron
Metatron
Posts: 24969
Joined: March 12, 2004
Location: Gormenghast
Contact:

Post Post #21 (ISO) » Thu Jul 22, 2010 2:02 am

Post by Mr. Flay »

Ythill wrote:Also, would it be possible to indicate original post numbers somewhere in iso? So that I can look at iso24 and know it is #342 without navigating?
Thanks for reminding me to add it to my wish list, but it's non-trivial to do so.
Retired as of October 2014.
User avatar
ReaperCharlie
ReaperCharlie
Jack of All Trades
User avatar
User avatar
ReaperCharlie
Jack of All Trades
Jack of All Trades
Posts: 5105
Joined: October 19, 2009

Post Post #22 (ISO) » Fri Aug 13, 2010 11:11 am

Post by ReaperCharlie »

Mr. Flay wrote:
Ythill wrote:Also, would it be possible to indicate original post numbers somewhere in iso? So that I can look at iso24 and know it is #342 without navigating?
Thanks for reminding me to add it to my wish list, but it's non-trivial to do so.
It's as easy as clicking the
ISO #24
, and then watching as it changes to
Post #24
. Then you can hit the "Back" button, and all of your important info will still be saved by $_POST, or your browser. Problem solved!

Unless you hit "Back" and then refresh the page for some reason, in which case you are supremely SOL.
Show
"Take me to Pleasure Town!" "Look, the most Glorious Rainbow Ever!" "Do me on it!" -

Spoiler:
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûê
ÔûêÔûê
Ôûê
ÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûê
ÔûêÔûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûê
ÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
User avatar
Mr. Flay
Mr. Flay
Metatron
User avatar
User avatar
Mr. Flay
Metatron
Metatron
Posts: 24969
Joined: March 12, 2004
Location: Gormenghast
Contact:

Post Post #23 (ISO) » Fri Aug 13, 2010 11:20 am

Post by Mr. Flay »

Or using Internet Exploder, which reloads on Back automagically.
Retired as of October 2014.
User avatar
ReaperCharlie
ReaperCharlie
Jack of All Trades
User avatar
User avatar
ReaperCharlie
Jack of All Trades
Jack of All Trades
Posts: 5105
Joined: October 19, 2009

Post Post #24 (ISO) » Fri Aug 13, 2010 12:44 pm

Post by ReaperCharlie »

OH WHOOPS. LOL

heh. icwutudidthar. "exploder" indeed.
Show
"Take me to Pleasure Town!" "Look, the most Glorious Rainbow Ever!" "Do me on it!" -

Spoiler:
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûê
ÔûêÔûê
Ôûê
ÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûê
ÔûêÔûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûê
ÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûê
Ôûê
Ôûê
Ôûê
ÔûêÔûêÔûêÔûêÔûê
Ôûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê

ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
ÔûêÔûêÔûêÔûêÔûêÔûêÔûê
Locked

Return to “Solved Requests”