Aligning includestandalone graphs The 2019 Stack Overflow Developer Survey Results Are In
What could be the right powersource for 15 seconds lifespan disposable giant chainsaw?
Should I use my personal or workplace e-mail when registering to external websites for work purpose?
The difference between dialogue marks
How to create dashed lines/arrows in Illustrator
Idomatic way to prevent slicing?
Did USCIS resume its biometric service for UK visa?
Could JWST stay at L2 "forever"?
What tool would a Roman-age civilisation use to reduce/breakup silver and other metals?
Time travel alters history but people keep saying nothing's changed
Can I write a for loop that iterates over both collections and arrays?
I looked up a future colleague on linkedin before I started a job. I told my colleague about it and he seemed surprised. Should I apologize?
Where to refill my bottle in India?
Does a dangling wire really electrocute me if I'm standing in water?
JSON.serialize: is it possible to suppress null values of a map?
Monty Hall variation
What do hard-Brexiteers want with respect to the Irish border?
Why can Shazam do this?
Inflated grade on resume at previous job, might former employer tell new employer?
How can I create a character who can assume the widest possible range of creature sizes?
What is the motivation for a law requiring 2 parties to consent for recording a conversation
Is this food a bread or a loaf?
In microwave frequencies, do you use a circulator when you need a (near) perfect diode?
Inversion Puzzle
is usb on wall sockets live all the time with out switches off
Aligning includestandalone graphs
The 2019 Stack Overflow Developer Survey Results Are In
I have these two standalone bar graphs that are identical in size, but when I includestandalone them, to insert them into my main document, I can't for the life of me get them to line up.
If I put them both in the same standalone document and import them that way, they're perfectly in line. But they're two separate figures and i want to be able to control them as separate entities. Is there something I can do to neaten it up?
Here they are included together as a single standalone document, perfectly aligned:
bargraphs.tex
Here they are included as two separate standalone documents, not cooperating:
bargraph1.tex + bargraph2.tex

Here's the code for the bar graphs together in a standalone:
bargraphs.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.06cm]
beginscope[yshift=-0cm]
foreach [count=i from 0] p/t in
500/Marriott (2018),
3000/Yahoo! (2017),
143/Equifax (2017),
412/FriendFinder (2016),
145/eBay (2014),
110/Target (2013)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [blue!40] (i-i.base east) rectangle ++((1*(p)/25)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
beginscope[yshift=-2cm]
foreach [count=i from 0] p/t in
110/Target (2013),
38/Adobe (2013),
77/Sony (2011),
40/RSA Security (2011),
134/Heartland (2008),
94/TJX (2006)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [red!50] (i-i.base east) rectangle ++(((p)-13)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
Here they are separately:
bargraph1.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.05cm]
beginscope[yshift=-4cm]
foreach [count=i from 0] p/t in
500/Marriott (2018),
3000/Yahoo! (2017),
143/Equifax (2017),
412/FriendFinder (2016),
145/eBay (2014),
110/Target (2013)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [blue!40] (i-i.base east) rectangle ++((1*(p)/25)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
bargraph2.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.05cm]
beginscope[yshift=-4cm]
foreach [count=i from 0] p/t in
110/Target (2013),
38/Adobe (2013),
77/Sony (2011),
40/RSA Security (2011),
134/Heartland (2008),
94/TJX (2006)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [red!50] (i-i.base east) rectangle ++(((p)-13)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
main.tex
Here's and MWE of the main.tex document:
documentclass[apacite,jou,a4paper]apa6
usepackageamsmath,amssymb,booktabs
usepackage[table,xcdraw]xcolor
usepackage[utf8]inputenc %useful to type directly diacritic characters
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
usepackagestandalone
titleTitle
begindocument
maketitle
sectionHeading
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\
noindent
centering
includestandalonetest/bargraph1
\
noindent
centering
includestandalonetest/bargraph2
\
sectionHeading
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. \
bibliographyreferences
enddocument
horizontal-alignment vertical-alignment include standalone alignment
add a comment |
I have these two standalone bar graphs that are identical in size, but when I includestandalone them, to insert them into my main document, I can't for the life of me get them to line up.
If I put them both in the same standalone document and import them that way, they're perfectly in line. But they're two separate figures and i want to be able to control them as separate entities. Is there something I can do to neaten it up?
Here they are included together as a single standalone document, perfectly aligned:
bargraphs.tex
Here they are included as two separate standalone documents, not cooperating:
bargraph1.tex + bargraph2.tex

Here's the code for the bar graphs together in a standalone:
bargraphs.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.06cm]
beginscope[yshift=-0cm]
foreach [count=i from 0] p/t in
500/Marriott (2018),
3000/Yahoo! (2017),
143/Equifax (2017),
412/FriendFinder (2016),
145/eBay (2014),
110/Target (2013)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [blue!40] (i-i.base east) rectangle ++((1*(p)/25)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
beginscope[yshift=-2cm]
foreach [count=i from 0] p/t in
110/Target (2013),
38/Adobe (2013),
77/Sony (2011),
40/RSA Security (2011),
134/Heartland (2008),
94/TJX (2006)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [red!50] (i-i.base east) rectangle ++(((p)-13)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
Here they are separately:
bargraph1.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.05cm]
beginscope[yshift=-4cm]
foreach [count=i from 0] p/t in
500/Marriott (2018),
3000/Yahoo! (2017),
143/Equifax (2017),
412/FriendFinder (2016),
145/eBay (2014),
110/Target (2013)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [blue!40] (i-i.base east) rectangle ++((1*(p)/25)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
bargraph2.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.05cm]
beginscope[yshift=-4cm]
foreach [count=i from 0] p/t in
110/Target (2013),
38/Adobe (2013),
77/Sony (2011),
40/RSA Security (2011),
134/Heartland (2008),
94/TJX (2006)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [red!50] (i-i.base east) rectangle ++(((p)-13)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
main.tex
Here's and MWE of the main.tex document:
documentclass[apacite,jou,a4paper]apa6
usepackageamsmath,amssymb,booktabs
usepackage[table,xcdraw]xcolor
usepackage[utf8]inputenc %useful to type directly diacritic characters
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
usepackagestandalone
titleTitle
begindocument
maketitle
sectionHeading
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\
noindent
centering
includestandalonetest/bargraph1
\
noindent
centering
includestandalonetest/bargraph2
\
sectionHeading
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. \
bibliographyreferences
enddocument
horizontal-alignment vertical-alignment include standalone alignment
add a comment |
I have these two standalone bar graphs that are identical in size, but when I includestandalone them, to insert them into my main document, I can't for the life of me get them to line up.
If I put them both in the same standalone document and import them that way, they're perfectly in line. But they're two separate figures and i want to be able to control them as separate entities. Is there something I can do to neaten it up?
Here they are included together as a single standalone document, perfectly aligned:
bargraphs.tex
Here they are included as two separate standalone documents, not cooperating:
bargraph1.tex + bargraph2.tex

Here's the code for the bar graphs together in a standalone:
bargraphs.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.06cm]
beginscope[yshift=-0cm]
foreach [count=i from 0] p/t in
500/Marriott (2018),
3000/Yahoo! (2017),
143/Equifax (2017),
412/FriendFinder (2016),
145/eBay (2014),
110/Target (2013)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [blue!40] (i-i.base east) rectangle ++((1*(p)/25)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
beginscope[yshift=-2cm]
foreach [count=i from 0] p/t in
110/Target (2013),
38/Adobe (2013),
77/Sony (2011),
40/RSA Security (2011),
134/Heartland (2008),
94/TJX (2006)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [red!50] (i-i.base east) rectangle ++(((p)-13)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
Here they are separately:
bargraph1.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.05cm]
beginscope[yshift=-4cm]
foreach [count=i from 0] p/t in
500/Marriott (2018),
3000/Yahoo! (2017),
143/Equifax (2017),
412/FriendFinder (2016),
145/eBay (2014),
110/Target (2013)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [blue!40] (i-i.base east) rectangle ++((1*(p)/25)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
bargraph2.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.05cm]
beginscope[yshift=-4cm]
foreach [count=i from 0] p/t in
110/Target (2013),
38/Adobe (2013),
77/Sony (2011),
40/RSA Security (2011),
134/Heartland (2008),
94/TJX (2006)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [red!50] (i-i.base east) rectangle ++(((p)-13)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
main.tex
Here's and MWE of the main.tex document:
documentclass[apacite,jou,a4paper]apa6
usepackageamsmath,amssymb,booktabs
usepackage[table,xcdraw]xcolor
usepackage[utf8]inputenc %useful to type directly diacritic characters
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
usepackagestandalone
titleTitle
begindocument
maketitle
sectionHeading
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\
noindent
centering
includestandalonetest/bargraph1
\
noindent
centering
includestandalonetest/bargraph2
\
sectionHeading
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. \
bibliographyreferences
enddocument
horizontal-alignment vertical-alignment include standalone alignment
I have these two standalone bar graphs that are identical in size, but when I includestandalone them, to insert them into my main document, I can't for the life of me get them to line up.
If I put them both in the same standalone document and import them that way, they're perfectly in line. But they're two separate figures and i want to be able to control them as separate entities. Is there something I can do to neaten it up?
Here they are included together as a single standalone document, perfectly aligned:
bargraphs.tex
Here they are included as two separate standalone documents, not cooperating:
bargraph1.tex + bargraph2.tex

Here's the code for the bar graphs together in a standalone:
bargraphs.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.06cm]
beginscope[yshift=-0cm]
foreach [count=i from 0] p/t in
500/Marriott (2018),
3000/Yahoo! (2017),
143/Equifax (2017),
412/FriendFinder (2016),
145/eBay (2014),
110/Target (2013)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [blue!40] (i-i.base east) rectangle ++((1*(p)/25)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
beginscope[yshift=-2cm]
foreach [count=i from 0] p/t in
110/Target (2013),
38/Adobe (2013),
77/Sony (2011),
40/RSA Security (2011),
134/Heartland (2008),
94/TJX (2006)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [red!50] (i-i.base east) rectangle ++(((p)-13)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
Here they are separately:
bargraph1.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.05cm]
beginscope[yshift=-4cm]
foreach [count=i from 0] p/t in
500/Marriott (2018),
3000/Yahoo! (2017),
143/Equifax (2017),
412/FriendFinder (2016),
145/eBay (2014),
110/Target (2013)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [blue!40] (i-i.base east) rectangle ++((1*(p)/25)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
bargraph2.tex
documentclass[margin=10,tikz]standalone
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
begindocument
begintikzpicture[y=0.3cm, x=0.05cm]
beginscope[yshift=-4cm]
foreach [count=i from 0] p/t in
110/Target (2013),
38/Adobe (2013),
77/Sony (2011),
40/RSA Security (2011),
134/Heartland (2008),
94/TJX (2006)
node [anchor=base east, barlabels, name=i-i] at (0,-i) t;
fill [red!50] (i-i.base east) rectangle ++(((p)-13)*0.6,barheight) ++(0,-barheight) node[barlabels, black, anchor=base west] p M;
endscope
endtikzpicture
enddocument
main.tex
Here's and MWE of the main.tex document:
documentclass[apacite,jou,a4paper]apa6
usepackageamsmath,amssymb,booktabs
usepackage[table,xcdraw]xcolor
usepackage[utf8]inputenc %useful to type directly diacritic characters
usepackagetikz
tikzsetbarlabels/.style=font=footnotesizesffamily,
declare function=barheight=5pt;
usepackagestandalone
titleTitle
begindocument
maketitle
sectionHeading
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\
noindent
centering
includestandalonetest/bargraph1
\
noindent
centering
includestandalonetest/bargraph2
\
sectionHeading
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. \
bibliographyreferences
enddocument
horizontal-alignment vertical-alignment include standalone alignment
horizontal-alignment vertical-alignment include standalone alignment
asked 2 mins ago
tjt263tjt263
2858
2858
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f484028%2faligning-includestandalone-graphs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f484028%2faligning-includestandalone-graphs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown