Jump to content

My color picker


xzaz
 Share

Recommended Posts

I made this because i didn't like the other ones. :) And i never worked with pixelsearch and mousepositions :)

Hope you guys like it ^_^

#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.2.10.0
 Author:         www.xzaz.nl

 Script Function:
    Color picker / chooser and copy to clipboard

#ce ----------------------------------------------------------------------------
#NoTrayIcon
#Include <Misc.au3>
#include <GUIConstants.au3>
#include <Color.au3>
$dll = DllOpen("user32.dll")
Global $return = 0                                                                      ; 0 is aan 1 is uit
Global $copy = 0                                                                        ; 0 is niks, 1 is RGB, 2 is HEX
Global $titel = "colorcopy"
Global $pixmouseget,$color,$colorpick,$colortxt,$RGB_check,$HEX_check,$movelabel,$hexcolor  ;Globals voor functies

;==> Begin GUI
$gui = GUICreate($titel,100,100,(@DesktopWidth - 100)/2,(@DesktopHeight - 100) /2,BitOR($WS_POPUP,$WS_BORDER),$WS_EX_TOPMOST) 
$movelabel = GuiCtrlCreateLabel("",0,0,100,15)
;GUICtrlCreateLabel ( "text", left, top [, width [, height [, style [, exStyle]]]] )
$colortxt = GuiCtrlCreateLabel("hex color",0,40,99,30,$SS_CENTER)
GuiCtrlSetState(-1,$GUI_HIDE) 
$colorrgbtxt = GuiCtrlCreateLabel("rgb color",0,40,99,30,$SS_CENTER)
GuiCtrlSetState(-1,$GUI_HIDE)
$RGB_check = GUICtrlCreateRadio ("RGB", 5, 10,70)
$HEX_check = GUICtrlCreateRadio ("HEX", 5, 30,70)
$colorpick = GuiCtrlCreateButton("color-pick",10,60,80)
GUICtrlSetState ($RGB_check, $GUI_CHECKED)
GUISetState (@SW_SHOW)    
;== Einde GUI 

;==> Begin While
While 1
    $msg = GUIGetMsg()
    Switch $msg
    Case $GUI_EVENT_CLOSE
        DllClose($dll)
        ExitLoop
    Case $colorpick
        ; zet GUI uit
        GUICtrlSetState($colorpick,$GUI_HIDE)
        GuiCtrlSetState($RGB_check,$GUI_HIDE)
        GuiCtrlSetState($HEX_check,$GUI_HIDE)
         
    if BitAND(GUICtrlRead($RGB_check), $GUI_CHECKED) = $GUI_CHECKED Then
        $copy = 1
        GuiCtrlSetState($colorrgbtxt,$GUI_SHOW)
    Elseif BitAnd(GUiCtrlRead($HEX_check), $GUI_CHECKED) = $GUI_CHECKED Then
        $copy = 2
        GuiCtrlSetState($colortxt,$GUI_SHOW)
    Else
        MsgBox(16,"Error!","Foutje: 1")
        Exit 0
    Endif
    $currentpos = WinGetPos($titel) 
    WinMove($Titel,"",$currentpos[0],$currentpos[1],100,60)
    
    Do
        Sleep(50)
        _Colorpickfun()
    Until $return = 1
    GUICtrlSetState($colorpick,$GUI_SHOW)
    GuiCtrlSetState($RGB_check,$GUI_SHOW)
    GuiCtrlSetState($HEX_check,$GUI_SHOW)
    
    GuiCtrlSetState($colortxt,$GUI_HIDE)
    GuiCtrlSetState($colorrgbtxt,$GUI_HIDE)
    

    
        if Stringleft($hexcolor,1) = 0 OR Stringleft($hexcolor,1) = 1 OR Stringleft($hexcolor,1) = 2 OR Stringleft($hexcolor,1) = 3 OR Stringleft($hexcolor,1) = 4 OR Stringleft($hexcolor,1) = 5 OR Stringleft($hexcolor,1) = 6 OR Stringleft($hexcolor,1) = 7 OR Stringleft($hexcolor,1) = 8 OR Stringleft($hexcolor,1) = 9 OR Stringleft($hexcolor,1) = 0  Then
    GUICtrlSetColor($RGB_check,0xFFFFFF)
    GUICtrlSetColor($HEX_check,0xFFFFFF)
    
    Endif
    
    if StringLeft($hexcolor,1) = "A" OR Stringleft($hexcolor,1) = "B" OR Stringleft($hexcolor,1) = "C" OR Stringleft($hexcolor,1) = "D" OR Stringleft($hexcolor,1) = "E" OR Stringleft($hexcolor,1) = "F" Then
    GUICtrlSetColor($RGB_check,0x000000)
    GUICtrlSetColor($HEX_check,0x000000)
    Endif
    
    $currentpos = WinGetPos($titel) 
    WinMove($Titel,"",$currentpos[0],$currentpos[1],100,100)
    $return = 0
    if $copy = 1 Then ; RGB copy
        ClipPut(GuiCtrlRead($colorrgbtxt))
    Elseif $copy = 2 Then ;HEX copy
    ClipPut(hex($pixmouseget,6))
    Else
    msgBox(16,"Error!","Foutje: 2")
    Endif 

    Case $movelabel
        _Drag()
    EndSwitch
Wend
;==> End While

;==>Voor het kiezen van een kleur buiten het programma om, END om het programma te stoppen
func _Colorpickfun()
        $mousepos = MouseGetPos()
        $pixmouseget = PixelGetColor($mousepos[0],$mousepos[1])
        $hexcolor = hex($pixmouseget,6)
        ;MsgBox(0,"",Stringleft($hexcolor,1))
        ;a b c d e f
    
    if Stringleft($hexcolor,1) = 0 OR Stringleft($hexcolor,1) = 1 OR Stringleft($hexcolor,1) = 2 OR Stringleft($hexcolor,1) = 3 OR Stringleft($hexcolor,1) = 4 OR Stringleft($hexcolor,1) = 5 OR Stringleft($hexcolor,1) = 6 OR Stringleft($hexcolor,1) = 7 OR Stringleft($hexcolor,1) = 8 OR Stringleft($hexcolor,1) = 9 OR Stringleft($hexcolor,1) = 0  Then
    _number(0xFFFFFF)
    Endif
    
    if StringLeft($hexcolor,1) = "A" OR Stringleft($hexcolor,1) = "B" OR Stringleft($hexcolor,1) = "C" OR Stringleft($hexcolor,1) = "D" OR Stringleft($hexcolor,1) = "E" OR Stringleft($hexcolor,1) = "F" Then
    _number(0x000000)
    Endif
            If _IsPressed("23", $dll) Then
                $return = 1
            EndIf
EndFunc
;==> Einde

Func _number($colorchance)
        if $copy = 1 Then ;RGB
        GUICtrlSetColor($colorrgbtxt,$colorchance)
        GuiSetBKColor($pixmouseget)
        $iRedColor = _ColorGetRed( $pixmouseget ) ;Red
        $iGreenColor = _ColorGetGreen ( $pixmouseget ) ;Green
        $iBlueColor = _ColorGetBlue ( $pixmouseget ) ;$Blue
        GuictrlSetData($colorrgbtxt,$iRedColor & "," & $iGreenColor & "," & $iBlueColor)
        Elseif $copy = 2 Then ;Hex
        GUICtrlSetColor($colortxt,$colorchance)
        GuiSetBKColor($pixmouseget)
        GuictrlSetData($colortxt,hex($pixmouseget,6))
        Endif
EndFunc

Func _Drag()
    dllcall("user32.dll","int","ReleaseCapture")
    dllcall("user32.dll","int","SendMessage","hWnd", $gui,"int",$WM_NCLBUTTONDOWN,"int", $HTCAPTION,"int", 0)
EndFunc

=============================
www.xzaz.nl dec 2007 (v0.4)

Chancelog: 

19 dec 2007: Smaller GUI
20 dec 2007: When dark color chance to lighter txt
20 dec 2007: Improved GUI, move window, added: BRG color mode

=============================
1. Press your colorpicker.exe
2. Click
2. Press on the button "color-pick"
3. Get on top of the color you want
4. press the "END" key. 
5. Press Ctrl+v to paste your color
=============================
Edited by xzaz
Link to comment
Share on other sites

I've tested it out, and it works quite reasonably. :) The way the text color changes dependent on the color is very nice.

I have had problems closing it, I've tried to click the GUI and press Escape but that did not work. Also, the difference between 'RGB' mode and 'HEX' mode was not immediately clear. Since the hex is just a different representation of the RGB color. ^_^

Just reading over the code, it is a bit overcomplicated for a simple color picker. It also does not work quite as I had expected, because it did not close on Escape. Also, I can not get the color of a pixel that is in the middle of the screen..

Link to comment
Share on other sites

I've tested it out, and it works quite reasonably. :) The way the text color changes dependent on the color is very nice.

Tnx ^_^

I have had problems closing it, I've tried to click the GUI and press Escape but that did not work. Also, the difference between 'RGB' mode and 'HEX' mode was not immediately clear. Since the hex is just a different representation of the RGB color. :)

When you getting your code, you can end it with the "END" button. When you select the window you can just press "ESC" and close it. Any suggestions to do this otherwise?

Just reading over the code, it is a bit overcomplicated for a simple color picker. It also does not work quite as I had expected, because it did not close on Escape. Also, I can not get the color of a pixel that is in the middle of the screen..

1. Feel free to modify and edit the code to make it less complicated.

2. True i need some other exit flow

3. Why cant you get the pixel that is in the middle of the screen? You can move the window with the pressing and holding the upper top of the window.

very nice! Have you tried mine? ;) (check sig)

Tnx, yhe i saw that one like it to ;)
Link to comment
Share on other sites

Very nice but .........

1. I can't close it down (stop the program)

2. Why not have a handle on the information window so you can move it out of the way

3. why not put in the info window, "press end to copy code to clipboard"

4. you can have multiple copies of the program rubbing at same time.

Link to comment
Share on other sites

Very nice but .........

1. I can't close it down (stop the program)

2. Why not have a handle on the information window so you can move it out of the way

3. why not put in the info window, "press end to copy code to clipboard"

4. you can have multiple copies of the program rubbing at same time.

Tnx :)

1. Yes you can close it, read "leesmij.txt"

2. You CAN move it, when you are at the option menu (RGB or HEX) click and drag on the TOP of the window

3. I want to hold it small, these kind of programs have to be small.

4. Why do you want that, you dont work in both ways (RGB and HEX)

Link to comment
Share on other sites

I can't close the program and I can't see anything in the program that closes it - I've given up.

If _IsPressed("23", $dll) Then
                $return = 1
            EndIfoÝ÷ Ù«­¢+Ù¼(íѡչѥ½¸)U¹Ñ¥°ÀÌØíÉÑÕɸôoÝ÷ Û^Ø^zwb²Þ²Ç¶¢Z(§¥·×N­²0ʶªº¢Z+¦'$x*ºVéò¢ëç-¶°whÃ*.q©é­ë, ±Æ©zÚק¶*ÞJf¥ê]j׺Ú"µÍØÜÈKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKB]]Ò]Ú[ÛËL]]ÜÝÝË^ØÜ[Ý[ÛÛÛÜXÚÙÈÚÛÜÙ[ÛÜHÈÛØØÙHKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKBÓÕ^RXÛÛÒ[ÛYH  ÓZØË]LÉÝÂÚ[ÛYH  ÑÕRPÛÛÝ[Ë]LÉÝÂÚ[ÛYH  ÐÛÛÜ]LÉÝÂÌÍÙHÜ[  ][ÝÝÙÌ  ][ÝÊBÛØ[    ÌÍÜ]HÈÈX[HÈZ]ÛØ[    ÌÍØÛÜHHÈÈZÜËHÈÐÈVÛØ[  ÌÍÝ][H   ][ÝØÛÛÜÛÜI][ÝÂÛØ[    ÌÍÝ][Ú[ÙHH ][ÝÐÛÛÜXÚÙÉ][ÝÂÛØ[  ÌÍÜ^[ÝÙYÙ]    ÌÍØÛÛÜ    ÌÍØÛÛÜXÚË   ÌÍØÛÛÜ    ÌÍÔÐØÚXÚË   ÌÍÒVØÚXÚË    ÌÍÛ[Ý[X[    ÌÍÚ^ÛÛÜ   ÌÍØÛÛÜXÚÙYÑÛØ[ÈÛÜ[ÝYÂÏOIÝÈYÚ[ÕRBÌÍÙÝZHHÕRPÜX]J   ÌÍÝ][LL
ÚÝÜÚYHL
KÌ
ÚÝÜZYÚHL
HÌ]Ô  ÌÍÕÔ×ÔÔT ÌÍÕÔ×ÐÔTK    ÌÍÕÔ×ÑVÕÔSÔÕ
BÌÍÛ[Ý[X[HÝZPÝÜX]SX[
    ][ÝÉ][ÝËLMJBÑÕRPÝÜX]SX[
    ][ÝÝ^ ][ÝËYÜËÚYËZYÚËÝ[HË^Ý[WWWWH
BÌÍØÛÛÜHÝZPÝÜX]SX[
    ][ÝÚ^ÛÛÜ][ÝË
NKÌ    ÌÍÔÔ×ÐÑSTBÝZPÝÙ]Ý]JLK    ÌÍÑÕRWÒQJBÌÍØÛÛÜØHÝZPÝÜX]SX[
    ][ÝÜØÛÛÜ][ÝË
NKÌ    ÌÍÔÔ×ÐÑSTBÝZPÝÙ]Ý]JLK    ÌÍÑÕRWÒQJBÌÍÔÐØÚXÚÈHÕRPÝÜX]TY[È
    ][ÝÔÐ][ÝË
KL
Ì
BÌÍÒVØÚXÚÈHÕRPÝÜX]TY[È
    ][ÝÒV ][ÝË
KÌ
Ì
BÌÍØÛÛÜXÚÈHÝZPÝÜX]P]Û   ][ÝÔXÚÈ[ÝÛÛÜÌÌÎÉ][ÝËL
N
BÌÍØÛÛÜXÚÙYHÝZPÝÜX]SX[
    ][ÝÉ][ÝË
KLÌ    ÌÍÔÔ×ÐÑSTBÕRPÝÙ]ÐÛÛÜ  ÌÍØÛÛÜXÚÙYBÕRPÝÙ]Ý]H
    ÌÍÔÐØÚXÚË   ÌÍÑÕRWÐÒPÒÑQ
BÕRTÙ]Ý]H
Õ×ÔÒÕÊHÏOHZ[HÕRBÏOIÝÈYÚ[Ú[BÚ[HB   ÌÍÛÙÈHÕRQÙ]ÙÊ
BÝÚ]Ú    ÌÍÛÙÂØÙH ÌÍÑÕRWÑUSÐÓÔÑBÛÜÙJ  ÌÍÙ
B^]ÛÜØÙH    ÌÍØÛÛÜXÚÂÈ]ÕRHZ]ÕRPÝÙ]Ý]J ÌÍØÛÛÜXÚË   ÌÍÑÕRWÒQJBÝZPÝÙ]Ý]J    ÌÍÔÐØÚXÚË   ÌÍÑÕRWÒQJBÝZPÝÙ]Ý]J    ÌÍÒVØÚXÚË    ÌÍÑÕRWÒQJBBQÝZPÝÙ]Ý]J  ÌÍØÛÛÜXÚÙY  ÌÍÑÕRWÒQJBY]S
ÕRPÝXY
    ÌÍÔÐØÚXÚÊK  ÌÍÑÕRWÐÒPÒÑQ
HH  ÌÍÑÕRWÐÒPÒÑQ[   ÌÍØÛÜHHBÝZPÝÙ]Ý]J  ÌÍØÛÛÜØ  ÌÍÑÕRWÔÒÕÊB[ÙZY][
ÕZPÝXY
    ÌÍÒVØÚXÚÊK   ÌÍÑÕRWÐÒPÒÑQ
HH  ÌÍÑÕRWÐÒPÒÑQ[   ÌÍØÛÜHHÝZPÝÙ]Ý]J   ÌÍØÛÛÜ    ÌÍÑÕRWÔÒÕÊB[ÙBÙÐÞ
M   ][ÝÑÜÌÌÎÉ][ÝË  ][ÝÑÝ]NI][ÝÊB^][Y  ÌÍØÝ[ÜÈHÚ[Ù]ÜÊ    ÌÍÝ][
HÚ[[ÝJ    ÌÍÕ][    ][ÝÉ][ÝË    ÌÍØÝ[ÜÖÌK    ÌÍØÝ[ÜÖÌWKL

BÂÛY
L
BÐÛÛÜXÚÙ[
B[[ ÌÍÜ]HBÕRPÝÙ]Ý]J  ÌÍØÛÛÜXÚË   ÌÍÑÕRWÔÒÕÊBÝZPÝÙ]Ý]J    ÌÍÔÐØÚXÚË   ÌÍÑÕRWÔÒÕÊBÝZPÝÙ]Ý]J    ÌÍÒVØÚXÚË    ÌÍÑÕRWÔÒÕÊBÝZPÝÙ]Ý]J    ÌÍØÛÛÜXÚÙY  ÌÍÑÕRWÔÒÕÊBÝZPÝÙ]Ý]J    ÌÍØÛÛÜ    ÌÍÑÕRWÒQJBÝZPÝÙ]Ý]J    ÌÍØÛÛÜØ  ÌÍÑÕRWÒQJBBYÝ[ÛY
    ÌÍÚ^ÛÛÜJHHÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHHHÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHHÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHHÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH
ÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH
HÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH
ÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH
ÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHHÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHHHÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH[ÕRPÝÙ]ÛÛÜ    ÌÍÔÐØÚXÚËBÕRPÝÙ]ÛÛÜ   ÌÍÒVØÚXÚËB[YYÝ[ÓY
    ÌÍÚ^ÛÛÜJHH    ][ÝÐI][ÝÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH    ][ÝÐ][ÝÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH    ][ÝÐÉ][ÝÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH    ][ÝÑ  ][ÝÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH    ][ÝÑI][ÝÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH    ][ÝÑ][ÝÈ[ÕRPÝÙ]ÛÛÜ    ÌÍÔÐØÚXÚË
BÕRPÝÙ]ÛÛÜ    ÌÍÒVØÚXÚË
B[Y ÌÍØÝ[ÜÈHÚ[Ù]ÜÊ    ÌÍÝ][
HÚ[[ÝJ    ÌÍÕ][    ][ÝÉ][ÝË    ÌÍØÝ[ÜÖÌK    ÌÍØÝ[ÜÖÌWKLL
B   ÌÍÜ]HY   ÌÍØÛÜHHH[ÈÐÛÜBBBPÛ]
ÝZPÝXY
    ÌÍØÛÛÜØ
JBBBUÚ[Ù]]J   ÌÍÝ][    ][ÝÉ][ÝË    ÌÍÝ][Ú[ÙI[ÑÝZPÝXY
    ÌÍØÛÛÜØ
JBBBQÝZPÝÙ]]J    ÌÍØÛÛÜXÚÙYÝZPÝXY
    ÌÍØÛÛÜØ
JBBBQÛØ[  ÌÍÝ][H   ÌÍÝ][Ú[ÙI[ÑÝZPÝXY
    ÌÍØÛÛÜØ
B[ÙZY  ÌÍØÛÜHH[ÒVÛÜBBBPÛ]
^
    ÌÍÜ^[ÝÙYÙ]
JBBBUÚ[Ù]]J   ÌÍÝ][    ][ÝÉ][ÝË    ÌÍÝ][Ú[ÙI[Ú^
    ÌÍÜ^[ÝÙYÙ]
JBBBQÝZPÝÙ]]J    ÌÍØÛÛÜXÚÙY^
    ÌÍÜ^[ÝÙYÙ]
JBBBQÛØ[  ÌÍÝ][H   ÌÍÝ][Ú[ÙI[Ú^
    ÌÍÜ^[ÝÙYÙ]
B[ÙBÙÐÞ
M   ][ÝÑÜÌÌÎÉ][ÝË  ][ÝÑÝ]N][ÝÊB[YØÙH    ÌÍÛ[Ý[X[ÑYÊ
B[ÝÚ]ÚÙ[ÏOIÝÈ[Ú[BÏOIÝÕÛÜ]ÚY^[[Y[Û]Z][]ÙÜ[[XHÛKSÛH]ÙÜ[[XHHÝÜ[[ÈÐÛÛÜXÚÙ[
B   ÌÍÛ[ÝÙÜÈH[ÝÙQÙ]ÜÊ
B   ÌÍÜ^[ÝÙYÙ]H^[Ù]ÛÛÜ    ÌÍÛ[ÝÙÜÖÌK  ÌÍÛ[ÝÙÜÖÌWJB    ÌÍÚ^ÛÛÜH^
    ÌÍÜ^[ÝÙYÙ]
BÓÙÐÞ
    ][ÝÉ][ÝËÝ[ÛY
    ÌÍÚ^ÛÛÜJJBØHÈHYÝ[ÛY
    ÌÍÚ^ÛÛÜJHHÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHHHÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHHÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHHÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH
ÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH
HÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH
ÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH
ÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHHÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHHHÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH[Û[XB[YYÝ[ÓY
    ÌÍÚ^ÛÛÜJHH    ][ÝÐI][ÝÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH    ][ÝÐ][ÝÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH    ][ÝÐÉ][ÝÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH    ][ÝÑ  ][ÝÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH    ][ÝÑI][ÝÈÔÝ[ÛY
    ÌÍÚ^ÛÛÜJHH    ][ÝÑ][ÝÈ[Û[X
B[YYÒÔÜÙY
    ][ÝÌÉ][ÝË  ÌÍÙ
H[  ÌÍÜ]HB[YBBBBBZYÒÔÜÙY
    ][ÝÌP][ÝÈ   ÌÍÙ
H[BBBQ^]BBQ[Y[[ÂÏOIÝÈZ[B[ÈÛ[X ÌÍØÛÛÜÚ[ÙJBY    ÌÍØÛÜHHH[ÔÐÕRPÝÙ]ÛÛÜ   ÌÍØÛÛÜØ  ÌÍØÛÛÜÚ[ÙJBÝZTÙ]ÐÛÛÜ  ÌÍÜ^[ÝÙYÙ]
B   ÌÍÚTYÛÛÜHÐÛÛÜÙ]Y
    ÌÍÜ^[ÝÙYÙ]
HÔY    ÌÍÚQÜY[ÛÛÜHÐÛÛÜÙ]ÜY[
    ÌÍÜ^[ÝÙYÙ]
HÑÜY[ ÌÍÚPYPÛÛÜHÐÛÛÜÙ]YH
    ÌÍÜ^[ÝÙYÙ]
HÉÌÍÐYBÝZXÝÙ]]J  ÌÍØÛÛÜØ  ÌÍÚTYÛÛÜ  [È ][ÝË  ][ÝÈ  [È ÌÍÚQÜY[ÛÛÜ   [È ][ÝË  ][ÝÈ  [È ÌÍÚPYPÛÛÜB[ÙZY   ÌÍØÛÜHH[Ò^ÕRPÝÙ]ÛÛÜ ÌÍØÛÛÜ    ÌÍØÛÛÜÚ[ÙJBÝZTÙ]ÐÛÛÜ  ÌÍÜ^[ÝÙYÙ]
BÝZXÝÙ]]J    ÌÍØÛÛÜ^
    ÌÍÜ^[ÝÙYÙ]
JB[Y[[Â[ÈÑYÊ
BØ[
    ][ÝÝÙÌ  ][ÝË  ][ÝÚ[ ][ÝË  ][ÝÔ[XÙPØI][ÝÊBØ[
    ][ÝÝÙÌ  ][ÝË  ][ÝÚ[ ][ÝË  ][ÝÔÙ[YÜØYÙI][ÝË    ][ÝÚÛ    ][ÝË  ÌÍÙÝZK  ][ÝÚ[ ][ÝË  ÌÍÕÓWÓÓUÓÕÓ    ][ÝÚ[ ][ÝË  ÌÍÒÐTSÓ    ][ÝÚ[ ][ÝË
B[[
Edited by xzaz
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...