-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c2a6ee6
Showing
45 changed files
with
5,074 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
CMSUno - Plugins | ||
================ | ||
|
||
<pre> | ||
uuuu uuuu nnnnnn ooooooooo | ||
u::::u u::::u nn::::::::nn oo:::::::::::oo | ||
u::::u u::::u nn::::::::::nn o:::::::::::::::o | ||
u::::u u::::u n::::::::::::::n o:::::ooooo:::::o | ||
u::::u u::::u n:::::nnnn:::::n o::::o o::::o | ||
u::::u u::::u n::::n n::::n o::::o o::::o | ||
u::::u u::::u n::::n n::::n o::::o o::::o | ||
u:::::uuuu:::::u n::::n n::::n o::::o o::::o | ||
u::::::::::::::u n::::n n::::n o:::::ooooo:::::o | ||
u::::::::::::u n::::n n::::n o:::::::::::::::o | ||
uu::::::::uu n::::n n::::n oo:::::::::::oo | ||
uuuuuu nnnn nnnn ooooooooo | ||
___ __ | ||
/ __\ /\/\ / _\ | ||
/ / / \ \ \ | ||
/ /___ / /\/\ \ _\ \ | ||
\____/ \/ \/ \__/ | ||
</pre> | ||
|
||
### Payment ### | ||
|
||
Allows you to create a small e-commerce site from CKEditor. | ||
It adds a "add to cart" button to the editor. | ||
It adds a complete cart system with order registration, email sending, invoice in PDF, multi-tax, shipping cost, payment by cheque and by bank transfer. | ||
It can work with other payment plugin (Paypal, Payplug). | ||
Very usefull and powerfull. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/** | ||
* Plugin CKEditor AddToCart | ||
* Copyright (c) <2015> <Jacques Malgrange [email protected]> | ||
* License MIT | ||
*/ | ||
CKEDITOR.dialog.add('addtocartDialog',function(editor){ | ||
var lang=editor.lang.addtocart,atc={},tax; | ||
return{ | ||
title:lang.title, | ||
minWidth:250, | ||
minHeight:75, | ||
contents:[{ | ||
id:'addtocart0', | ||
label:'', | ||
title:'', | ||
expand:false, | ||
padding:0, | ||
elements:[{ | ||
type:'text', | ||
id:'nam', | ||
label:lang.labelNam, | ||
style:'width:200px;', | ||
commit:function(){atc.nam=addtocartKey(4)+this.getValue().replace(/[|"]/g,'');} | ||
},{ | ||
type:'text', | ||
id:'pri', | ||
label:lang.labelPri+' ('+(paymentTin=='yes'?lang.taxon:lang.taxoff)+')', | ||
style:'width:50px;margin-top:5px;', | ||
commit:function(){atc.pri=this.getValue().replace(/[|"]/g,'');} | ||
},{ | ||
type:'text', | ||
id:'but', | ||
label:lang.labelBut, | ||
'default':lang.title, | ||
style:'width:150px;margin-top:5px;margin-bottom:10px;', | ||
commit:function(){atc.but=this.getValue().replace(/[|"]/g,'');} | ||
},{ | ||
type:'html', | ||
html:'<h3>Taxe</h3>', | ||
style:'margin-bottom:5px;', | ||
},{ | ||
type:'checkbox', | ||
id:'taa', | ||
label:'Alpha ('+paymentTaa+')', | ||
'default':(paymentTda==1?true:false), | ||
style:'float:left;margin-left:3px;', | ||
commit:function(){atc.taa=(this.getValue()?1:0);} | ||
},{ | ||
type:'checkbox', | ||
id:'tab', | ||
label:'Beta ('+paymentTab+')', | ||
'default':(paymentTdb==1?true:false), | ||
style:'float:left;margin-left:3px;', | ||
commit:function(){atc.tab=(this.getValue()?1:0);} | ||
},{ | ||
type:'checkbox', | ||
id:'tac', | ||
label:'Gamma ('+paymentTac+')', | ||
'default':(paymentTdc==1?true:false), | ||
style:'float:left;margin-left:3px;', | ||
commit:function(){atc.tac=(this.getValue()?1:0);} | ||
},{ | ||
type:'checkbox', | ||
id:'tad', | ||
label:'Delta ('+paymentTad+')', | ||
'default':(paymentTdd==1?true:false), | ||
style:'float:left;margin-left:3px;', | ||
commit:function(){atc.tad=(this.getValue()?1:0);} | ||
}] | ||
}], | ||
onOk:function(){ | ||
this.commitContent(); | ||
var f=new Array(atc.nam,1); | ||
tax=atc.taa+2*atc.tab+4*atc.tac+8*atc.tad; | ||
editor.insertHtml('<a alt="'+atc.nam+'|'+atc.pri+'|'+atc.but+'|'+tax+'" class="button addtocart" href="JavaScript:void(0);" onClick="paymentAddC(\''+atc.nam+'|1\')" title="'+atc.nam.substring(4)+' : '+atc.pri+'">'+atc.but+'</a>'); | ||
atcMem=0; | ||
return; | ||
}, | ||
onCancel:function(){atcMem=0;return;}, | ||
onShow:function(){ | ||
var dia=CKEDITOR.dialog.getCurrent();atc4=0; | ||
if(atcMem.length>0){ | ||
atc4=atcMem[0].substring(0,4); | ||
if(atc4=='0000')atc4=0; | ||
dia.getContentElement('addtocart0','nam').setValue(atcMem[0].substring(4)); | ||
dia.getContentElement('addtocart0','pri').setValue(atcMem[1]); | ||
dia.getContentElement('addtocart0','but').setValue(atcMem[2]); | ||
tax=atcMem[3]||0; | ||
if(tax<8)dia.getContentElement('addtocart0','tad').setValue(false);else{dia.getContentElement('addtocart0','tad').setValue(true);tax-=8;} | ||
if(tax<4)dia.getContentElement('addtocart0','tac').setValue(false);else{dia.getContentElement('addtocart0','tac').setValue(true);tax-=4;} | ||
if(tax<2)dia.getContentElement('addtocart0','tab').setValue(false);else{dia.getContentElement('addtocart0','tab').setValue(true);tax-=2;} | ||
if(tax==0)dia.getContentElement('addtocart0','taa').setValue(false);else dia.getContentElement('addtocart0','taa').setValue(true); | ||
} | ||
return; | ||
} | ||
}; | ||
}); | ||
function addtocartKey(n){if(atc4!=0)return atc4;else{var r='',p="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",i;for(i=0;i<n;i++)r+=p.charAt(Math.floor(Math.random()*p.length));return r;}} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Plugin Addtocart | ||
* @license MIT | ||
*/ | ||
CKEDITOR.plugins.setLang('addtocart','en',{ | ||
title:'Add to Cart', | ||
labelPri:'Price', | ||
labelBut:'Button text', | ||
labelNam:'Article (unique name)', | ||
taxon:'tax inclusive', | ||
taxoff:'duty free' | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Plugin Addtocart | ||
* @license MIT | ||
*/ | ||
CKEDITOR.plugins.setLang('addtocart','fr',{ | ||
title:'Ajouter au panier', | ||
labelPri:'Prix', | ||
labelBut:'Texte du bouton', | ||
labelNam:'Article (nom unique)', | ||
taxon:'TTC', | ||
taxoff:'HT' | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/** | ||
* Plugin CKEditor AddToCart | ||
* Copyright (c) <2015> <Jacques Malgrange [email protected]> | ||
* License MIT | ||
*/ | ||
var atcMem=0,atc4=0; | ||
CKEDITOR.plugins.add('addtocart',{ | ||
icons:'addtocart', | ||
lang: 'en,fr', | ||
init:function(editor){ | ||
var lang=editor.lang.addtocart; | ||
editor.addCommand('addtocartDialog',new CKEDITOR.dialogCommand('addtocartDialog')); | ||
editor.ui.addButton('addtocart',{ | ||
label:lang.title, | ||
command:'addtocartDialog', | ||
toolbar:'cmsuno' | ||
}); | ||
editor.addContentsCss(this.path+'css/addtocartBtn0.css' ); | ||
editor.on('doubleclick',function(evt){ | ||
var el=evt.data.element; | ||
if(!el.isReadOnly()&&el.is('a')&&el.getAttribute('class')=='button addtocart'){ | ||
atcMem=el.getAttribute('alt'); | ||
atcMem=((atcMem)?atcMem.split('|'):['','','','']); | ||
evt.data.dialog='addtocartDialog'; | ||
} | ||
}); | ||
CKEDITOR.dialog.add('addtocartDialog',this.path+'dialogs/addtocart.js'); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
$type = 'Core'; | ||
$name = 'Courier'; | ||
$up = -100; | ||
$ut = 50; | ||
for($i=0;$i<=255;$i++) | ||
$cw[chr($i)] = 600; | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
$type = 'Core'; | ||
$name = 'Courier-Bold'; | ||
$up = -100; | ||
$ut = 50; | ||
for($i=0;$i<=255;$i++) | ||
$cw[chr($i)] = 600; | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
$type = 'Core'; | ||
$name = 'Courier-BoldOblique'; | ||
$up = -100; | ||
$ut = 50; | ||
for($i=0;$i<=255;$i++) | ||
$cw[chr($i)] = 600; | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
$type = 'Core'; | ||
$name = 'Courier-Oblique'; | ||
$up = -100; | ||
$ut = 50; | ||
for($i=0;$i<=255;$i++) | ||
$cw[chr($i)] = 600; | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
$type = 'Core'; | ||
$name = 'Helvetica'; | ||
$up = -100; | ||
$ut = 50; | ||
$cw = array( | ||
chr(0)=>278,chr(1)=>278,chr(2)=>278,chr(3)=>278,chr(4)=>278,chr(5)=>278,chr(6)=>278,chr(7)=>278,chr(8)=>278,chr(9)=>278,chr(10)=>278,chr(11)=>278,chr(12)=>278,chr(13)=>278,chr(14)=>278,chr(15)=>278,chr(16)=>278,chr(17)=>278,chr(18)=>278,chr(19)=>278,chr(20)=>278,chr(21)=>278, | ||
chr(22)=>278,chr(23)=>278,chr(24)=>278,chr(25)=>278,chr(26)=>278,chr(27)=>278,chr(28)=>278,chr(29)=>278,chr(30)=>278,chr(31)=>278,' '=>278,'!'=>278,'"'=>355,'#'=>556,'$'=>556,'%'=>889,'&'=>667,'\''=>191,'('=>333,')'=>333,'*'=>389,'+'=>584, | ||
','=>278,'-'=>333,'.'=>278,'/'=>278,'0'=>556,'1'=>556,'2'=>556,'3'=>556,'4'=>556,'5'=>556,'6'=>556,'7'=>556,'8'=>556,'9'=>556,':'=>278,';'=>278,'<'=>584,'='=>584,'>'=>584,'?'=>556,'@'=>1015,'A'=>667, | ||
'B'=>667,'C'=>722,'D'=>722,'E'=>667,'F'=>611,'G'=>778,'H'=>722,'I'=>278,'J'=>500,'K'=>667,'L'=>556,'M'=>833,'N'=>722,'O'=>778,'P'=>667,'Q'=>778,'R'=>722,'S'=>667,'T'=>611,'U'=>722,'V'=>667,'W'=>944, | ||
'X'=>667,'Y'=>667,'Z'=>611,'['=>278,'\\'=>278,']'=>278,'^'=>469,'_'=>556,'`'=>333,'a'=>556,'b'=>556,'c'=>500,'d'=>556,'e'=>556,'f'=>278,'g'=>556,'h'=>556,'i'=>222,'j'=>222,'k'=>500,'l'=>222,'m'=>833, | ||
'n'=>556,'o'=>556,'p'=>556,'q'=>556,'r'=>333,'s'=>500,'t'=>278,'u'=>556,'v'=>500,'w'=>722,'x'=>500,'y'=>500,'z'=>500,'{'=>334,'|'=>260,'}'=>334,'~'=>584,chr(127)=>350,chr(128)=>556,chr(129)=>350,chr(130)=>222,chr(131)=>556, | ||
chr(132)=>333,chr(133)=>1000,chr(134)=>556,chr(135)=>556,chr(136)=>333,chr(137)=>1000,chr(138)=>667,chr(139)=>333,chr(140)=>1000,chr(141)=>350,chr(142)=>611,chr(143)=>350,chr(144)=>350,chr(145)=>222,chr(146)=>222,chr(147)=>333,chr(148)=>333,chr(149)=>350,chr(150)=>556,chr(151)=>1000,chr(152)=>333,chr(153)=>1000, | ||
chr(154)=>500,chr(155)=>333,chr(156)=>944,chr(157)=>350,chr(158)=>500,chr(159)=>667,chr(160)=>278,chr(161)=>333,chr(162)=>556,chr(163)=>556,chr(164)=>556,chr(165)=>556,chr(166)=>260,chr(167)=>556,chr(168)=>333,chr(169)=>737,chr(170)=>370,chr(171)=>556,chr(172)=>584,chr(173)=>333,chr(174)=>737,chr(175)=>333, | ||
chr(176)=>400,chr(177)=>584,chr(178)=>333,chr(179)=>333,chr(180)=>333,chr(181)=>556,chr(182)=>537,chr(183)=>278,chr(184)=>333,chr(185)=>333,chr(186)=>365,chr(187)=>556,chr(188)=>834,chr(189)=>834,chr(190)=>834,chr(191)=>611,chr(192)=>667,chr(193)=>667,chr(194)=>667,chr(195)=>667,chr(196)=>667,chr(197)=>667, | ||
chr(198)=>1000,chr(199)=>722,chr(200)=>667,chr(201)=>667,chr(202)=>667,chr(203)=>667,chr(204)=>278,chr(205)=>278,chr(206)=>278,chr(207)=>278,chr(208)=>722,chr(209)=>722,chr(210)=>778,chr(211)=>778,chr(212)=>778,chr(213)=>778,chr(214)=>778,chr(215)=>584,chr(216)=>778,chr(217)=>722,chr(218)=>722,chr(219)=>722, | ||
chr(220)=>722,chr(221)=>667,chr(222)=>667,chr(223)=>611,chr(224)=>556,chr(225)=>556,chr(226)=>556,chr(227)=>556,chr(228)=>556,chr(229)=>556,chr(230)=>889,chr(231)=>500,chr(232)=>556,chr(233)=>556,chr(234)=>556,chr(235)=>556,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>556,chr(241)=>556, | ||
chr(242)=>556,chr(243)=>556,chr(244)=>556,chr(245)=>556,chr(246)=>556,chr(247)=>584,chr(248)=>611,chr(249)=>556,chr(250)=>556,chr(251)=>556,chr(252)=>556,chr(253)=>500,chr(254)=>556,chr(255)=>500); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
$type = 'Core'; | ||
$name = 'Helvetica-Bold'; | ||
$up = -100; | ||
$ut = 50; | ||
$cw = array( | ||
chr(0)=>278,chr(1)=>278,chr(2)=>278,chr(3)=>278,chr(4)=>278,chr(5)=>278,chr(6)=>278,chr(7)=>278,chr(8)=>278,chr(9)=>278,chr(10)=>278,chr(11)=>278,chr(12)=>278,chr(13)=>278,chr(14)=>278,chr(15)=>278,chr(16)=>278,chr(17)=>278,chr(18)=>278,chr(19)=>278,chr(20)=>278,chr(21)=>278, | ||
chr(22)=>278,chr(23)=>278,chr(24)=>278,chr(25)=>278,chr(26)=>278,chr(27)=>278,chr(28)=>278,chr(29)=>278,chr(30)=>278,chr(31)=>278,' '=>278,'!'=>333,'"'=>474,'#'=>556,'$'=>556,'%'=>889,'&'=>722,'\''=>238,'('=>333,')'=>333,'*'=>389,'+'=>584, | ||
','=>278,'-'=>333,'.'=>278,'/'=>278,'0'=>556,'1'=>556,'2'=>556,'3'=>556,'4'=>556,'5'=>556,'6'=>556,'7'=>556,'8'=>556,'9'=>556,':'=>333,';'=>333,'<'=>584,'='=>584,'>'=>584,'?'=>611,'@'=>975,'A'=>722, | ||
'B'=>722,'C'=>722,'D'=>722,'E'=>667,'F'=>611,'G'=>778,'H'=>722,'I'=>278,'J'=>556,'K'=>722,'L'=>611,'M'=>833,'N'=>722,'O'=>778,'P'=>667,'Q'=>778,'R'=>722,'S'=>667,'T'=>611,'U'=>722,'V'=>667,'W'=>944, | ||
'X'=>667,'Y'=>667,'Z'=>611,'['=>333,'\\'=>278,']'=>333,'^'=>584,'_'=>556,'`'=>333,'a'=>556,'b'=>611,'c'=>556,'d'=>611,'e'=>556,'f'=>333,'g'=>611,'h'=>611,'i'=>278,'j'=>278,'k'=>556,'l'=>278,'m'=>889, | ||
'n'=>611,'o'=>611,'p'=>611,'q'=>611,'r'=>389,'s'=>556,'t'=>333,'u'=>611,'v'=>556,'w'=>778,'x'=>556,'y'=>556,'z'=>500,'{'=>389,'|'=>280,'}'=>389,'~'=>584,chr(127)=>350,chr(128)=>556,chr(129)=>350,chr(130)=>278,chr(131)=>556, | ||
chr(132)=>500,chr(133)=>1000,chr(134)=>556,chr(135)=>556,chr(136)=>333,chr(137)=>1000,chr(138)=>667,chr(139)=>333,chr(140)=>1000,chr(141)=>350,chr(142)=>611,chr(143)=>350,chr(144)=>350,chr(145)=>278,chr(146)=>278,chr(147)=>500,chr(148)=>500,chr(149)=>350,chr(150)=>556,chr(151)=>1000,chr(152)=>333,chr(153)=>1000, | ||
chr(154)=>556,chr(155)=>333,chr(156)=>944,chr(157)=>350,chr(158)=>500,chr(159)=>667,chr(160)=>278,chr(161)=>333,chr(162)=>556,chr(163)=>556,chr(164)=>556,chr(165)=>556,chr(166)=>280,chr(167)=>556,chr(168)=>333,chr(169)=>737,chr(170)=>370,chr(171)=>556,chr(172)=>584,chr(173)=>333,chr(174)=>737,chr(175)=>333, | ||
chr(176)=>400,chr(177)=>584,chr(178)=>333,chr(179)=>333,chr(180)=>333,chr(181)=>611,chr(182)=>556,chr(183)=>278,chr(184)=>333,chr(185)=>333,chr(186)=>365,chr(187)=>556,chr(188)=>834,chr(189)=>834,chr(190)=>834,chr(191)=>611,chr(192)=>722,chr(193)=>722,chr(194)=>722,chr(195)=>722,chr(196)=>722,chr(197)=>722, | ||
chr(198)=>1000,chr(199)=>722,chr(200)=>667,chr(201)=>667,chr(202)=>667,chr(203)=>667,chr(204)=>278,chr(205)=>278,chr(206)=>278,chr(207)=>278,chr(208)=>722,chr(209)=>722,chr(210)=>778,chr(211)=>778,chr(212)=>778,chr(213)=>778,chr(214)=>778,chr(215)=>584,chr(216)=>778,chr(217)=>722,chr(218)=>722,chr(219)=>722, | ||
chr(220)=>722,chr(221)=>667,chr(222)=>667,chr(223)=>611,chr(224)=>556,chr(225)=>556,chr(226)=>556,chr(227)=>556,chr(228)=>556,chr(229)=>556,chr(230)=>889,chr(231)=>556,chr(232)=>556,chr(233)=>556,chr(234)=>556,chr(235)=>556,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>611,chr(241)=>611, | ||
chr(242)=>611,chr(243)=>611,chr(244)=>611,chr(245)=>611,chr(246)=>611,chr(247)=>584,chr(248)=>611,chr(249)=>611,chr(250)=>611,chr(251)=>611,chr(252)=>611,chr(253)=>556,chr(254)=>611,chr(255)=>556); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
$type = 'Core'; | ||
$name = 'Helvetica-BoldOblique'; | ||
$up = -100; | ||
$ut = 50; | ||
$cw = array( | ||
chr(0)=>278,chr(1)=>278,chr(2)=>278,chr(3)=>278,chr(4)=>278,chr(5)=>278,chr(6)=>278,chr(7)=>278,chr(8)=>278,chr(9)=>278,chr(10)=>278,chr(11)=>278,chr(12)=>278,chr(13)=>278,chr(14)=>278,chr(15)=>278,chr(16)=>278,chr(17)=>278,chr(18)=>278,chr(19)=>278,chr(20)=>278,chr(21)=>278, | ||
chr(22)=>278,chr(23)=>278,chr(24)=>278,chr(25)=>278,chr(26)=>278,chr(27)=>278,chr(28)=>278,chr(29)=>278,chr(30)=>278,chr(31)=>278,' '=>278,'!'=>333,'"'=>474,'#'=>556,'$'=>556,'%'=>889,'&'=>722,'\''=>238,'('=>333,')'=>333,'*'=>389,'+'=>584, | ||
','=>278,'-'=>333,'.'=>278,'/'=>278,'0'=>556,'1'=>556,'2'=>556,'3'=>556,'4'=>556,'5'=>556,'6'=>556,'7'=>556,'8'=>556,'9'=>556,':'=>333,';'=>333,'<'=>584,'='=>584,'>'=>584,'?'=>611,'@'=>975,'A'=>722, | ||
'B'=>722,'C'=>722,'D'=>722,'E'=>667,'F'=>611,'G'=>778,'H'=>722,'I'=>278,'J'=>556,'K'=>722,'L'=>611,'M'=>833,'N'=>722,'O'=>778,'P'=>667,'Q'=>778,'R'=>722,'S'=>667,'T'=>611,'U'=>722,'V'=>667,'W'=>944, | ||
'X'=>667,'Y'=>667,'Z'=>611,'['=>333,'\\'=>278,']'=>333,'^'=>584,'_'=>556,'`'=>333,'a'=>556,'b'=>611,'c'=>556,'d'=>611,'e'=>556,'f'=>333,'g'=>611,'h'=>611,'i'=>278,'j'=>278,'k'=>556,'l'=>278,'m'=>889, | ||
'n'=>611,'o'=>611,'p'=>611,'q'=>611,'r'=>389,'s'=>556,'t'=>333,'u'=>611,'v'=>556,'w'=>778,'x'=>556,'y'=>556,'z'=>500,'{'=>389,'|'=>280,'}'=>389,'~'=>584,chr(127)=>350,chr(128)=>556,chr(129)=>350,chr(130)=>278,chr(131)=>556, | ||
chr(132)=>500,chr(133)=>1000,chr(134)=>556,chr(135)=>556,chr(136)=>333,chr(137)=>1000,chr(138)=>667,chr(139)=>333,chr(140)=>1000,chr(141)=>350,chr(142)=>611,chr(143)=>350,chr(144)=>350,chr(145)=>278,chr(146)=>278,chr(147)=>500,chr(148)=>500,chr(149)=>350,chr(150)=>556,chr(151)=>1000,chr(152)=>333,chr(153)=>1000, | ||
chr(154)=>556,chr(155)=>333,chr(156)=>944,chr(157)=>350,chr(158)=>500,chr(159)=>667,chr(160)=>278,chr(161)=>333,chr(162)=>556,chr(163)=>556,chr(164)=>556,chr(165)=>556,chr(166)=>280,chr(167)=>556,chr(168)=>333,chr(169)=>737,chr(170)=>370,chr(171)=>556,chr(172)=>584,chr(173)=>333,chr(174)=>737,chr(175)=>333, | ||
chr(176)=>400,chr(177)=>584,chr(178)=>333,chr(179)=>333,chr(180)=>333,chr(181)=>611,chr(182)=>556,chr(183)=>278,chr(184)=>333,chr(185)=>333,chr(186)=>365,chr(187)=>556,chr(188)=>834,chr(189)=>834,chr(190)=>834,chr(191)=>611,chr(192)=>722,chr(193)=>722,chr(194)=>722,chr(195)=>722,chr(196)=>722,chr(197)=>722, | ||
chr(198)=>1000,chr(199)=>722,chr(200)=>667,chr(201)=>667,chr(202)=>667,chr(203)=>667,chr(204)=>278,chr(205)=>278,chr(206)=>278,chr(207)=>278,chr(208)=>722,chr(209)=>722,chr(210)=>778,chr(211)=>778,chr(212)=>778,chr(213)=>778,chr(214)=>778,chr(215)=>584,chr(216)=>778,chr(217)=>722,chr(218)=>722,chr(219)=>722, | ||
chr(220)=>722,chr(221)=>667,chr(222)=>667,chr(223)=>611,chr(224)=>556,chr(225)=>556,chr(226)=>556,chr(227)=>556,chr(228)=>556,chr(229)=>556,chr(230)=>889,chr(231)=>556,chr(232)=>556,chr(233)=>556,chr(234)=>556,chr(235)=>556,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>611,chr(241)=>611, | ||
chr(242)=>611,chr(243)=>611,chr(244)=>611,chr(245)=>611,chr(246)=>611,chr(247)=>584,chr(248)=>611,chr(249)=>611,chr(250)=>611,chr(251)=>611,chr(252)=>611,chr(253)=>556,chr(254)=>611,chr(255)=>556); | ||
?> |
Oops, something went wrong.