投稿数 - 437, コメント - 59540, トラックバック - 156

C# と VB はどちらが速い?

http://f57.aaa.livedoor.jp/~jeanne/bbs/faq.cgi?mode=al2&namber=5089

「ほぼ」一緒のはずだ。同じ処理をするコードを書いたら、C# コンパイラと VB コンパイラは同じ IL を出力する。

「ほぼ」同じとは歯切れが悪い。全く一緒ではないのか?

Visual Studio 2005、つまり C#2.0 と VB8 で検証してみる。

C#

static void Main() { int i = 32768; short s = (short)i; }
VB

Sub Main() Dim i As Integer = 32768 Dim s As Short = CShoft(i) End Sub

上のような単純なコードにも違いはある。何が違うのだろうか。実行してみれば一目瞭然である。VB の方は「OverflowException」がスローされる。

IL レベルで検証してみよう。

C# IL

.method private hidebysig static void Main() cil managed { .entrypoint // コード サイズ 11 (0xb) .maxstack 1 .locals init ([0] int32 i, [1] int16 s) IL_0000: nop IL_0001: ldc.i4 0x8000 IL_0006: stloc.0 IL_0007: ldloc.0 IL_0008: conv.i2 IL_0009: stloc.1 IL_000a: ret } // end of method Program::Main
VB IL

.method public static void Main() cil managed { .entrypoint .custom instance void [mscorlib]System.STAThreadAttribute::.ctor() = ( 01 00 00 00 ) // コード サイズ 12 (0xc) .maxstack 1 .locals init ([0] int32 i, [1] int16 s) IL_0000: nop IL_0001: ldc.i4 0x8000 IL_0006: stloc.0 IL_0007: ldloc.0 IL_0008: conv.ovf.i2 IL_0009: stloc.1 IL_000a: nop IL_000b: ret } // end of method Module1::Main

IL での違いは、conv.i2 と conv.ovf.i2 だ。(他にも細かい違いはあるが処理速度には無関係)

これら命令が行う処理は「評価スタックの一番上の値を Int16 に変換し、Int32 への拡張 (埋め込み) を行います」だ。分かりにくいが要は Int16 に変換だ。conv.ovf.i2 の方はこれに加えてオーバーフローチェックを行ってくれる。

どちらが速いか遅いかは分からないが(もっと詳細に書いている文書があるはずだが)、どう考えても conv.ovf.i2 の方が余分に処理をしている。つまり、全く同じ処理を書いても C# より VB の方が遅い IL を吐き出している。

しかし、これはコンパイラの設定を Visual Studio 2005 の規定のままにした時の挙動である。C# コンパイラに「/checked」オプションを付けてコンパイルすると、VB 同様オーバーフローチェックを行う IL を吐き出す。

C# と VB で完全に同じ処理をするコードを書いたら完全に同じ IL になるが、完全に同じ処理を書いているように見えるのは、あくまで表面的にである。今回のような単純な処理でも「完全に同じ処理」ではないのだ。

これ以外にも、VB は遅延バインディングを容易に行うことができ、そうなると IL には見た目以上に余分な処理が入る。

「では結局 VB より C# の方が速いのか?」という結論は早計だ。

確かにデフォルトでは C# コンパイラは VB コンパイラより軽量な IL を出力するかもしれない。今回は C# 寄りな例を挙げただけで、私が知らないだけで、VB の方が軽量な IL を出力する例もあるかもしれない。しかし結局のところ、そういう事があっても劇的な速度の違いはないだろう。

結論。

C# と VB で完全に同じ処理をするコードを書けば、完全に同じ速度になる。
しかし、完全に同じ処理をするコードを書くという事はそう容易ではない。
処理速度に違いはあっても微々たる物だ。

投稿日時 : 2006年7月29日 1:53

フィードバック

# re: C# と VB はどちらが速い?

この手の話はミニマムに行いたいというのは掲示版での主張どおり。
ほぼすべてこのようなC#とVBの比較を行う場合。VBはクソという予断の元に大雑把に議論したがる人が多いので、閉口します。
すくなくともILで動く言語においてはILを見ることが出来るのでミニマムに話が出来るはずですよね(^^
2006/07/29 11:36 | 中博俊

# re: C# と VB はどちらが速い?

さらに言えば、生成される IL を比較して、「ILが~だから遅い」とか「~だから速い」とかいう議論もまずいと思いますけどね。
環境によって JIT 後のコードが違うため、
・同じ IL から (異なる環境で) 複数の実行コード
・複数の IL から同じ実行コード
という可能性もあるわけで。
2006/07/29 16:51 | NyaRuRu

# re: C# と VB はどちらが速い?

中さん、NyaRuRuさん、ありがとうございます。

>環境によって JIT 後のコードが違うため、
た、確かに…^^;
2006/07/30 13:22 | 囚人

# re: C# と VB はどちらが速い?

確かに。
2006/07/31 0:48 | 中博俊

# re: C# と VB はどちらが速い?

速度は、いろいろなことに影響されますね。ほんとに。
同じようなコードに見えても、VB チームと C# チーム、それぞれのアーキテクトや開発チームの考えで、最適化が異なること考えられますし、今後もバージョンアップにしたがって最適化方法も変わっていくことが予測されます。
あと、評価環境によって、IL が同じでも速度が違うことも十分にありますね。
Dual Core, HT による論理CPU の増加や、搭載メモリなどなど、多くの影響によっても影響を受けるかと思います。
※といいつつ、TPC ベンチマークを眺める..
2006/07/31 15:47 | 河端善博

# re: C# と VB はどちらが速い?

河端さん、ありがとうございます。

>※といいつつ、TPC ベンチマークを眺める..

結局どれだけ富豪環境になっても、パフォーマンスを追い求めるのは我々の使命(性「サガ」?)かもしれません。
2006/08/01 1:25 | 囚人

# pSGDGdaJUKQLLnTGDM

3tv8mD Magnificent website. A lot of useful info here. I'm sending it to several friends ans also sharing in delicious. And obviously, thanks for your sweat!
2014/08/28 6:47 | http://crorkz.com/

# cartier love bracelet diamonds replica

290X uses too much power, creates too much heat, and as you mentioned…not great at OC’ing. Not to mention no Shadowplay. And yes while the GPU clock OC is only 27%, the memory OC resulted in the additional 6%. If I remember correctly I think the actual increase in the 3DMark graphics score was 34.x%
cartier love bracelet diamonds replica http://www.fashionlovejewellery.com/
2015/08/04 18:05 | trfsqvwjm@aol.com

# cartier love bracelet size replica

I cringe at how many RSVPs I never returned in time. I think karma may come back and bite me in the ass on this one…
cartier love bracelet size replica http://www.luxurylovejewelry.com/
2015/08/21 12:47 | cvgfaljkhf@aol.com

# I was recommended this website by my cousin. I am not sure whether this post is written by him as no one else know such detailed about my problem. You're wonderful! Thanks!

I was recommended this website by my cousin. I am not sure whether this post
is written by him as no one else know such detailed about my problem.
You're wonderful! Thanks!

# I enjoy what you guys are up too. This kind of clever work and reporting! Keep up the amazing works guys I've added you guys to blogroll.

I enjoy what you guys are up too. This kind of clever work and reporting!

Keep up the amazing works guys I've added you guys to
blogroll.

# I think what you posted was very reasonable. However, think on this, suppose you were to write a awesome headline? I mean, I don't wish to tell you how to run your website, however suppose you added a title that grabbed a person's attention? I mean C#

I think what you posted was very reasonable.
However, think on this, suppose you were to write a awesome headline?
I mean, I don't wish to tell you how to run your website,
however suppose you added a title that grabbed a person's attention? I mean C#
と VB はどちらが速い? is kinda plain. You ought to
peek at Yahoo's front page and note how they write post headlines to get people
interested. You might add a video or a picture or two to grab people
interested about what you've got to say. Just my opinion, it could make your website a little livelier.

# Post writing is also a fun, if you know after that you can write otherwise it is complicated to write.

Post writing is also a fun, if you know after that you can write otherwise it is complicated
to write.

# You can certainly see your expertise in the work you write. The world hopes for more passionate writers like you who aren't afraid to say how they believe. Always go after your heart.

You can certainly see your expertise in the work you write.
The world hopes for more passionate writers like you who aren't afraid to say how
they believe. Always go after your heart.

# Hi there i am kavin, its my first occasion to commenting anyplace, when i read this post i thought i could also create comment due to this sensible piece of writing.

Hi there i am kavin, its my first occasion to commenting anyplace, when i
read this post i thought i could also create comment due to this sensible
piece of writing.

# fjBuDudMQULONvtPv

gwQzsN lot of work? I am brand new to blogging but I do write in my diary
2019/04/22 20:02 | https://www.suba.me/

# gjpVgQVljVE

whoah this weblog is great i love reading your posts. Stay
2019/04/26 20:59 | http://www.frombusttobank.com/

# reotrGRSeoE

It is nearly not possible to find knowledgeable folks about this topic, but the truth is sound like do you realize what you are coping with! Thanks
2019/04/26 22:10 | http://www.frombusttobank.com/

# sUYmktfsYlC

Thanks for the article.Much thanks again. Want more.
2019/04/28 4:13 | http://tinyurl.com/j6na8a9

# pulxsJuwZDCOy

Thanks-a-mundo for the blog.Really looking forward to read more. Much obliged.
2019/04/28 5:19 | http://bit.do/ePqVH

# No matter if some one searches for his essential thing, therefore he/she desires to be available that in detail, so that thing is maintained over here.

No matter if some one searches for his essential thing, therefore he/she desires to
be available that in detail, so that thing is maintained over here.

# gXdqEAbGaxQKJtRAsP

I simply could not depart your web site prior to suggesting that I extremely enjoyed the standard info a person provide on your guests? Is going to be again often in order to check out new posts

# bGZcNOAufQhDzx

Looking forward to reading more. Great post.Much thanks again.

# qwNOMkrzRoEV

I truly enjoy looking through on this website, it has got superb posts. A short saying oft contains much wisdom. by Sophocles.

# iHRMtAPlIqcJfTzwa

Major thankies for the post. Really Great.

# zZqsVUFSzXoaJuYhLZ

It as hard to come by experienced people for this topic, but you sound like you know what you are talking about! Thanks

# XSasnZuOqxC

Odd , this post shows up with a dark color to it, what shade is the primary color on your web site?

# EcatAAMQKwQYP

Really enjoyed this blog post.Thanks Again. Keep writing.

# ZGeBgaYYsnw

Would you be considering exchanging links?

# YuwEykwwCMOXeLH

Wow, marvelous blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your web site is excellent, as well as the content!

# JExzJOYRXnoCFlKboE

I was suggested this web site by my cousin. I am not sure whether this post is written by him as nobody else know such detailed about my problem. You are wonderful! Thanks!

# zjHEgnzBuqoplbMauHq

Wow, marvelous blog layout! How lengthy have you been running a blog for? you make running a blog look easy. The overall look of your website is fantastic, as well as the content!

# HQPQTQAmIfkb

Very informative article.Really looking forward to read more. Fantastic.

# WNvoMiKocGIgkBF

If you are even remotely interested, feel free to send me an e-mail.

# ugpjshAXhSRutEOUntz

Really enjoyed this article post. Awesome.
2019/05/07 16:46 | https://www.newz37.com

# zKkBQMTHFBSc

Im grateful for the article post.Really looking forward to read more. Will read on...
2019/05/08 20:48 | https://ysmarketing.co.uk/

# zyFqPAlOJgwOSCy

wonderful issues altogether, you simply received a new reader. What could you recommend in regards to your put up that you simply made a few days ago? Any certain?

# kamepgHhwc

Wow! This could be one particular of the most helpful blogs We have ever arrive across on this subject. Basically Great. I am also an expert in this topic so I can understand your effort.

# CVOlMrulaqsuCwhh

Really informative article post.Thanks Again. Keep writing.

# xhIhaXFNUFYt

Perfectly indited content material , Really enjoyed reading.

# LIwJKMxQYjRgehERFo

Very neat post.Much thanks again. Want more.

# vJutCugKOUwehIdoO

this blog loading? I am trying to determine if its a problem on my
2019/05/09 18:16 | https://www.mjtoto.com/

# USrrDoCElsVy

Looking forward to reading more. Great blog article. Really Great.
2019/05/10 0:29 | https://www.ttosite.com/

# rEfiXDawbkOsAWFvq

Remarkable things here. I am very satisfied to look your article.

# pCIxomKBxob

Wow, what a video it is! Genuinely pleasant feature video, the lesson given in this video is genuinely informative.
2019/05/10 3:15 | https://www.mtcheat.com/

# aTiMHeVejpruodF

This is one awesome blog article. Want more.
2019/05/10 5:26 | https://totocenter77.com/

# EttkCBHpyqJdqxum

Yeah bookmaking this wasn at a speculative decision great post!.

# nUfkmfsntWjIgtBnF

I truly appreciate this blog.Really looking forward to read more. Keep writing.

# TXCFwuMMxlBfreUmq

In my opinion you commit an error. I suggest it to discuss. Write to me in PM, we will talk.

# LEBurcReiolKsKBoX

that has been a long time coming. It will strengthen the viability

# lirBdbIYdSkJogW

writing is my passion that may be why it really is uncomplicated for me to complete short article writing in less than a hour or so a
2019/05/11 5:41 | https://www.mtpolice88.com/

# KfgIfwnarSvZIDwb

This very blog is without a doubt awesome as well as factual. I have discovered a lot of handy things out of this amazing blog. I ad love to go back again soon. Thanks a bunch!

# DiXDqofqNVvCGxNm

wow, awesome blog post.Really looking forward to read more. Really Great.

# fDVLYnFmjBMlDbPdg

wonderful issues altogether, you just won a new reader. What could you suggest about your publish that you made some days ago? Any positive?
2019/05/12 21:03 | https://www.ttosite.com/

# YqilAHGsQc

Looking around While I was surfing yesterday I saw a excellent post about
2019/05/13 0:49 | https://www.mjtoto.com/

# YELazNpXBrbFgSJ

This is a great tip especially to those new to the blogosphere. Short but very accurate information Many thanks for sharing this one. A must read article!

# AyUyFlXwPLH

It as going to be ending of mine day, except before finish I am reading this great article to increase my knowledge.

# RTybxxsQVE

Well I sincerely liked studying it. This tip procured by you is very useful for accurate planning.

# IfYETdgptWBF

I value the post.Really looking forward to read more. Fantastic.
2019/05/14 19:24 | https://www.dajaba88.com/

# LOIxmVtdOX

Thanks again for the article post.Much thanks again. Really Great.
2019/05/14 21:12 | https://bgx77.com/

# URtGcKAmfowpfVh

It as hard to find experienced people about this topic, but you seem like you know what you are talking about! Thanks
2019/05/15 0:05 | https://totocenter77.com/

# YjAwzswurPwVmt

Thanks again for the post.Much thanks again. Fantastic.

# BAdJxkaplUqPa

pretty useful stuff, overall I think this is really worth a bookmark, thanks

# YCxzcrrOFNJXoIVQTeq

Thanks for sharing, this is a fantastic article. Great.

# avwdXXaNOdChgqBCLe

This blog is no doubt entertaining as well as diverting. I have found many handy things out of this blog. I ad love to visit it every once in a while. Thanks a lot!

# LFULDFsKvAXSKRUGQ

It is a pity, that now I can not express I hurry up on job. I will be released I will necessarily express the opinion on this question.

# lFGOVkXTRjemZe

Really appreciate you sharing this blog post.Really looking forward to read more. Great.

# HizpAVxzaAfZsiEXNH

There is clearly a lot to realize about this. I suppose you made certain good points in features also.

# ewzysTiPQutoxB

Perfect work you have done, this site is really cool with wonderful information.

# eWphJeeTPQd

This unique blog is no doubt educating as well as amusing. I have found a lot of helpful things out of it. I ad love to go back every once in a while. Thanks!
2019/05/17 4:57 | https://www.ttosite.com/

# FpBrUlRAwSgCnoBEqA

This put up truly made my day. You can not believe just how

# qLYWMNoMsERnfNSLtls

Thanks a lot for sharing this with all people you actually recognize what you are talking about! Bookmarked. Please also consult with my site =). We could have a link exchange contract among us!

# JzLaMDcITxbDHHSulSv

Lovely website! I am loving it!! Will be back later to read some more. I am taking your feeds also.
2019/05/18 8:01 | https://totocenter77.com/

# cgeuIeHXWvHx

Start wanting for these discount codes early, as numerous merchants will start off
2019/05/18 10:21 | https://bgx77.com/

# CaaikCOvFkdBMODs

navigate to this website How do I put rss feeds on a classic blogger template?
2019/05/18 11:49 | https://www.dajaba88.com/

# JQEuYIPnoAyfnipKgf

Wonderful article! We are linking to this particularly great post on our website. Keep up the good writing.
2019/05/18 14:06 | https://www.ttosite.com/

# rCfzGRApmGfz

Thanks for sharing this first-class article. Very inspiring! (as always, btw)
2019/05/21 4:15 | http://www.exclusivemuzic.com/

# lpCwguZwcLlsUq

or understanding more. Thanks for magnificent info

# STPBwCEYsWyKerM

This is one awesome blog post.Really looking forward to read more. Great.
2019/05/22 19:50 | https://www.ttosite.com/

# xFJsJdQDgdfcZt

Only a smiling visitant here to share the love (:, btw outstanding pattern. Make the most of your regrets. To regret deeply is to live afresh. by Henry David Thoreau.
2019/05/23 17:35 | https://www.combatfitgear.com

# PkFLYsNnGM

Look advanced to far added agreeable from you!

# kPIPIuSLYFJ

wow, awesome blog post.Really looking forward to read more. Keep writing.

# NLzOPYyMNYonGKuwp

Thanks a lot for the blog.Much thanks again. Great.
2019/05/24 17:46 | http://tutorialabc.com

# GWfEwcyWRqTrXjB

Major thankies for the blog post. Much obliged.
2019/05/27 18:27 | https://www.ttosite.com/

# ThwresetLFYlQjzTAv

Well I truly enjoyed reading it. This tip offered by you is very practical for accurate planning.
2019/05/27 20:00 | https://bgx77.com/

# bEhHsreCoPaedmXpbx

Paragraph writing is also a fun, if you be acquainted with then you can write or else it is complicated to write.|

# fpvjBBHDByGG

weeks of hard work due to no back up. Do you have any solutions to stop hackers?
2019/05/29 18:11 | http://hmak.org/main/?p=139561

# lAxEPzRzrWgbsuJisc

It as unbreakable to attain knowledgeable nation proceeding this topic however you sound in the vein of you know what you are talking about! Thanks
2019/05/29 23:09 | https://www.ttosite.com/

# yUkwepUhocyLKnKCUO

It as going to be ending of mine day, however before ending I am reading this impressive post to improve my experience.
2019/05/30 4:15 | https://www.mtcheat.com/

# jkVrxKBJsVtq

Really appreciate you sharing this blog article.Thanks Again.

# eoQGDQSZVryPRHGffw

I view something truly special in this site.
2019/05/30 7:22 | https://ygx77.com/

# AGlWxhaWXNY

papers but now as I am a user of net so from now I am

# xFFCYdDzTqKyrnjyE

That is a great tip especially to those new to the blogosphere. Brief but very precise information Many thanks for sharing this one. A must read article!
2019/05/31 16:58 | https://www.mjtoto.com/

# BZNkMMOXNwmKIvhqO

pretty beneficial stuff, overall I consider this is really worth a bookmark, thanks
2019/06/03 19:33 | https://www.ttosite.com/

# nhBxGFMlEorxEayfGg

When i open your Supply it appears to be a ton of rubbish, could be the matter in my portion?
2019/06/04 0:21 | https://ygx77.com/

# emJnaYefcSlxZxe

Utterly indited content, appreciate it for selective information. Life is God as novel. Let him write it. by Isaac Bashevis Singer.

# BdAyxtsmTZaTmZIxq

Regards for this post, I am a big fan of this web site would like to go along updated.
2019/06/05 21:35 | https://www.mjtoto.com/

# qcVsvHzseaA

This unique blog is really cool and also diverting. I have found helluva useful advices out of this amazing blog. I ad love to visit it every once in a while. Cheers!
2019/06/05 23:10 | https://betmantoto.net/

# QjCnceAThYX

Thanks-a-mundo for the blog.Really looking forward to read more. Much obliged.
2019/06/06 1:50 | https://mt-ryan.com/

# wVffTXIxQtrlBZDbdID

You should really control the comments on this site

# rAiqqvnlylYsSj

Wow! This can be one particular of the most helpful blogs We have ever arrive across on this subject. Basically Wonderful. I am also an expert in this topic so I can understand your effort.
2019/06/07 22:26 | https://youtu.be/RMEnQKBG07A

# HvlJDFyLyHqvvDcgm

This website was how do you say it? Relevant!! Finally I ave found something which helped me. Many thanks!
2019/06/08 0:11 | https://totocenter77.com/

# rkGzDvtBXaorFS

You made some decent points there. I looked on the internet for the subject matter and found most people will approve with your website.
2019/06/08 1:49 | https://www.ttosite.com/

# OzgOvIVUJeP

Im no expert, but I think you just crafted a very good point point. You definitely understand what youre talking about, and I can truly get behind that. Thanks for being so upfront and so truthful.
2019/06/08 10:05 | https://betmantoto.net/

# opEzMNeouOQVvEgMS

in a while that isn at the same outdated rehashed material.

# MgJYiDKWOJUJDpNqq

Very good article. I definitely appreciate this site. Thanks!

# AnLwbWoGZAyid

You have some helpful ideas! Maybe I should consider doing this by myself.

# ikIgmEHbbgX

This blog was how do I say it? Relevant!! Finally I have found something which helped me. Appreciate it!

# tumrZvzsZoLZnD

Very good written Very good written article. It will be beneficial to everyone who employess it, as well as myself.

# mTdlfVAVCyVg

I truly appreciate this article.Thanks Again. Much obliged.

# EuTssOvImElyaQS

Lea margot horoscope tarot de marseille gratuit divinatoire

# PurAsCjalllXwHwBj

I truly appreciate this post. I ave been looking all over for this! Thank goodness I found it on Bing. You ave made my day! Thanks again.

# YxljovCKZsWb

wow, awesome blog.Really looking forward to read more. Awesome.

# FPADYjbFCfjxpmnd

Some truly good articles on this web site, appreciate it for contribution.
2019/06/18 21:59 | http://kimsbow.com/

# WdHKWCQGJFLjIOGCsNQ

I will immediately seize your rss feed as I can not in finding your email subscription link or newsletter service. Do you ave any? Kindly permit me know so that I may subscribe. Thanks.

# RQGceUNydGIGCgs

Perfectly, i need Advantageously, the send
2019/06/22 0:51 | https://guerrillainsights.com/

# zlzvNyoRwWOhRIYgPg

Thanks for sharing, this is a fantastic article.Really looking forward to read more. Awesome.
2019/06/24 2:41 | https://www.imt.ac.ae/

# JKOAgAQpCG

This web site definitely has all of the information I wanted about this subject and didn at know who to ask.

# MsMiUNiaAjJv

You got a very excellent website, Sword lily I noticed it through yahoo.

# jNHRTWbolxRWiDvyaWQ

So, avoid walking over roofing how to shingle these panels.

# qoXXjMvtpNqjuaTy

very good publish, i certainly love this website, carry on it

# quqxkSySuTrMQZktj

I was recommended this web site by my cousin. I am not sure whether this post is written by him as nobody else know such detailed about my trouble. You are incredible! Thanks!

# uhVqeOSZcNrNotOEO

This web site truly has all of the information and facts I needed concerning this subject and didn at know who to ask.

# XpobkVRcbYuD

Merely a smiling visitor here to share the love (:, btw great style and design. Justice is always violent to the party offending, for every man is innocent in his own eyes. by Daniel Defoe.

# KEewEwKLUjCt

topic of this paragraph, in my view its actually remarkable for me.

# ShYAxTxACDmAISv

My partner would like the quantity typically the rs gold excellent to acquire a thing that weighs more than people anticipation.
2019/06/28 22:38 | http://eukallos.edu.ba/

# IsuunktXQVlbKknzspE

It as difficult to find knowledgeable people on this topic, however, you sound like you know what you are talking about! Thanks

# xBVjVuQLDTlZlQxNZ

Wanted to drop a remark and let you know your Rss feed isnt working today. I tried including it to my Google reader account but got nothing.

# fRcAgGwFYjcvLgT

Im thankful for the blog article.Much thanks again.

# AxPePQVUSlX

Utterly indited subject material, Really enjoyed studying.

# LhJsWcLtoMVOZ

I went over this web site and I believe you have a lot of wonderful information, saved to my bookmarks (:.

# EzLvDBhovuQ

It as really very complex in this full of activity life to listen news on TV, thus I simply use the web for that reason, and obtain the newest news.

# XxvIojMXCITriJH

wow, awesome post.Much thanks again. Awesome.
2019/07/04 15:04 | http://jb5tourtickets.com

# imPEiqTogxFIHD

Pretty! This has been an incredibly wonderful post. Many thanks for supplying this information.
2019/07/07 19:01 | https://eubd.edu.ba/

# YRXinRhsGJrWGM

simply how much time I had spent for this info! Thanks!

# snQObqBzdxeeQvDv

Perfect just what I was looking for!.
2019/07/08 17:20 | http://bathescape.co.uk/

# uinZnliFwbFlS

prada handbags cheap ??????30????????????????5??????????????? | ????????

# slervYQLIXD

This site was how do I say it? Relevant!! Finally I have found something that helped me. Thanks a lot!

# yCvqICREliHlFKaQZSd

This is one awesome article. Keep writing.

# QkAsCgjHTskogNXE

This unique blog is no doubt educating as well as diverting. I have chosen a lot of helpful stuff out of this blog. I ad love to visit it again soon. Thanks a bunch!

# eqOJwUzApE

Spot on with this write-up, I absolutely think this web site needs far more attention. I all probably be returning to read through more, thanks for the information!
2019/07/10 17:54 | http://dailydarpan.com/

# hxuSLzHQPxUMtMlG

Really appreciate you sharing this article.Thanks Again. Awesome.

# WNvaOMkJLxHtTQYJaG

Well I definitely enjoyed reading it. This subject procured by you is very helpful for accurate planning.

# nIyMXFnahRRjIGh

or understanding more. Thanks for magnificent info

# lkCxWhDFEeVbljVNF

Im obliged for the article post.Really looking forward to read more.

# vfoDEvmfMHqjJ

Your golfing ask to help you arouse your recollection along with improve the

# VHqLUgQKXnaHw

Write more, thats all I have to say. Literally, it seems

# pUgsoIPmNATWcBnmw

pretty beneficial stuff, overall I feel this is really worth a bookmark, thanks

# DeDOAhHjjQRrRUwhIHM

Thanks so much for the article.Thanks Again. Really Great.

# FUyKbblHzNz

I?аАТ?а?а?ll right away seize your rss feed as I can at in finding your email subscription link or newsletter service. Do you have any? Please let me realize in order that I may just subscribe. Thanks.

# qgQIlfkojoVJ

Wow, marvelous blog layout! How long have you been blogging for? you make blogging look easy. The overall look of your website is magnificent, as well as the content!

# PueRIACQpnEaQKGKW

We stumbled over here different website and thought I should check things

# FRHDUTZvoJOKRQ

It as not that I want to copy your web-site, but I really like the design. Could you tell me which theme are you using? Or was it custom made?

# FzdyTIUngBaePlOz

In my opinion you are not right. I am assured. Let as discuss. Write to me in PM, we will talk.
2019/07/16 10:24 | https://www.alfheim.co/

# PtpsLXkuqqeHZ

worldwide hotels in one click Three more airlines use RoutesOnline to launch RFP to airports

# AQhVEaAmXbBgUAHgqS

Muchos Gracias for your post.Much thanks again. Want more.

# ZnZJsrfifBdSV

Thanks-a-mundo for the article.Much thanks again. Fantastic.

# dlluJjJYCPJipNAD

You have made some really good points there. I checked on the net for additional information about the issue and found most individuals will go along with your views on this web site.

# vduWnbqMwwlquH

You have made some decent points there. I checked on the net for additional information about the issue and found most individuals will go along with your views on this web site.

# GXWQdIhyWLvjLbwtHmh

Wow! This could be one particular of the most helpful blogs We have ever arrive across on this subject. Basically Magnificent. I am also an expert in this topic so I can understand your effort.

# oEFyMIuvSsPKSJ

I value the blog.Much thanks again. Great.
2019/07/17 14:43 | http://vicomp3.com

# YYADlVHbTYxzv

Just Browsing While I was surfing today I noticed a excellent article about

# XiHilqZwec

You, my pal, ROCK! I found exactly the information I already searched everywhere and simply couldn at find it. What an ideal web-site.

# jIixCInycLrttW

Major thankies for the article.Thanks Again.

# NvActwdXhw

This blog is obviously cool additionally informative. I have chosen a bunch of useful stuff out of this blog. I ad love to return every once in a while. Thanks a lot!

# dMVBAaBPpDYDBUtxVZH

Wow, wonderful blog structure! How lengthy have you ever been blogging for? you made blogging look easy. The total glance of your website is great, let alone the content material!
2019/07/18 5:48 | http://www.ahmetoguzgumus.com/

# vuhKBcvTBTDS

Major thankies for the article post.Thanks Again. Fantastic.
2019/07/18 14:23 | https://bit.ly/32nAo5w

# qXLlZpTBtYnUCUnS

Ultimately, a problem that I am passionate about. I have looked for details of this caliber for the previous various hrs. Your internet site is tremendously appreciated.

# ZJjhWaphHX

Your style is really unique in comparison to other people I ave read stuff from. Thanks for posting when you ave got the opportunity, Guess I all just bookmark this web site.

# DsKnWgWmvyHvpKkAgX

IaаАа?б?Т€Т?а?а?аАа?б?Т€Т?аБТ?m glad to become a visitor in this pure internet site, regards for this rare info!

# YifCQUIfPOGXy

Pretty! This has been a really wonderful post. Thanks for providing this info.

# aHfgQNXoapByxZp

There as definately a lot to learn about this topic. I like all the points you made.
2019/07/23 5:46 | https://fakemoney.ga

# MVSEqRVNLMGLCC

Wohh precisely what I was looking for, thankyou for putting up. If it as meant to be it as up to me. by Terri Gulick.

# gyCMxGovebBAxrrnt

Outstanding post, I conceive people should learn a lot from this weblog its real user genial. So much wonderful information on here :D.

# wdmITaMbZfdxABof

Pretty! This was a really wonderful article. Many thanks for providing this information.

# tIuILSlSwp

Major thanks for the article post.Really looking forward to read more. Great.

# CMJlHQWrcyaowSPyJ

Wow, superb blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your website is excellent, let alone the content!

# jYpUgCkiRrUqJm

Just a smiling visitor here to share the love (:, btw outstanding pattern. Everything should be made as simple as possible, but not one bit simpler. by Albert Einstein.

# IWWFJCuBfDim

Very good blog.Really looking forward to read more. Really Great.

# SlHPdALzvDHwg

some truly fantastic articles on this website , thanks for contribution.

# TKBOcAyEwtVQCba

I think other web-site proprietors should take this website as an model, very clean and magnificent user friendly style and design, as well as the content. You are an expert in this topic!

# mbZIQkmpqBsKrC

This is my first time go to see at here and i am really happy to read everthing at alone place.|

# WJcYkEyBPGBVg

we should highly recommand it for keeping track of our expenses and we will really satisfied with it.

# HaORVCopQnoejhXUkY

I will right away clutch your rss feed as I can not find your email subscription hyperlink or e-newsletter service. Do you ave any? Kindly permit me recognize in order that I may subscribe. Thanks.

# UVhfanUPzbs

Well I truly liked reading it. This article provided by you is very helpful for correct planning.

# xwBSnRqhox

Wonderful opinions you ave got here.. I appreciate you discussing your perspective.. Fantastic views you might have here.. Definitely handy viewpoint, many thanks for giving..

# dImjgTvkgxMNZg

Only wanna admit that this is invaluable , Thanks for taking your time to write this.

# rksAHOBaOBcGm

kindle fire explained by Amazon CEO Jeff Bezos Got An kindle fire specs Idea ? In This Case Study This.

# JRrMIrzMLObGPIIw

I was suggested this blog by my cousin. I am not sure whether this post is written by him as nobody else know such detailed about my problem. You are amazing! Thanks!
2019/07/26 16:14 | https://seovancouver.net/

# BqenAwTxYJQLFubF

It is not my first time to pay a quick visit this site,

# PcKxSkEDScDjFCaeq

This excellent website certainly has all the info I wanted about this subject and didn at know who to ask.

# UJwDOdPCHvtOvlPqm

I think this is a real great article post. Great.

# LywLpehQSs

Some really excellent info, Gladiola I noticed this.

# RaCRlaYOFoaStb

Looking forward to reading more. Great blog.Thanks Again. Fantastic.

# zAZbeUMmro

There is visibly a bundle to realize about this. I suppose you made some good points in features also.

# kflXqVzeDABxMhAVah

Many thanks for sharing this excellent post. Very inspiring! (as always, btw)

# zteSOmouPZt

I truly appreciate this blog post.Really looking forward to read more. Really Great.

# oBXnyypjgmpNUcKc

VeаА аБТ?y goo? post. I certaаАа?б?Т€Т?nly appаА аБТ?аА а?а?ciate

# dEhkibjqNcZ

This is one awesome post.Much thanks again. Great.

# MosyVMnmGFrRmADhb

usually posts some very exciting stuff like this. If you are new to this site

# BLELKbpaAGWegYRYFoW

It as hard to come by educated people for this topic, but you seem like you know what you are talking about! Thanks

# MKFAotxZqRVEPYiBWUh

Secondary moment My partner and i acquired and then both of those events happy with %anchor% When important I most certainly will arrangement as a result supplier once again..Fantastic occupation.

# zMHwTjmYFuhv

Utterly written content material, Really enjoyed examining.

# yFCytIbuDAwMLDZvo

Inspiring story there. What happened after? Take care!

# sLxWsWekoPrpvuHj

Thanks again for the blog article.Really looking forward to read more. Great.

# JfWWPQYqZdeuFOrh

Just what I was searching for, thanks for posting. If you can imagine it,You can achieve it.If you can dream it,You can become it. by William Arthur Ward.

# zfSjzqKERDipVCpHNM

It as exhausting to seek out knowledgeable individuals on this subject, but you sound like you understand what you are speaking about! Thanks

# NVfoTQkkHdhbdpb

Really informative blog article.Much thanks again. Want more.

# LhzQOOwaxvOyxmoBB

Thanks for sharing, this is a fantastic post.Really looking forward to read more. Awesome.

# VjriwwnagiAQdM

wow, awesome article.Much thanks again. Want more.

# hXTMiFVysOHCMWKpE

Im obliged for the post.Really looking forward to read more.

# NgSUBgIBLbCJFS

It as not that I want to replicate your web site, but I really like the layout. Could you tell me which theme are you using? Or was it tailor made?

# FXblQNBXbWHoOY

Thanks for the article.Thanks Again. Great.

# DiTmnpXzNe

This very blog is no doubt awesome as well as diverting. I have found helluva helpful stuff out of this blog. I ad love to return again and again. Thanks!

# jEoDtwXzwA

Looking forward to reading more. Great article.Thanks Again. Keep writing.

# pgqsuyjgWCDnDjEPxup

Some really excellent content on this internet site , thanks for contribution.

# QsBrrAWMgqPHYp

Very good write-up. I absolutely appreciate this website. Thanks!

# mZiQoUaXTz

This particular blog is without a doubt entertaining additionally diverting. I have picked a lot of helpful advices out of this source. I ad love to go back over and over again. Thanks a bunch!

# iflgybaxIDuUOomz

You are my intake , I have few web logs and rarely run out from to post.

# GtOnncJgnooIQuFt

We stumbled over here from a different web address and thought I might check things out. I like what I see so i am just following you. Look forward to looking over your web page repeatedly.

# shULiZbVNm

Right here is the perfect webpage for everyone who would like to understand this topic.

# UfVuGgJWIrCosWQ

This is a excellent blog, would you be involved in doing an interview about just how you designed it? If so e-mail me!

# nDLiihaqMbaSnrqLgJC

We appreciate, result in I ran across what exactly I had been seeking. You could have wrapped up my own Some evening extended quest! Our god Bless you man. Use a fantastic time. Ok bye

# DtGgSSKGGjmWa

Im obliged for the article.Much thanks again.
2019/07/31 14:48 | https://bbc-world-news.com

# wgTrDqLpJXvzHsKEP

Thanks-a-mundo for the blog article.Really looking forward to read more. Keep writing.

# pDAvvFntwGj

Sounds like anything plenty of forty somethings and beyond ought to study. The feelings of neglect is there in a lot of levels every time a single ends the mountain.

# PUlpXcSFwPW

This unique blog is no doubt entertaining and also informative. I have chosen many helpful advices out of this amazing blog. I ad love to return over and over again. Thanks!

# kORsQrUhzGm

Wonderful post! We will be linking to this particularly great content on our site. Keep up the great writing.

# MKMtCwLzJMVNWSfjmXf

This unique blog is really awesome as well as factual. I have discovered a lot of useful tips out of this amazing blog. I ad love to come back over and over again. Cheers!
2019/08/07 4:04 | https://seovancouver.net/

# ykUxLciplpt

This is one awesome blog.Really looking forward to read more. Will read on...
2019/08/07 13:01 | https://www.bookmaker-toto.com

# qhTZrHLdcGfGHfNP

There is clearly a bunch to realize about this. I feel you made various good points in features also.
2019/08/07 15:02 | https://seovancouver.net/

# oVgcRQPVwOBDlFoxJx

you ave an amazing blog right here! would you wish to make some invite posts on my weblog?

# zeLtWHAsHHARbalURAm

I think other site proprietors should take this site as an model, very clean and magnificent user friendly style and design, let alone the content. You are an expert in this topic!

# PGsStpHMFmcUqEizA

My brother recommended I would possibly like this blog. He was entirely right. This post actually made my

# UsOnvrcfteHzlTYloXP

Wohh precisely what I was searching for, thanks for putting up.
2019/08/08 17:45 | https://seovancouver.net/

# MXDvkobLWpyQFTo

This article actually helped me with a report I was doing.
2019/08/08 19:45 | https://seovancouver.net/

# QvYphwSkWihhSO

There is definately a great deal to learn about this issue. I like all the points you ave made.

# rcAWtKwtXCWcFQLOS

Really appreciate you sharing this article.Really looking forward to read more. Really Great.
2019/08/12 21:02 | https://seovancouver.net/

# mUfCYGyqQYF

You should take part in a contest for one of the best blogs on the web. I will recommend this site!
2019/08/13 3:07 | https://seovancouver.net/

# JLDkpnCNXMkbM

Thanks for the post.Much thanks again. Great.

# ApKMnbSNfkwTAaKko

Wow, wonderful blog layout! How long have you been running a blog for? you make blogging glance easy. The entire glance of your web site is great, as well as the content!

# DvqbePgnTutRQccOED

Spot on with this write-up, I truly suppose this website wants way more consideration. I all in all probability be again to learn much more, thanks for that info.

# rGVEkjUlWAkMXZj

to stay updated with approaching post. Thanks a million and please continue the enjoyable work.

# THTurCAjoAktGD

together considerably far more and a lot more typical and it may very well be primarily an extension of on the internet courting

# pesKJTssidGO

Woh I your articles , saved to bookmarks !.

# CIRHPtmBhvSmBcwpC

Loving the info on this website , you have done outstanding job on the articles.
2019/08/19 0:13 | http://www.hendico.com/

# NdmCmvbYgqpX

Wow, great article.Really looking forward to read more. Fantastic.

# zyQBDeknKCcE

So happy to possess located this publish.. Terrific opinions you have got here.. I enjoy you showing your perspective.. of course, analysis is paying off.

# DKYslowxIDox

Just Browsing While I was browsing today I noticed a great article about
2019/08/20 11:56 | http://siphonspiker.com

# TGpjRsyntFWQhTo

Incredible! This blog looks just like my old one! It as on a completely different subject but it has pretty much the same page layout and design. Outstanding choice of colors!

# nXHrOmIekbCm

Pretty! This has been an incredibly wonderful article. Thanks for supplying this info.
2019/08/20 22:33 | https://seovancouver.net/

# XmXteNJOFvGbTeq

What aаАа?б?Т€а? Going down i am new to this, I stumbled upon this I avаА а?а? found
2019/08/21 2:51 | RQoTyZPpJfedWqBBa

# OxPwqFDwwA

It as impressive that you are getting ideas from this article as well as from our dialogue made here.

# SUFyUAaVlsqvzSrm

Well I definitely enjoyed reading it. This subject procured by you is very effective for good planning.

# PTlmtmvuCLM

It as very straightforward to find out any matter on net as compared to books, as I found this article at this web page.

# isZuwPEjWKOTjRUsZt

Incredible! This blog looks just like my old one! It as on a totally different topic but it has pretty much the same page layout and design. Wonderful choice of colors!

# nZUbcbjpobxqBpfcKaj

wow, awesome article post.Much thanks again. Want more.

# VljIeIjowcQwdj

Wow, that as what I was seeking for, what a material! existing here at this web site, thanks admin of this website.

# aHQcEXfwfBvzUjOGto

Terrific work! This is the type of information that should be shared around the internet. Shame on Google for not positioning this post higher! Come on over and visit my website. Thanks =)
2019/08/26 21:19 | https://mosume.dreamwidth.org/

# AzDcZeVMdfmOQzVpsRb

Wow, marvelous weblog structure! How lengthy have you been blogging for? you made running a blog glance easy. The total glance of your web site is great, let alone the content material!

# cVjjpCcWlRoXrsS

It as hard to find expert persons by this matter, then again you sound like you already make out what you are talking about! Thanks
2019/08/27 3:57 | http://gamejoker123.org/

# dEGcsgoMZp

There is certainly a great deal to find out about this subject. I like all the points you ave made.

# mOdhibhkYEMX

This internet internet page is genuinely a walk-through for all of the information you wanted about this and didn at know who to ask. Glimpse here, and you will surely discover it.

# DpUtXdXEDDemMcIjdrQ

This is a topic that is near to my heart Cheers! Exactly where are your contact details though?

# OWJoqQxrpUhgaoo

I think this is a real great blog.Really looking forward to read more. Great.

# BgYwwhBBpX

Thanks so much for the blog.Much thanks again. Want more.

# RgCZGNChKeoZgEqlA

pretty practical stuff, overall I feel this is worth a bookmark, thanks

# uTXzbDLUvrESRiTGA

You must take part in a contest for probably the greatest blogs on the web. I all recommend this web site!

# HmezjExjldPYhJT

pretty helpful material, overall I think this is worthy of a bookmark, thanks

# FiMEnhqYgeXvYbyog

Thanks-a-mundo for the blog article.Much thanks again. Keep writing.

# ApjdlvQXCpNRAuQQv

It as hard to come by educated people in this particular subject, but you seem like you know what you are talking about! Thanks
2019/09/02 19:42 | http://gamejoker123.co/

# dKRtvazoozdAjQuz

Thanks so much for the blog post.Much thanks again. Great.
2019/09/03 17:07 | https://www.siatexbd.com

# CKrCkkKDECUEaSucSe

Very neat article.Much thanks again. Awesome.

# rckvslmwTbWNGzzKx

This particular blog is obviously entertaining and also diverting. I have chosen helluva helpful advices out of this amazing blog. I ad love to come back over and over again. Thanks a bunch!
2019/09/04 11:15 | https://seovancouver.net

# JRpAwceyOWYh

There is definately a great deal to learn about this issue. I like all the points you ave made.

# Woah! I'm really loving the template/theme of this site. It's simple, yet effective. A lot of times it's difficult to get that "perfect balance" between superb usability and appearance. I must say you have done a awesome job with this. Also, t

Woah! I'm really loving the template/theme of this site.
It's simple, yet effective. A lot of times it's difficult to get that "perfect balance"
between superb usability and appearance. I must say
you have done a awesome job with this. Also, the blog loads super fast for me on Safari.
Excellent Blog!

# OveeNYDGZQ

Thanks-a-mundo for the blog article.Thanks Again. Keep writing.

# XPtoTBmLiVb

These challenges can be uncomplicated to choose treatment of if you see your dentist swift.

# aNJFMVrVLIFmRLWYM

You could definitely see your enthusiasm in the work you write. The world hopes for more passionate writers like you who are not afraid to say how they believe. Always go after your heart.
2019/09/11 4:40 | http://appsforpcdownload.com

# PwNXRyCDIeAUzpaM

Major thanks for the article post.Much thanks again. Awesome.
2019/09/11 7:49 | http://freepcapks.com

# ShfAlehNbLmEODWlof

This is one awesome article post.Much thanks again. Fantastic.
2019/09/11 10:13 | http://downloadappsfull.com

# eKhIlFuWHoeg

Real good info can be found on website. Even if happiness forgets you a little bit, never completely forget about it. by Donald Robert Perry Marquis.
2019/09/11 12:34 | http://windowsapkdownload.com

# nwrMzLHhQdG

Wonderful blog! I found it while searching on Yahoo
2019/09/11 14:56 | http://windowsappdownload.com

# kzzkrKmVEDkrXj

Thanks a lot for the article. Keep writing.

# eMNLSkAzdcZAYCcZ

Spot on with this write-up, I actually feel this web site needs a
2019/09/11 17:57 | http://windowsappsgames.com

# hmHgwpkCECc

You made some respectable points there. I looked on the internet for the issue and found most people will go along with with your website.
2019/09/11 21:25 | http://pcappsgames.com

# TdtaHwTCHToAf

Pretty! This was an extremely wonderful post. Many thanks for supplying these details.
2019/09/12 4:08 | http://freepcapkdownload.com

# ozysgBtjFknqksctgLe

You ave made some decent points there. I checked on the net for more information about the issue and found most people will go along with your views on this web site.

# mQaZcpTEggSpYh

I think other site proprietors should take this web site as an model, very clean and fantastic user friendly style and design, as well as the content. You are an expert in this topic!

# lvfjaupcdRZJM

Thanks-a-mundo for the article.Thanks Again.

# tmotiJHvJRhvyavdx

Some times its a pain in the ass to read what blog owners wrote but this site is really user genial !.
2019/09/12 16:09 | http://windowsdownloadapps.com

# kyxrgIieCViZqyvmwd

Thanks for sharing, this is a fantastic article.Thanks Again.

# BNEcHVnEZWRTz

pretty beneficial material, overall I believe this is worthy of a bookmark, thanks

# vNIpdvvfAaA

This site was how do I say it? Relevant!! Finally I have found something that helped me. Thanks!
2019/09/13 16:54 | https://seovancouver.net

# WWmxNdmqzyOpskdXBt

Si vous etes interesse, faites le pas et contactez un des mediums qui fait partie de notre centre d aastrologie et laissez-vous predire votre futur.
2019/09/13 20:12 | https://seovancouver.net

# qFZUVAnVKW

This is a really good tip especially to those new to the blogosphere. Simple but very precise info Appreciate your sharing this one. A must read post!

# NGyLypjzMSUKyphzoZ

Thanks, Your post Comfortably, the article

# SjkAlckyvMrQusMlb

Some really prime content on this web site , saved to fav.

# MUERVzLHEHG

Thanks-a-mundo for the article.Really looking forward to read more. Really Great.

# MlVcOCoDhbRkq

Looking forward to reading more. Great post.Much thanks again.

# lDlnvSlGrLDOZEQac

you have an excellent weblog right here! would you prefer to make some invite posts on my weblog?

# RQehuFDdGyq

the net. I am going to recommend this blog!
2019/09/15 17:15 | https://gitlab.com/Deeng1991

# mYMCcogGQBWZVd

It as not that I want to duplicate your web-site, but I really like the pattern. Could you tell me which design are you using? Or was it custom made?

# JIQBRGlUeUSuVv

Really informative article.Thanks Again. Really Great.

# nYmdISLWHbIqp

You made some decent points there. I did a search on the topic and found most people will agree with your website.

# yosyYTfMnrPpUnf

We stumbled over here from a different web address and thought I might check things out. I like what I see so i am just following you. Look forward to looking over your web page repeatedly.

# erectile bands

what is hydroxychloride https://plaquenilx.com/# can hydroxychloroquine
2021/07/06 10:31 | hydroxochloriquine

# re: C# ? VB ????????

where to get chloroquine https://chloroquineorigin.com/# hcqs tablet

# re: C# ? VB ????????

cloroquina 250 mg https://chloroquineorigin.com/# hydroxychloroquine usmle

# re: C# ? VB ????????

cloraquinn https://chloroquineorigin.com/# hydroxychloroquine sulfate 200 mg tab
2021/07/25 18:57 | hydroxycloraquine

# bfmvubuhqftf

erythromycin ophth oint 3.5gm http://erythromycin1m.com/#
2022/05/31 0:07 | mmbacwvy

# generic chloroquine online

https://www.hydroxychloroquinex.com/ aralen price usa
2022/12/27 7:38 | MorrisReaks

コメントの投稿

タイトル
名前
URL
コメント